From 54809840c672062e89ddd476e45da806ba66dd56 Mon Sep 17 00:00:00 2001 From: Terri00 Date: Fri, 22 Mar 2019 22:07:12 +0000 Subject: [PATCH] Shader patch for AMD HD Graphics 8500M. --- AutoRadar_installer/main.cpp | 102 +- MCDV/FrameBuffer.hpp | 4 +- MCDV/MCDV.vcxproj | 1 - MCDV/MCDV.vcxproj.filters | 3 - MCDV/main.cpp | 19 +- MCDV/sample_stuff/de_tavr_test.vmx | 26 +- MCDV/sample_stuff/map_01.vmx | 188744 ++++++++++---------------- MCDV/shaders/ss_comp_main.fs | 12 +- 8 files changed, 72286 insertions(+), 116625 deletions(-) diff --git a/AutoRadar_installer/main.cpp b/AutoRadar_installer/main.cpp index a5f311b..470f253 100644 --- a/AutoRadar_installer/main.cpp +++ b/AutoRadar_installer/main.cpp @@ -21,7 +21,7 @@ int exit() { return -1; } -int main(){ +int main(int argc, const char** argv) { cc::setup(); /* Load install configuration */ @@ -40,80 +40,88 @@ int main(){ cc::fancy(); std::cout << "Installing version: " << vinfodata.Values["version"] << "\n"; + // Overide install + if (argc > 1) { + csgo_sdk_bin_path = std::string(argv[1]) + "\\"; + goto IL_COPYFILES; + } + #pragma region sdk_detect /* Get steam installation path */ + { + cc::info(); std::cout << "Getting steam installation path from windows registry\n"; - cc::info(); std::cout << "Getting steam installation path from windows registry\n"; - - HKEY hKey = NULL; - char buffer[1024]; + HKEY hKey = NULL; + char buffer[1024]; - bool regReadSuccess = true; + bool regReadSuccess = true; - if (RegOpenKeyEx(HKEY_CURRENT_USER, "Software\\Valve\\Steam", NULL, KEY_QUERY_VALUE, &hKey) == ERROR_SUCCESS){ - DWORD size; - if (RegQueryValueEx(hKey, "SteamPath", NULL, NULL, (LPBYTE)buffer, &size) == ERROR_SUCCESS){ - steam_install_path = buffer; - steam_install_path += "\\"; + if (RegOpenKeyEx(HKEY_CURRENT_USER, "Software\\Valve\\Steam", NULL, KEY_QUERY_VALUE, &hKey) == ERROR_SUCCESS) { + DWORD size; + if (RegQueryValueEx(hKey, "SteamPath", NULL, NULL, (LPBYTE)buffer, &size) == ERROR_SUCCESS) { + steam_install_path = buffer; + steam_install_path += "\\"; + } + else regReadSuccess = false; } else regReadSuccess = false; - } - else regReadSuccess = false; - RegCloseKey(hKey); + RegCloseKey(hKey); - if (!regReadSuccess) { - cc::warning(); - std::cout << "Failed to read registry key: 'Software\\Valve\\Steam\\SteamPath'\nDefaulting to C:\\Program Files (x86)\\Steam\\ installation...\n"; - } + if (!regReadSuccess) { + cc::warning(); + std::cout << "Failed to read registry key: 'Software\\Valve\\Steam\\SteamPath'\nDefaulting to C:\\Program Files (x86)\\Steam\\ installation...\n"; + } - cc::info(); - std::cout << "Reading steam library folders\n"; + cc::info(); + std::cout << "Reading steam library folders\n"; - /* Read library folders file */ + /* Read library folders file */ - std::vector libraryFolders; - libraryFolders.push_back(steam_install_path + "steammapps\\common\\"); + std::vector libraryFolders; + libraryFolders.push_back(steam_install_path + "steammapps\\common\\"); + libraryFolders.push_back("C:\\Program Files (x86)\\Steam\\steammapps\\common\\"); - std::ifstream ifs(steam_install_path + "steamapps\\libraryfolders.vdf"); - if (!ifs) { - std::cout << "Libraryfolders.vdf not found. Skipping search...\n" << std::endl; - } - else { - std::string str((std::istreambuf_iterator(ifs)), std::istreambuf_iterator()); - kv::FileData libFolders(str); + std::ifstream ifs(steam_install_path + "steamapps\\libraryfolders.vdf"); + if (!ifs) { + std::cout << "Libraryfolders.vdf not found. Skipping search...\n" << std::endl; + } + else { + std::string str((std::istreambuf_iterator(ifs)), std::istreambuf_iterator()); + kv::FileData libFolders(str); - kv::DataBlock* libFoldersDB = libFolders.headNode.GetFirstByName("\"LibraryFolders\""); + kv::DataBlock* libFoldersDB = libFolders.headNode.GetFirstByName("\"LibraryFolders\""); - if (libFoldersDB != NULL) { - int index = 0; - while (libFoldersDB->Values.count(std::to_string(++index))) libraryFolders.push_back(libFoldersDB->Values[std::to_string(index)] + "\\steamapps\\common\\"); + if (libFoldersDB != NULL) { + int index = 0; + while (libFoldersDB->Values.count(std::to_string(++index))) libraryFolders.push_back(libFoldersDB->Values[std::to_string(index)] + "\\steamapps\\common\\"); + } } - } - if (libraryFolders.size() == 0) std::cout << "No library folders found, defaulting to steamapps common folder...\n"; + if (libraryFolders.size() == 0) std::cout << "No library folders found, defaulting to steamapps common folder...\n"; - /* Scan for csgo sdk installations */ + /* Scan for csgo sdk installations */ - std::cout << "Scanning for SDK installation\n"; + std::cout << "Scanning for SDK installation\n"; - for (auto && folder : libraryFolders) { - if (_access_s((folder + "Counter-Strike Global Offensive\\bin\\SDKLauncher.exe").c_str(), 0) == 0) { - csgo_sdk_bin_path = folder + "Counter-Strike Global Offensive\\bin\\"; + for (auto && folder : libraryFolders) { + if (_access_s((folder + "Counter-Strike Global Offensive\\bin\\gameinfo.txt").c_str(), 0) == 0) { + csgo_sdk_bin_path = folder + "Counter-Strike Global Offensive\\bin\\"; + } } - } - if (csgo_sdk_bin_path == "") { - cc::error(); - std::cout << "Failed to find CS:GO SDK bin.\n"; - return exit(); + if (csgo_sdk_bin_path == "") { + cc::error(); + std::cout << "Failed to find CS:GO SDK bin.\nFollow manual_install.txt"; + return exit(); + } } - #pragma endregion #pragma region copyfiles /* Start doing the heavy work */ +IL_COPYFILES: std::cout << "Copying files\n________________________________________________________\n\n"; // Copy folders diff --git a/MCDV/FrameBuffer.hpp b/MCDV/FrameBuffer.hpp index bed37b9..46462e3 100644 --- a/MCDV/FrameBuffer.hpp +++ b/MCDV/FrameBuffer.hpp @@ -29,7 +29,7 @@ public: //unsigned int texColorBuffer; glGenTextures(1, &this->texColorBuffer); glBindTexture(GL_TEXTURE_2D, this->texColorBuffer); - glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 1024, 1024, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL); + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL); //glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); //glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); @@ -42,7 +42,7 @@ public: glGenRenderbuffers(1, &this->rbo); glBindRenderbuffer(GL_RENDERBUFFER, this->rbo); - glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH24_STENCIL8, 1024, 1024); + glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH24_STENCIL8, width, height); glBindRenderbuffer(GL_RENDERBUFFER, 0); glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT, GL_RENDERBUFFER, this->rbo); diff --git a/MCDV/MCDV.vcxproj b/MCDV/MCDV.vcxproj index 4d66790..dd31353 100644 --- a/MCDV/MCDV.vcxproj +++ b/MCDV/MCDV.vcxproj @@ -147,7 +147,6 @@ - diff --git a/MCDV/MCDV.vcxproj.filters b/MCDV/MCDV.vcxproj.filters index 0c9174c..1fae28b 100644 --- a/MCDV/MCDV.vcxproj.filters +++ b/MCDV/MCDV.vcxproj.filters @@ -146,9 +146,6 @@ Header Files\valve - - Header Files\valve - diff --git a/MCDV/main.cpp b/MCDV/main.cpp index cc3a5c8..9749100 100644 --- a/MCDV/main.cpp +++ b/MCDV/main.cpp @@ -85,6 +85,7 @@ bool m_comp_ao_enable; //tar_config overrides uint32_t m_renderWidth = 1024; uint32_t m_renderHeight = 1024; +bool m_enable_maskgen_supersample = true; bool tar_cfg_enableAO = true; int tar_cfg_aoSzie = 16; @@ -200,16 +201,16 @@ int app(int argc, const char** argv) { glEnable(GL_DEPTH_TEST); - glViewport(0, 0, 1024, 1024); + glViewport(0, 0, m_renderWidth, m_renderHeight); glClearColor(0.00f, 0.00f, 0.00f, 0.00f); std::cout << "Creating render buffers\n"; - FrameBuffer fb_tex_playspace = FrameBuffer(1024, 1024); - FrameBuffer fb_tex_objectives = FrameBuffer(1024, 1024); - FrameBuffer fb_comp = FrameBuffer(1024, 1024); - FrameBuffer fb_comp_1 = FrameBuffer(1024, 1024); //Reverse ordered frame buffer + FrameBuffer fb_tex_playspace = FrameBuffer(m_renderWidth, m_renderHeight); + FrameBuffer fb_tex_objectives = FrameBuffer(m_renderWidth, m_renderHeight); + FrameBuffer fb_comp = FrameBuffer(m_renderWidth, m_renderHeight); + FrameBuffer fb_comp_1 = FrameBuffer(m_renderWidth, m_renderHeight); //Reverse ordered frame buffer // Screenspace quad std::cout << "Creating screenspace mesh\n"; @@ -521,7 +522,7 @@ int app(int argc, const char** argv) { glEnable(GL_DEPTH_TEST); if(m_outputMasks) - render_to_png(1024, 1024, std::string(m_overviews_folder + m_mapfile_name + ".resources.playable_space.png").c_str()); + render_to_png(m_renderWidth, m_renderHeight, std::string(m_overviews_folder + m_mapfile_name + ".resources.playable_space.png").c_str()); std::cout << "done!\n"; #pragma endregion @@ -568,7 +569,7 @@ int app(int argc, const char** argv) { mesh_screen_quad->Draw(); if (m_outputMasks) - render_to_png(1024, 1024, std::string(m_overviews_folder + m_mapfile_name + ".resources.buyzone_bombtargets.png").c_str()); + render_to_png(m_renderWidth, m_renderHeight, std::string(m_overviews_folder + m_mapfile_name + ".resources.buyzone_bombtargets.png").c_str()); glEnable(GL_DEPTH_TEST); std::cout << "done!\n"; @@ -629,11 +630,11 @@ int app(int argc, const char** argv) { #pragma region auto_export_game if (!m_onlyOutputMasks) { - save_to_dds(1024, 1024, std::string(m_overviews_folder + m_mapfile_name + "_radar.dds").c_str()); + save_to_dds(m_renderWidth, m_renderHeight, std::string(m_overviews_folder + m_mapfile_name + "_radar.dds").c_str()); } if (m_outputMasks) - render_to_png(1024, 1024, std::string(m_overviews_folder + m_mapfile_name + ".resources.final_raw.png").c_str()); + render_to_png(m_renderWidth, m_renderHeight, std::string(m_overviews_folder + m_mapfile_name + ".resources.final_raw.png").c_str()); #pragma region generate_radar_txt diff --git a/MCDV/sample_stuff/de_tavr_test.vmx b/MCDV/sample_stuff/de_tavr_test.vmx index 27b337e..99f4cdb 100644 --- a/MCDV/sample_stuff/de_tavr_test.vmx +++ b/MCDV/sample_stuff/de_tavr_test.vmx @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "8075" - "mapversion" "145" + "mapversion" "153" "formatversion" "100" "prefab" "0" } @@ -50,13 +50,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "16" + "nGridSpacing" "64" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "145" + "mapversion" "153" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -2784,13 +2784,13 @@ entity "angles" "0 0 0" "fademindist" "-1" "fadescale" "1" - "model" "models/props_castle/stonestair.mdl" + "model" "models/props/de_nuke/this_mdl_doesnt_exist.mdl" "renderamt" "255" "rendercolor" "255 255 255" "skin" "0" "solid" "6" "uniformscale" "1" - "origin" "-560 704 16" + "origin" "-320 256 16" editor { "color" "255 255 0" @@ -2838,7 +2838,7 @@ entity "skin" "0" "solid" "6" "uniformscale" "1" - "origin" "-336 768 16" + "origin" "-320 768 16" editor { "color" "255 255 0" @@ -2854,7 +2854,7 @@ entity { "id" "949" "classname" "prop_static" - "angles" "0 135 0" + "angles" "0 180 0" "fademindist" "-1" "fadescale" "1" "model" "models/props/de_tides/truck.mdl" @@ -2863,7 +2863,7 @@ entity "skin" "0" "solid" "6" "uniformscale" "2" - "origin" "-208 240 16" + "origin" "-512 1024 16" editor { "color" "255 255 0" @@ -2900,7 +2900,7 @@ entity { "id" "1015" "classname" "prop_static" - "angles" "0 0 0" + "angles" "0 330 0" "fademindist" "-1" "fadescale" "1" "model" "models/terri/monaco/vehicles/f1.mdl" @@ -2909,7 +2909,7 @@ entity "skin" "0" "solid" "6" "uniformscale" "1" - "origin" "-624 560 16" + "origin" "-576 640 16" editor { "color" "255 255 0" @@ -2927,9 +2927,9 @@ entity "classname" "tar_config" "aoSize" "10" "colorScheme" "-1" - "customCol0" "32 68 136" - "customCol1" "149 0 0" - "customCol2" "179 217 26" + "customCol0" "62 39 129" + "customCol1" "94 162 202" + "customCol2" "207 136 213" "enableAO" "1" "enableOutline" "1" "enableShadows" "1" diff --git a/MCDV/sample_stuff/map_01.vmx b/MCDV/sample_stuff/map_01.vmx index 79da403..23ae348 100644 --- a/MCDV/sample_stuff/map_01.vmx +++ b/MCDV/sample_stuff/map_01.vmx @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "8075" - "mapversion" "742" + "mapversion" "781" "formatversion" "100" "prefab" "0" } @@ -32,25 +32,108 @@ visgroups "visgroupid" "24" "color" "227 240 129" } + visgroup + { + "name" "tavr_mask" + "visgroupid" "25" + "color" "168 201 110" + } } viewsettings { "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "32" + "nGridSpacing" "16" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "742" + "mapversion" "781" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" "maxpropscreenwidth" "-1" "skyname" "sky_arpeggio" solid + { + "id" "295105" + side + { + "id" "101554" + "plane" "(2048 352 224) (2368 352 224) (2368 160 224)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101555" + "plane" "(2048 160 64) (2368 160 64) (2368 352 64)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101556" + "plane" "(2048 352 224) (2048 160 224) (2048 160 64)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101557" + "plane" "(2368 352 64) (2368 160 64) (2368 160 224)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101558" + "plane" "(2368 352 224) (2048 352 224) (2048 352 64)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101559" + "plane" "(2368 160 64) (2048 160 64) (2048 160 224)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 192 169" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid { "id" "287929" side @@ -23493,198 +23576,196 @@ world } solid { - "id" "254057" + "id" "254136" side { - "id" "90383" - "plane" "(-128 -828 216) (-144 -828 216) (-144 -808 216)" + "id" "90569" + "plane" "(-144 -676 216) (-144 -664 216) (-128 -664 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90382" - "plane" "(-128 -808 216) (-144 -808 216) (-144 -808 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "90568" + "plane" "(-144 -664 88) (-144 -664 216) (-144 -676 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 160] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90381" - "plane" "(-144 -828 88) (-144 -828 216) (-128 -828 216)" + "id" "90567" + "plane" "(-128 -676 88) (-128 -676 216) (-128 -664 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 32] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90380" - "plane" "(-144 -808 88) (-144 -808 216) (-144 -828 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 -160] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "90566" + "plane" "(-128 -664 88) (-128 -664 216) (-144 -664 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90379" - "plane" "(-128 -808 88) (-144 -808 88) (-144 -828 88)" + "id" "90565" + "plane" "(-144 -676 88) (-144 -676 216) (-128 -676 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 32] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90378" - "plane" "(-128 -828 88) (-128 -828 216) (-128 -808 216)" + "id" "90564" + "plane" "(-144 -664 88) (-144 -676 88) (-128 -676 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "155 204 0" - "groupid" "254044" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254058" + "id" "254140" side { - "id" "90389" - "plane" "(-128 -836 216) (-144 -836 216) (-144 -828 216)" + "id" "90581" + "plane" "(-144 -808 216) (-144 -796 216) (-128 -796 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90388" - "plane" "(-128 -828 216) (-144 -828 216) (-144 -828 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "90580" + "plane" "(-144 -796 88) (-144 -796 216) (-144 -808 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 32] 0.125" + "vaxis" "[0 0 -1 160] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90387" - "plane" "(-144 -836 88) (-144 -836 216) (-128 -836 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -192] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "90579" + "plane" "(-128 -808 88) (-128 -808 216) (-128 -796 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 32] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90386" - "plane" "(-144 -828 88) (-144 -828 216) (-144 -836 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -160] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "90578" + "plane" "(-128 -796 88) (-128 -796 216) (-144 -796 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90385" - "plane" "(-128 -828 88) (-144 -828 88) (-144 -836 88)" + "id" "90577" + "plane" "(-144 -808 88) (-144 -808 216) (-128 -808 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 32] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90384" - "plane" "(-128 -836 88) (-128 -836 216) (-128 -828 216)" + "id" "90576" + "plane" "(-144 -796 88) (-144 -808 88) (-128 -808 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "155 204 0" - "groupid" "254044" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254059" + "id" "254244" side { - "id" "90395" - "plane" "(-128 -900 96) (-144 -900 96) (-144 -836 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -160] 0.25" - "vaxis" "[-1 0 0 192] 0.25" + "id" "90719" + "plane" "(-140 -828 320) (-128 -828 320) (-128 -836 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90394" - "plane" "(-128 -836 96) (-144 -836 96) (-144 -836 88)" + "id" "90718" + "plane" "(-140 -828 240) (-128 -828 240) (-128 -828 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90393" - "plane" "(-144 -900 88) (-144 -900 96) (-128 -900 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "90717" + "plane" "(-128 -836 320) (-128 -836 240) (-140 -836 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 -208] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90392" - "plane" "(-144 -836 88) (-144 -836 96) (-144 -900 96)" + "id" "90716" + "plane" "(-140 -836 320) (-140 -836 240) (-140 -828 240)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[0 -1 0 -160] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -23694,20 +23775,20 @@ world } side { - "id" "90391" - "plane" "(-128 -836 88) (-144 -836 88) (-144 -900 88)" + "id" "90715" + "plane" "(-140 -836 240) (-128 -836 240) (-128 -828 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90390" - "plane" "(-128 -900 88) (-128 -900 96) (-128 -836 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "90714" + "plane" "(-128 -828 320) (-128 -828 240) (-128 -836 240)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -23716,43 +23797,43 @@ world } editor { - "color" "155 204 0" - "groupid" "254044" + "color" "139 224 0" + "groupid" "254676" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254060" + "id" "254245" side { - "id" "90401" - "plane" "(-128 -908 216) (-144 -908 216) (-144 -900 216)" + "id" "90725" + "plane" "(-136 -836 312) (-128 -836 312) (-128 -900 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90400" - "plane" "(-128 -900 216) (-144 -900 216) (-144 -900 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -192] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "90724" + "plane" "(-136 -836 248) (-128 -836 248) (-128 -836 312)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90399" - "plane" "(-144 -908 88) (-144 -908 216) (-128 -908 216)" + "id" "90723" + "plane" "(-128 -900 312) (-128 -900 248) (-136 -900 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -23760,30 +23841,30 @@ world } side { - "id" "90398" - "plane" "(-144 -900 88) (-144 -900 216) (-144 -908 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -160] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "90722" + "plane" "(-136 -900 312) (-136 -900 248) (-136 -836 248)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 96] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90397" - "plane" "(-128 -900 88) (-144 -900 88) (-144 -908 88)" + "id" "90721" + "plane" "(-136 -900 248) (-128 -900 248) (-128 -836 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90396" - "plane" "(-128 -908 88) (-128 -908 216) (-128 -900 216)" + "id" "90720" + "plane" "(-128 -836 312) (-128 -836 248) (-128 -900 248)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -23793,32 +23874,32 @@ world } editor { - "color" "155 204 0" - "groupid" "254044" + "color" "139 224 0" + "groupid" "254676" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254061" + "id" "254246" side { - "id" "90407" - "plane" "(-128 -928 216) (-144 -928 216) (-144 -908 216)" + "id" "90731" + "plane" "(-140 -836 320) (-128 -836 320) (-128 -900 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90406" - "plane" "(-128 -908 216) (-144 -908 216) (-144 -908 88)" + "id" "90730" + "plane" "(-140 -836 312) (-128 -836 312) (-128 -836 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -23826,10 +23907,10 @@ world } side { - "id" "90405" - "plane" "(-144 -928 88) (-144 -928 216) (-128 -928 216)" + "id" "90729" + "plane" "(-128 -900 320) (-128 -900 312) (-140 -900 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -23837,9 +23918,9 @@ world } side { - "id" "90404" - "plane" "(-144 -908 88) (-144 -908 216) (-144 -928 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "id" "90728" + "plane" "(-140 -900 320) (-140 -900 312) (-140 -836 312)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[0 -1 0 -160] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -23848,19 +23929,19 @@ world } side { - "id" "90403" - "plane" "(-128 -908 88) (-144 -908 88) (-144 -928 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "90727" + "plane" "(-140 -900 312) (-128 -900 312) (-128 -836 312)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 -160] 0.25" + "vaxis" "[-1 0 0 208] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90402" - "plane" "(-128 -928 88) (-128 -928 216) (-128 -908 216)" + "id" "90726" + "plane" "(-128 -836 320) (-128 -836 312) (-128 -900 312)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -23870,32 +23951,32 @@ world } editor { - "color" "155 204 0" - "groupid" "254044" + "color" "139 224 0" + "groupid" "254676" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254062" + "id" "254247" side { - "id" "90413" - "plane" "(-128 -900 216) (-144 -900 216) (-144 -836 216)" + "id" "90737" + "plane" "(-140 -900 320) (-128 -900 320) (-128 -908 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90412" - "plane" "(-128 -836 216) (-144 -836 216) (-144 -836 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "90736" + "plane" "(-140 -900 240) (-128 -900 240) (-128 -900 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 -208] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -23903,10 +23984,10 @@ world } side { - "id" "90411" - "plane" "(-144 -900 208) (-144 -900 216) (-128 -900 216)" + "id" "90735" + "plane" "(-128 -908 320) (-128 -908 240) (-140 -908 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -23914,8 +23995,8 @@ world } side { - "id" "90410" - "plane" "(-144 -836 208) (-144 -836 216) (-144 -900 216)" + "id" "90734" + "plane" "(-140 -908 320) (-140 -908 240) (-140 -900 240)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[0 -1 0 -160] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -23925,19 +24006,19 @@ world } side { - "id" "90409" - "plane" "(-128 -836 208) (-144 -836 208) (-144 -900 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -160] 0.25" - "vaxis" "[-1 0 0 192] 0.25" + "id" "90733" + "plane" "(-140 -908 240) (-128 -908 240) (-128 -900 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90408" - "plane" "(-128 -900 208) (-128 -900 216) (-128 -836 216)" + "id" "90732" + "plane" "(-128 -900 320) (-128 -900 240) (-128 -908 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -23947,54 +24028,54 @@ world } editor { - "color" "155 204 0" - "groupid" "254044" + "color" "139 224 0" + "groupid" "254676" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254064" + "id" "254248" side { - "id" "90455" - "plane" "(-128 -696 216) (-144 -696 216) (-144 -676 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "90743" + "plane" "(-140 -836 248) (-128 -836 248) (-128 -900 248)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 -160] 0.25" + "vaxis" "[-1 0 0 208] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90454" - "plane" "(-128 -676 216) (-144 -676 216) (-144 -676 88)" + "id" "90742" + "plane" "(-140 -836 240) (-128 -836 240) (-128 -836 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90453" - "plane" "(-144 -696 88) (-144 -696 216) (-128 -696 216)" + "id" "90741" + "plane" "(-128 -900 248) (-128 -900 240) (-140 -900 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90452" - "plane" "(-144 -676 88) (-144 -676 216) (-144 -696 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 368] 0.25" + "id" "90740" + "plane" "(-140 -900 248) (-140 -900 240) (-140 -836 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 -160] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24002,21 +24083,21 @@ world } side { - "id" "90451" - "plane" "(-128 -676 88) (-144 -676 88) (-144 -696 88)" + "id" "90739" + "plane" "(-140 -900 240) (-128 -900 240) (-128 -836 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90450" - "plane" "(-128 -696 88) (-128 -696 216) (-128 -676 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "id" "90738" + "plane" "(-128 -836 248) (-128 -836 240) (-128 -900 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24024,43 +24105,43 @@ world } editor { - "color" "155 204 0" - "groupid" "254063" + "color" "139 224 0" + "groupid" "254676" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254065" + "id" "254249" side { - "id" "90461" - "plane" "(-128 -704 216) (-144 -704 216) (-144 -696 216)" + "id" "90749" + "plane" "(-140 -908 320) (-128 -908 320) (-128 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90460" - "plane" "(-128 -696 216) (-144 -696 216) (-144 -696 88)" + "id" "90748" + "plane" "(-128 -908 320) (-140 -908 320) (-140 -908 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90459" - "plane" "(-144 -704 88) (-144 -704 216) (-128 -704 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -192] 0.25" + "id" "90747" + "plane" "(-128 -928 240) (-140 -928 240) (-140 -928 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24068,32 +24149,32 @@ world } side { - "id" "90458" - "plane" "(-144 -696 88) (-144 -696 216) (-144 -704 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 368] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "90746" + "plane" "(-140 -928 240) (-128 -928 240) (-128 -908 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90457" - "plane" "(-128 -696 88) (-144 -696 88) (-144 -704 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "90745" + "plane" "(-140 -928 320) (-140 -928 240) (-140 -908 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 1 0 160] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90456" - "plane" "(-128 -704 88) (-128 -704 216) (-128 -696 216)" + "id" "90744" + "plane" "(-128 -908 320) (-128 -908 240) (-128 -928 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24101,54 +24182,54 @@ world } editor { - "color" "155 204 0" - "groupid" "254063" + "color" "139 224 0" + "groupid" "254676" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254066" + "id" "254259" side { - "id" "90467" - "plane" "(-128 -768 96) (-144 -768 96) (-144 -704 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 368] 0.25" - "vaxis" "[-1 0 0 192] 0.25" + "id" "90761" + "plane" "(-128 -928 336) (-144 -928 336) (-144 -104 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[-1 0 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90466" - "plane" "(-128 -704 96) (-144 -704 96) (-144 -704 88)" + "id" "90760" + "plane" "(-144 -928 320) (-144 -928 336) (-128 -928 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90465" - "plane" "(-144 -768 88) (-144 -768 96) (-128 -768 96)" + "id" "90759" + "plane" "(-128 -104 320) (-128 -104 336) (-144 -104 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90464" - "plane" "(-144 -704 88) (-144 -704 96) (-144 -768 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 368] 0.25" + "id" "90758" + "plane" "(-128 -928 320) (-128 -928 336) (-128 -104 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24156,54 +24237,53 @@ world } side { - "id" "90463" - "plane" "(-128 -704 88) (-144 -704 88) (-144 -768 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "90757" + "plane" "(-144 -104 320) (-144 -104 336) (-144 -928 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 319.999] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90462" - "plane" "(-128 -768 88) (-128 -768 96) (-128 -704 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "90756" + "plane" "(-128 -104 320) (-144 -104 320) (-144 -928 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 320] 0.125" + "vaxis" "[1 0 0 128] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "155 204 0" - "groupid" "254063" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254067" + "id" "254270" side { - "id" "90473" - "plane" "(-128 -776 216) (-144 -776 216) (-144 -768 216)" + "id" "90845" + "plane" "(-140 -776 320) (-128 -776 320) (-128 -828 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90472" - "plane" "(-128 -768 216) (-144 -768 216) (-144 -768 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -192] 0.25" + "id" "90844" + "plane" "(-128 -776 320) (-140 -776 320) (-140 -776 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24211,43 +24291,43 @@ world } side { - "id" "90471" - "plane" "(-144 -776 88) (-144 -776 216) (-128 -776 216)" + "id" "90843" + "plane" "(-128 -828 240) (-140 -828 240) (-140 -828 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90470" - "plane" "(-144 -768 88) (-144 -768 216) (-144 -776 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 368] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "90842" + "plane" "(-140 -828 240) (-128 -828 240) (-128 -776 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90469" - "plane" "(-128 -768 88) (-144 -768 88) (-144 -776 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "90841" + "plane" "(-140 -828 320) (-140 -828 240) (-140 -776 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 1 0 -272] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90468" - "plane" "(-128 -776 88) (-128 -776 216) (-128 -768 216)" + "id" "90840" + "plane" "(-128 -776 320) (-128 -776 240) (-128 -828 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[0 1 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24255,54 +24335,54 @@ world } editor { - "color" "155 204 0" - "groupid" "254063" + "color" "139 224 0" + "groupid" "254676" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254068" + "id" "254536" side { - "id" "90479" - "plane" "(-128 -796 216) (-144 -796 216) (-144 -776 216)" + "id" "91175" + "plane" "(-128 -720 368) (-140 -720 368) (-140 -712 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90478" - "plane" "(-128 -776 216) (-144 -776 216) (-144 -776 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "91174" + "plane" "(-128 -712 368) (-140 -712 368) (-140 -712 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90477" - "plane" "(-144 -796 88) (-144 -796 216) (-128 -796 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "91173" + "plane" "(-140 -720 336) (-140 -720 368) (-128 -720 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90476" - "plane" "(-144 -776 88) (-144 -776 216) (-144 -796 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 368] 0.25" + "id" "91172" + "plane" "(-140 -712 336) (-140 -712 368) (-140 -720 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 -480] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24310,21 +24390,21 @@ world } side { - "id" "90475" - "plane" "(-128 -776 88) (-144 -776 88) (-144 -796 88)" + "id" "91171" + "plane" "(-128 -712 336) (-140 -712 336) (-140 -720 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90474" - "plane" "(-128 -796 88) (-128 -796 216) (-128 -776 216)" + "id" "91170" + "plane" "(-128 -720 336) (-128 -720 368) (-128 -712 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24332,32 +24412,32 @@ world } editor { - "color" "155 204 0" - "groupid" "254063" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254073" + "id" "254537" side { - "id" "90485" - "plane" "(-128 -768 216) (-144 -768 216) (-144 -704 216)" + "id" "91181" + "plane" "(-128 -728 368) (-136 -728 368) (-136 -720 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90484" - "plane" "(-128 -704 216) (-144 -704 216) (-144 -704 208)" + "id" "91180" + "plane" "(-128 -720 368) (-136 -720 368) (-136 -720 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24365,10 +24445,10 @@ world } side { - "id" "90483" - "plane" "(-144 -768 208) (-144 -768 216) (-128 -768 216)" + "id" "91179" + "plane" "(-136 -728 336) (-136 -728 368) (-128 -728 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24376,32 +24456,32 @@ world } side { - "id" "90482" - "plane" "(-144 -704 208) (-144 -704 216) (-144 -768 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 368] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91178" + "plane" "(-136 -720 336) (-136 -720 368) (-136 -728 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 -1 0 -448] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90481" - "plane" "(-128 -704 208) (-144 -704 208) (-144 -768 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 368] 0.25" - "vaxis" "[-1 0 0 192] 0.25" + "id" "91177" + "plane" "(-128 -720 336) (-136 -720 336) (-136 -728 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90480" - "plane" "(-128 -768 208) (-128 -768 216) (-128 -704 216)" + "id" "91176" + "plane" "(-128 -728 336) (-128 -728 368) (-128 -720 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24409,76 +24489,76 @@ world } editor { - "color" "155 204 0" - "groupid" "254063" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254075" + "id" "254538" side { - "id" "90527" - "plane" "(-128 -564 216) (-144 -564 216) (-144 -544 216)" + "id" "91187" + "plane" "(-128 -712 368) (-136 -712 368) (-136 -704 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90526" - "plane" "(-128 -544 216) (-144 -544 216) (-144 -544 88)" + "id" "91186" + "plane" "(-128 -704 368) (-136 -704 368) (-136 -704 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90525" - "plane" "(-144 -564 88) (-144 -564 216) (-128 -564 216)" + "id" "91185" + "plane" "(-136 -712 336) (-136 -712 368) (-128 -712 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90524" - "plane" "(-144 -544 88) (-144 -544 216) (-144 -564 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 384] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91184" + "plane" "(-136 -704 336) (-136 -704 368) (-136 -712 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 -1 0 -320] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90523" - "plane" "(-128 -544 88) (-144 -544 88) (-144 -564 88)" + "id" "91183" + "plane" "(-128 -704 336) (-136 -704 336) (-136 -712 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90522" - "plane" "(-128 -564 88) (-128 -564 216) (-128 -544 216)" + "id" "91182" + "plane" "(-128 -712 336) (-128 -712 368) (-128 -704 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24486,21 +24566,21 @@ world } editor { - "color" "155 204 0" - "groupid" "254074" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254076" + "id" "254539" side { - "id" "90533" - "plane" "(-128 -572 216) (-144 -572 216) (-144 -564 216)" + "id" "91193" + "plane" "(-128 -736 368) (-140 -736 368) (-140 -728 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24508,21 +24588,21 @@ world } side { - "id" "90532" - "plane" "(-128 -564 216) (-144 -564 216) (-144 -564 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "91192" + "plane" "(-128 -728 368) (-140 -728 368) (-140 -728 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90531" - "plane" "(-144 -572 88) (-144 -572 216) (-128 -572 216)" + "id" "91191" + "plane" "(-140 -736 336) (-140 -736 368) (-128 -736 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -192] 0.25" + "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24530,10 +24610,10 @@ world } side { - "id" "90530" - "plane" "(-144 -564 88) (-144 -564 216) (-144 -572 216)" + "id" "91190" + "plane" "(-140 -728 336) (-140 -728 368) (-140 -736 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 384] 0.25" + "uaxis" "[0 -1 0 -480] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24541,10 +24621,10 @@ world } side { - "id" "90529" - "plane" "(-128 -564 88) (-144 -564 88) (-144 -572 88)" + "id" "91189" + "plane" "(-128 -728 336) (-140 -728 336) (-140 -736 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24552,10 +24632,10 @@ world } side { - "id" "90528" - "plane" "(-128 -572 88) (-128 -572 216) (-128 -564 216)" + "id" "91188" + "plane" "(-128 -736 336) (-128 -736 368) (-128 -728 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24563,76 +24643,76 @@ world } editor { - "color" "155 204 0" - "groupid" "254074" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254077" + "id" "254540" side { - "id" "90539" - "plane" "(-128 -636 96) (-144 -636 96) (-144 -572 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 384] 0.25" - "vaxis" "[-1 0 0 192] 0.25" + "id" "91199" + "plane" "(-128 -744 368) (-136 -744 368) (-136 -736 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90538" - "plane" "(-128 -572 96) (-144 -572 96) (-144 -572 88)" + "id" "91198" + "plane" "(-128 -736 368) (-136 -736 368) (-136 -736 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90537" - "plane" "(-144 -636 88) (-144 -636 96) (-128 -636 96)" + "id" "91197" + "plane" "(-136 -744 336) (-136 -744 368) (-128 -744 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90536" - "plane" "(-144 -572 88) (-144 -572 96) (-144 -636 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 384] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91196" + "plane" "(-136 -736 336) (-136 -736 368) (-136 -744 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 -1 0 -448] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90535" - "plane" "(-128 -572 88) (-144 -572 88) (-144 -636 88)" + "id" "91195" + "plane" "(-128 -736 336) (-136 -736 336) (-136 -744 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90534" - "plane" "(-128 -636 88) (-128 -636 96) (-128 -572 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -32] 0.25" + "id" "91194" + "plane" "(-128 -744 336) (-128 -744 368) (-128 -736 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24640,21 +24720,21 @@ world } editor { - "color" "155 204 0" - "groupid" "254074" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254078" + "id" "254541" side { - "id" "90545" - "plane" "(-128 -644 216) (-144 -644 216) (-144 -636 216)" + "id" "91205" + "plane" "(-128 -752 368) (-140 -752 368) (-140 -744 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24662,10 +24742,10 @@ world } side { - "id" "90544" - "plane" "(-128 -636 216) (-144 -636 216) (-144 -636 88)" + "id" "91204" + "plane" "(-128 -744 368) (-140 -744 368) (-140 -744 336)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -192] 0.25" + "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24673,21 +24753,21 @@ world } side { - "id" "90543" - "plane" "(-144 -644 88) (-144 -644 216) (-128 -644 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "91203" + "plane" "(-140 -752 336) (-140 -752 368) (-128 -752 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90542" - "plane" "(-144 -636 88) (-144 -636 216) (-144 -644 216)" + "id" "91202" + "plane" "(-140 -744 336) (-140 -744 368) (-140 -752 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 384] 0.25" + "uaxis" "[0 -1 0 -480] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24695,10 +24775,10 @@ world } side { - "id" "90541" - "plane" "(-128 -636 88) (-144 -636 88) (-144 -644 88)" + "id" "91201" + "plane" "(-128 -744 336) (-140 -744 336) (-140 -752 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24706,10 +24786,10 @@ world } side { - "id" "90540" - "plane" "(-128 -644 88) (-128 -644 216) (-128 -636 216)" + "id" "91200" + "plane" "(-128 -752 336) (-128 -752 368) (-128 -744 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24717,76 +24797,76 @@ world } editor { - "color" "155 204 0" - "groupid" "254074" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254079" + "id" "254542" side { - "id" "90551" - "plane" "(-128 -664 216) (-144 -664 216) (-144 -644 216)" + "id" "91211" + "plane" "(-128 -760 368) (-136 -760 368) (-136 -752 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90550" - "plane" "(-128 -644 216) (-144 -644 216) (-144 -644 88)" + "id" "91210" + "plane" "(-128 -752 368) (-136 -752 368) (-136 -752 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90549" - "plane" "(-144 -664 88) (-144 -664 216) (-128 -664 216)" + "id" "91209" + "plane" "(-136 -760 336) (-136 -760 368) (-128 -760 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90548" - "plane" "(-144 -644 88) (-144 -644 216) (-144 -664 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 384] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91208" + "plane" "(-136 -752 336) (-136 -752 368) (-136 -760 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 -1 0 -448] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90547" - "plane" "(-128 -644 88) (-144 -644 88) (-144 -664 88)" + "id" "91207" + "plane" "(-128 -752 336) (-136 -752 336) (-136 -760 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90546" - "plane" "(-128 -664 88) (-128 -664 216) (-128 -644 216)" + "id" "91206" + "plane" "(-128 -760 336) (-128 -760 368) (-128 -752 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24794,21 +24874,21 @@ world } editor { - "color" "155 204 0" - "groupid" "254074" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254084" + "id" "254543" side { - "id" "90557" - "plane" "(-128 -636 216) (-144 -636 216) (-144 -572 216)" + "id" "91217" + "plane" "(-128 -768 368) (-140 -768 368) (-140 -760 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24816,10 +24896,10 @@ world } side { - "id" "90556" - "plane" "(-128 -572 216) (-144 -572 216) (-144 -572 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "91216" + "plane" "(-128 -760 368) (-140 -760 368) (-140 -760 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24827,10 +24907,10 @@ world } side { - "id" "90555" - "plane" "(-144 -636 208) (-144 -636 216) (-128 -636 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "91215" + "plane" "(-140 -768 336) (-140 -768 368) (-128 -768 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24838,10 +24918,10 @@ world } side { - "id" "90554" - "plane" "(-144 -572 208) (-144 -572 216) (-144 -636 216)" + "id" "91214" + "plane" "(-140 -760 336) (-140 -760 368) (-140 -768 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 384] 0.25" + "uaxis" "[0 -1 0 -480] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24849,21 +24929,21 @@ world } side { - "id" "90553" - "plane" "(-128 -572 208) (-144 -572 208) (-144 -636 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 384] 0.25" - "vaxis" "[-1 0 0 192] 0.25" + "id" "91213" + "plane" "(-128 -760 336) (-140 -760 336) (-140 -768 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90552" - "plane" "(-128 -636 208) (-128 -636 216) (-128 -572 216)" + "id" "91212" + "plane" "(-128 -768 336) (-128 -768 368) (-128 -760 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -24871,173 +24951,175 @@ world } editor { - "color" "155 204 0" - "groupid" "254074" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254136" + "id" "254544" side { - "id" "90569" - "plane" "(-144 -676 216) (-144 -664 216) (-128 -664 216)" + "id" "91223" + "plane" "(-128 -776 368) (-136 -776 368) (-136 -768 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90568" - "plane" "(-144 -664 88) (-144 -664 216) (-144 -676 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 160] 0.125" + "id" "91222" + "plane" "(-128 -768 368) (-136 -768 368) (-136 -768 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90567" - "plane" "(-128 -676 88) (-128 -676 216) (-128 -664 216)" + "id" "91221" + "plane" "(-136 -776 336) (-136 -776 368) (-128 -776 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.125" - "vaxis" "[0 0 -1 32] 0.125" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90566" - "plane" "(-128 -664 88) (-128 -664 216) (-144 -664 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "91220" + "plane" "(-136 -768 336) (-136 -768 368) (-136 -776 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 -1 0 -448] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90565" - "plane" "(-144 -676 88) (-144 -676 216) (-128 -676 216)" + "id" "91219" + "plane" "(-128 -768 336) (-136 -768 336) (-136 -776 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 32] 0.125" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90564" - "plane" "(-144 -664 88) (-144 -676 88) (-128 -676 88)" + "id" "91218" + "plane" "(-128 -776 336) (-128 -776 368) (-128 -768 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254140" + "id" "254545" side { - "id" "90581" - "plane" "(-144 -808 216) (-144 -796 216) (-128 -796 216)" + "id" "91229" + "plane" "(-128 -784 368) (-140 -784 368) (-140 -776 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90580" - "plane" "(-144 -796 88) (-144 -796 216) (-144 -808 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 32] 0.125" - "vaxis" "[0 0 -1 160] 0.125" + "id" "91228" + "plane" "(-128 -776 368) (-140 -776 368) (-140 -776 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90579" - "plane" "(-128 -808 88) (-128 -808 216) (-128 -796 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 32] 0.125" + "id" "91227" + "plane" "(-140 -784 336) (-140 -784 368) (-128 -784 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90578" - "plane" "(-128 -796 88) (-128 -796 216) (-144 -796 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "91226" + "plane" "(-140 -776 336) (-140 -776 368) (-140 -784 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 -480] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90577" - "plane" "(-144 -808 88) (-144 -808 216) (-128 -808 216)" + "id" "91225" + "plane" "(-128 -776 336) (-140 -776 336) (-140 -784 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 32] 0.125" + "uaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90576" - "plane" "(-144 -796 88) (-144 -808 88) (-128 -808 88)" + "id" "91224" + "plane" "(-128 -784 336) (-128 -784 368) (-128 -776 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254244" + "id" "254546" side { - "id" "90719" - "plane" "(-140 -828 320) (-128 -828 320) (-128 -836 320)" + "id" "91235" + "plane" "(-128 -792 368) (-136 -792 368) (-136 -784 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25045,8 +25127,8 @@ world } side { - "id" "90718" - "plane" "(-140 -828 240) (-128 -828 240) (-128 -828 320)" + "id" "91234" + "plane" "(-128 -784 368) (-136 -784 368) (-136 -784 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25056,10 +25138,10 @@ world } side { - "id" "90717" - "plane" "(-128 -836 320) (-128 -836 240) (-140 -836 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -208] 0.25" + "id" "91233" + "plane" "(-136 -792 336) (-136 -792 368) (-128 -792 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25067,21 +25149,21 @@ world } side { - "id" "90716" - "plane" "(-140 -836 320) (-140 -836 240) (-140 -828 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -160] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91232" + "plane" "(-136 -784 336) (-136 -784 368) (-136 -792 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 -1 0 -448] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90715" - "plane" "(-140 -836 240) (-128 -836 240) (-128 -828 240)" + "id" "91231" + "plane" "(-128 -784 336) (-136 -784 336) (-136 -792 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25089,8 +25171,8 @@ world } side { - "id" "90714" - "plane" "(-128 -828 320) (-128 -828 240) (-128 -836 240)" + "id" "91230" + "plane" "(-128 -792 336) (-128 -792 368) (-128 -784 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25100,21 +25182,21 @@ world } editor { - "color" "139 224 0" - "groupid" "254676" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254245" + "id" "254547" side { - "id" "90725" - "plane" "(-136 -836 312) (-128 -836 312) (-128 -900 312)" + "id" "91241" + "plane" "(-128 -800 368) (-140 -800 368) (-140 -792 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25122,43 +25204,43 @@ world } side { - "id" "90724" - "plane" "(-136 -836 248) (-128 -836 248) (-128 -836 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "91240" + "plane" "(-128 -792 368) (-140 -792 368) (-140 -792 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90723" - "plane" "(-128 -900 312) (-128 -900 248) (-136 -900 248)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "91239" + "plane" "(-140 -800 336) (-140 -800 368) (-128 -800 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90722" - "plane" "(-136 -900 312) (-136 -900 248) (-136 -836 248)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 96] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "91238" + "plane" "(-140 -792 336) (-140 -792 368) (-140 -800 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 -480] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90721" - "plane" "(-136 -900 248) (-128 -900 248) (-128 -836 248)" + "id" "91237" + "plane" "(-128 -792 336) (-140 -792 336) (-140 -800 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25166,8 +25248,8 @@ world } side { - "id" "90720" - "plane" "(-128 -836 312) (-128 -836 248) (-128 -900 248)" + "id" "91236" + "plane" "(-128 -800 336) (-128 -800 368) (-128 -792 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25177,21 +25259,21 @@ world } editor { - "color" "139 224 0" - "groupid" "254676" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254246" + "id" "254548" side { - "id" "90731" - "plane" "(-140 -836 320) (-128 -836 320) (-128 -900 320)" + "id" "91247" + "plane" "(-128 -808 368) (-136 -808 368) (-136 -800 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25199,52 +25281,52 @@ world } side { - "id" "90730" - "plane" "(-140 -836 312) (-128 -836 312) (-128 -836 320)" + "id" "91246" + "plane" "(-128 -800 368) (-136 -800 368) (-136 -800 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90729" - "plane" "(-128 -900 320) (-128 -900 312) (-140 -900 312)" + "id" "91245" + "plane" "(-136 -808 336) (-136 -808 368) (-128 -808 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90728" - "plane" "(-140 -900 320) (-140 -900 312) (-140 -836 312)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -160] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91244" + "plane" "(-136 -800 336) (-136 -800 368) (-136 -808 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 -1 0 -64] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90727" - "plane" "(-140 -900 312) (-128 -900 312) (-128 -836 312)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -160] 0.25" - "vaxis" "[-1 0 0 208] 0.25" + "id" "91243" + "plane" "(-128 -800 336) (-136 -800 336) (-136 -808 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90726" - "plane" "(-128 -836 320) (-128 -836 312) (-128 -900 312)" + "id" "91242" + "plane" "(-128 -808 336) (-128 -808 368) (-128 -800 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25254,21 +25336,21 @@ world } editor { - "color" "139 224 0" - "groupid" "254676" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254247" + "id" "254549" side { - "id" "90737" - "plane" "(-140 -900 320) (-128 -900 320) (-128 -908 320)" + "id" "91253" + "plane" "(-128 -824 368) (-140 -824 368) (-140 -808 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25276,10 +25358,10 @@ world } side { - "id" "90736" - "plane" "(-140 -900 240) (-128 -900 240) (-128 -900 320)" + "id" "91252" + "plane" "(-128 -808 368) (-140 -808 368) (-140 -808 336)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -208] 0.25" + "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25287,10 +25369,10 @@ world } side { - "id" "90735" - "plane" "(-128 -908 320) (-128 -908 240) (-140 -908 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "91251" + "plane" "(-140 -824 336) (-140 -824 368) (-128 -824 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25298,10 +25380,10 @@ world } side { - "id" "90734" - "plane" "(-140 -908 320) (-140 -908 240) (-140 -900 240)" + "id" "91250" + "plane" "(-140 -808 336) (-140 -808 368) (-140 -824 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -160] 0.25" + "uaxis" "[0 -1 0 -352] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25309,10 +25391,10 @@ world } side { - "id" "90733" - "plane" "(-140 -908 240) (-128 -908 240) (-128 -900 240)" + "id" "91249" + "plane" "(-128 -808 336) (-140 -808 336) (-140 -824 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25320,8 +25402,8 @@ world } side { - "id" "90732" - "plane" "(-128 -900 320) (-128 -900 240) (-128 -908 240)" + "id" "91248" + "plane" "(-128 -824 336) (-128 -824 368) (-128 -808 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25331,32 +25413,32 @@ world } editor { - "color" "139 224 0" - "groupid" "254676" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254248" + "id" "254550" side { - "id" "90743" - "plane" "(-140 -836 248) (-128 -836 248) (-128 -900 248)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -160] 0.25" - "vaxis" "[-1 0 0 208] 0.25" + "id" "91259" + "plane" "(-128 -840 368) (-140 -840 368) (-140 -832 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90742" - "plane" "(-140 -836 240) (-128 -836 240) (-128 -836 248)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "91258" + "plane" "(-128 -832 368) (-140 -832 368) (-140 -832 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25364,10 +25446,10 @@ world } side { - "id" "90741" - "plane" "(-128 -900 248) (-128 -900 240) (-140 -900 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "91257" + "plane" "(-140 -840 336) (-140 -840 368) (-128 -840 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25375,10 +25457,10 @@ world } side { - "id" "90740" - "plane" "(-140 -900 248) (-140 -900 240) (-140 -836 240)" + "id" "91256" + "plane" "(-140 -832 336) (-140 -832 368) (-140 -840 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -160] 0.25" + "uaxis" "[0 -1 0 -384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25386,20 +25468,20 @@ world } side { - "id" "90739" - "plane" "(-140 -900 240) (-128 -900 240) (-128 -836 240)" + "id" "91255" + "plane" "(-128 -832 336) (-140 -832 336) (-140 -840 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90738" - "plane" "(-128 -836 248) (-128 -836 240) (-128 -900 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "91254" + "plane" "(-128 -840 336) (-128 -840 368) (-128 -832 368)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -25408,21 +25490,21 @@ world } editor { - "color" "139 224 0" - "groupid" "254676" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254249" + "id" "254551" side { - "id" "90749" - "plane" "(-140 -908 320) (-128 -908 320) (-128 -928 320)" + "id" "91265" + "plane" "(-128 -832 368) (-136 -832 368) (-136 -824 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25430,8 +25512,8 @@ world } side { - "id" "90748" - "plane" "(-128 -908 320) (-140 -908 320) (-140 -908 240)" + "id" "91264" + "plane" "(-128 -824 368) (-136 -824 368) (-136 -824 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25441,8 +25523,8 @@ world } side { - "id" "90747" - "plane" "(-128 -928 240) (-140 -928 240) (-140 -928 320)" + "id" "91263" + "plane" "(-136 -832 336) (-136 -832 368) (-128 -832 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25452,30 +25534,30 @@ world } side { - "id" "90746" - "plane" "(-140 -928 240) (-128 -928 240) (-128 -908 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "91262" + "plane" "(-136 -824 336) (-136 -824 368) (-136 -832 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 -1 0 -256] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90745" - "plane" "(-140 -928 320) (-140 -928 240) (-140 -908 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 1 0 160] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91261" + "plane" "(-128 -824 336) (-136 -824 336) (-136 -832 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90744" - "plane" "(-128 -908 320) (-128 -908 240) (-128 -928 240)" + "id" "91260" + "plane" "(-128 -832 336) (-128 -832 368) (-128 -824 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25485,32 +25567,32 @@ world } editor { - "color" "139 224 0" - "groupid" "254676" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254259" + "id" "254552" side { - "id" "90761" - "plane" "(-128 -928 336) (-144 -928 336) (-144 -104 336)" + "id" "91271" + "plane" "(-128 -848 368) (-136 -848 368) (-136 -840 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90760" - "plane" "(-144 -928 320) (-144 -928 336) (-128 -928 336)" + "id" "91270" + "plane" "(-128 -840 368) (-136 -840 368) (-136 -840 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25518,10 +25600,10 @@ world } side { - "id" "90759" - "plane" "(-128 -104 320) (-128 -104 336) (-144 -104 336)" + "id" "91269" + "plane" "(-136 -848 336) (-136 -848 368) (-128 -848 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25529,64 +25611,65 @@ world } side { - "id" "90758" - "plane" "(-128 -928 320) (-128 -928 336) (-128 -104 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91268" + "plane" "(-136 -840 336) (-136 -840 368) (-136 -848 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 -1 0 -256] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90757" - "plane" "(-144 -104 320) (-144 -104 336) (-144 -928 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 319.999] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "91267" + "plane" "(-128 -840 336) (-136 -840 336) (-136 -848 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90756" - "plane" "(-128 -104 320) (-144 -104 320) (-144 -928 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 320] 0.125" - "vaxis" "[1 0 0 128] 0.125" + "id" "91266" + "plane" "(-128 -848 336) (-128 -848 368) (-128 -840 368)" + "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" "0 133 222" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254270" + "id" "254553" side { - "id" "90845" - "plane" "(-140 -776 320) (-128 -776 320) (-128 -828 320)" + "id" "91277" + "plane" "(-128 -856 368) (-140 -856 368) (-140 -848 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90844" - "plane" "(-128 -776 320) (-140 -776 320) (-140 -776 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "91276" + "plane" "(-128 -848 368) (-140 -848 368) (-140 -848 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25594,10 +25677,10 @@ world } side { - "id" "90843" - "plane" "(-128 -828 240) (-140 -828 240) (-140 -828 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "91275" + "plane" "(-140 -856 336) (-140 -856 368) (-128 -856 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25605,32 +25688,32 @@ world } side { - "id" "90842" - "plane" "(-140 -828 240) (-128 -828 240) (-128 -776 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "91274" + "plane" "(-140 -848 336) (-140 -848 368) (-140 -856 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 -384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90841" - "plane" "(-140 -828 320) (-140 -828 240) (-140 -776 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 1 0 -272] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91273" + "plane" "(-128 -848 336) (-140 -848 336) (-140 -856 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "90840" - "plane" "(-128 -776 320) (-128 -776 240) (-128 -828 240)" + "id" "91272" + "plane" "(-128 -856 336) (-128 -856 368) (-128 -848 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25638,19 +25721,19 @@ world } editor { - "color" "139 224 0" - "groupid" "254676" + "color" "179 144 0" + "groupid" "254368" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254536" + "id" "254554" side { - "id" "91175" - "plane" "(-128 -720 368) (-140 -720 368) (-140 -712 368)" + "id" "91283" + "plane" "(-128 -864 368) (-136 -864 368) (-136 -856 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" @@ -25660,10 +25743,10 @@ world } side { - "id" "91174" - "plane" "(-128 -712 368) (-140 -712 368) (-140 -712 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" + "id" "91282" + "plane" "(-128 -856 368) (-136 -856 368) (-136 -856 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25671,10 +25754,10 @@ world } side { - "id" "91173" - "plane" "(-140 -720 336) (-140 -720 368) (-128 -720 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" + "id" "91281" + "plane" "(-136 -864 336) (-136 -864 368) (-128 -864 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25682,19 +25765,19 @@ world } side { - "id" "91172" - "plane" "(-140 -712 336) (-140 -712 368) (-140 -720 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -480] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91280" + "plane" "(-136 -856 336) (-136 -856 368) (-136 -864 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 -1 0 -256] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91171" - "plane" "(-128 -712 336) (-140 -712 336) (-140 -720 336)" + "id" "91279" + "plane" "(-128 -856 336) (-136 -856 336) (-136 -864 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" @@ -25704,8 +25787,8 @@ world } side { - "id" "91170" - "plane" "(-128 -720 336) (-128 -720 368) (-128 -712 368)" + "id" "91278" + "plane" "(-128 -864 336) (-128 -864 368) (-128 -856 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25723,24 +25806,24 @@ world } solid { - "id" "254537" + "id" "254555" side { - "id" "91181" - "plane" "(-128 -728 368) (-136 -728 368) (-136 -720 368)" + "id" "91289" + "plane" "(-128 -872 368) (-140 -872 368) (-140 -864 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91180" - "plane" "(-128 -720 368) (-136 -720 368) (-136 -720 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "91288" + "plane" "(-128 -864 368) (-140 -864 368) (-140 -864 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25748,10 +25831,10 @@ world } side { - "id" "91179" - "plane" "(-136 -728 336) (-136 -728 368) (-128 -728 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "91287" + "plane" "(-140 -872 336) (-140 -872 368) (-128 -872 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25759,30 +25842,30 @@ world } side { - "id" "91178" - "plane" "(-136 -720 336) (-136 -720 368) (-136 -728 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 -448] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "91286" + "plane" "(-140 -864 336) (-140 -864 368) (-140 -872 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 -384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91177" - "plane" "(-128 -720 336) (-136 -720 336) (-136 -728 336)" + "id" "91285" + "plane" "(-128 -864 336) (-140 -864 336) (-140 -872 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91176" - "plane" "(-128 -728 336) (-128 -728 368) (-128 -720 368)" + "id" "91284" + "plane" "(-128 -872 336) (-128 -872 368) (-128 -864 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25800,13 +25883,13 @@ world } solid { - "id" "254538" + "id" "254556" side { - "id" "91187" - "plane" "(-128 -712 368) (-136 -712 368) (-136 -704 368)" + "id" "91295" + "plane" "(-128 -880 368) (-136 -880 368) (-136 -872 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25814,8 +25897,8 @@ world } side { - "id" "91186" - "plane" "(-128 -704 368) (-136 -704 368) (-136 -704 336)" + "id" "91294" + "plane" "(-128 -872 368) (-136 -872 368) (-136 -872 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25825,8 +25908,8 @@ world } side { - "id" "91185" - "plane" "(-136 -712 336) (-136 -712 368) (-128 -712 368)" + "id" "91293" + "plane" "(-136 -880 336) (-136 -880 368) (-128 -880 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25836,10 +25919,10 @@ world } side { - "id" "91184" - "plane" "(-136 -704 336) (-136 -704 368) (-136 -712 368)" + "id" "91292" + "plane" "(-136 -872 336) (-136 -872 368) (-136 -880 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 -320] 0.125" + "uaxis" "[0 -1 0 -256] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -25847,10 +25930,10 @@ world } side { - "id" "91183" - "plane" "(-128 -704 336) (-136 -704 336) (-136 -712 336)" + "id" "91291" + "plane" "(-128 -872 336) (-136 -872 336) (-136 -880 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25858,8 +25941,8 @@ world } side { - "id" "91182" - "plane" "(-128 -712 336) (-128 -712 368) (-128 -704 368)" + "id" "91290" + "plane" "(-128 -880 336) (-128 -880 368) (-128 -872 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25877,13 +25960,13 @@ world } solid { - "id" "254539" + "id" "254557" side { - "id" "91193" - "plane" "(-128 -736 368) (-140 -736 368) (-140 -728 368)" + "id" "91301" + "plane" "(-128 -888 368) (-140 -888 368) (-140 -880 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25891,8 +25974,8 @@ world } side { - "id" "91192" - "plane" "(-128 -728 368) (-140 -728 368) (-140 -728 336)" + "id" "91300" + "plane" "(-128 -880 368) (-140 -880 368) (-140 -880 336)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25902,8 +25985,8 @@ world } side { - "id" "91191" - "plane" "(-140 -736 336) (-140 -736 368) (-128 -736 368)" + "id" "91299" + "plane" "(-140 -888 336) (-140 -888 368) (-128 -888 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25913,10 +25996,10 @@ world } side { - "id" "91190" - "plane" "(-140 -728 336) (-140 -728 368) (-140 -736 368)" + "id" "91298" + "plane" "(-140 -880 336) (-140 -880 368) (-140 -888 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -480] 0.25" + "uaxis" "[0 -1 0 -384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25924,10 +26007,10 @@ world } side { - "id" "91189" - "plane" "(-128 -728 336) (-140 -728 336) (-140 -736 336)" + "id" "91297" + "plane" "(-128 -880 336) (-140 -880 336) (-140 -888 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25935,8 +26018,8 @@ world } side { - "id" "91188" - "plane" "(-128 -736 336) (-128 -736 368) (-128 -728 368)" + "id" "91296" + "plane" "(-128 -888 336) (-128 -888 368) (-128 -880 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25954,13 +26037,13 @@ world } solid { - "id" "254540" + "id" "254558" side { - "id" "91199" - "plane" "(-128 -744 368) (-136 -744 368) (-136 -736 368)" + "id" "91307" + "plane" "(-128 -896 368) (-136 -896 368) (-136 -888 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -25968,8 +26051,8 @@ world } side { - "id" "91198" - "plane" "(-128 -736 368) (-136 -736 368) (-136 -736 336)" + "id" "91306" + "plane" "(-128 -888 368) (-136 -888 368) (-136 -888 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25979,8 +26062,8 @@ world } side { - "id" "91197" - "plane" "(-136 -744 336) (-136 -744 368) (-128 -744 368)" + "id" "91305" + "plane" "(-136 -896 336) (-136 -896 368) (-128 -896 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -25990,10 +26073,10 @@ world } side { - "id" "91196" - "plane" "(-136 -736 336) (-136 -736 368) (-136 -744 368)" + "id" "91304" + "plane" "(-136 -888 336) (-136 -888 368) (-136 -896 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 -448] 0.125" + "uaxis" "[0 -1 0 -256] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -26001,10 +26084,10 @@ world } side { - "id" "91195" - "plane" "(-128 -736 336) (-136 -736 336) (-136 -744 336)" + "id" "91303" + "plane" "(-128 -888 336) (-136 -888 336) (-136 -896 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26012,8 +26095,8 @@ world } side { - "id" "91194" - "plane" "(-128 -744 336) (-128 -744 368) (-128 -736 368)" + "id" "91302" + "plane" "(-128 -896 336) (-128 -896 368) (-128 -888 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -26031,22 +26114,22 @@ world } solid { - "id" "254541" + "id" "254559" side { - "id" "91205" - "plane" "(-128 -752 368) (-140 -752 368) (-140 -744 368)" + "id" "91313" + "plane" "(-128 -904 368) (-140 -904 368) (-140 -896 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91204" - "plane" "(-128 -744 368) (-140 -744 368) (-140 -744 336)" + "id" "91312" + "plane" "(-128 -896 368) (-140 -896 368) (-140 -896 336)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -26056,8 +26139,8 @@ world } side { - "id" "91203" - "plane" "(-140 -752 336) (-140 -752 368) (-128 -752 368)" + "id" "91311" + "plane" "(-140 -904 336) (-140 -904 368) (-128 -904 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -26067,10 +26150,10 @@ world } side { - "id" "91202" - "plane" "(-140 -744 336) (-140 -744 368) (-140 -752 368)" + "id" "91310" + "plane" "(-140 -896 336) (-140 -896 368) (-140 -904 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -480] 0.25" + "uaxis" "[0 -1 0 -384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26078,19 +26161,19 @@ world } side { - "id" "91201" - "plane" "(-128 -744 336) (-140 -744 336) (-140 -752 336)" + "id" "91309" + "plane" "(-128 -896 336) (-140 -896 336) (-140 -904 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91200" - "plane" "(-128 -752 336) (-128 -752 368) (-128 -744 368)" + "id" "91308" + "plane" "(-128 -904 336) (-128 -904 368) (-128 -896 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -26108,13 +26191,13 @@ world } solid { - "id" "254542" + "id" "254560" side { - "id" "91211" - "plane" "(-128 -760 368) (-136 -760 368) (-136 -752 368)" + "id" "91319" + "plane" "(-128 -912 368) (-136 -912 368) (-136 -904 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26122,8 +26205,8 @@ world } side { - "id" "91210" - "plane" "(-128 -752 368) (-136 -752 368) (-136 -752 336)" + "id" "91318" + "plane" "(-128 -904 368) (-136 -904 368) (-136 -904 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -26133,8 +26216,8 @@ world } side { - "id" "91209" - "plane" "(-136 -760 336) (-136 -760 368) (-128 -760 368)" + "id" "91317" + "plane" "(-136 -912 336) (-136 -912 368) (-128 -912 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -26144,10 +26227,10 @@ world } side { - "id" "91208" - "plane" "(-136 -752 336) (-136 -752 368) (-136 -760 368)" + "id" "91316" + "plane" "(-136 -904 336) (-136 -904 368) (-136 -912 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 -448] 0.125" + "uaxis" "[0 -1 0 -384] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -26155,10 +26238,10 @@ world } side { - "id" "91207" - "plane" "(-128 -752 336) (-136 -752 336) (-136 -760 336)" + "id" "91315" + "plane" "(-128 -904 336) (-136 -904 336) (-136 -912 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26166,8 +26249,8 @@ world } side { - "id" "91206" - "plane" "(-128 -760 336) (-128 -760 368) (-128 -752 368)" + "id" "91314" + "plane" "(-128 -912 336) (-128 -912 368) (-128 -904 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -26185,13 +26268,13 @@ world } solid { - "id" "254543" + "id" "254561" side { - "id" "91217" - "plane" "(-128 -768 368) (-140 -768 368) (-140 -760 368)" + "id" "91325" + "plane" "(-128 -920 368) (-140 -920 368) (-140 -912 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26199,8 +26282,8 @@ world } side { - "id" "91216" - "plane" "(-128 -760 368) (-140 -760 368) (-140 -760 336)" + "id" "91324" + "plane" "(-128 -912 368) (-140 -912 368) (-140 -912 336)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -26210,8 +26293,8 @@ world } side { - "id" "91215" - "plane" "(-140 -768 336) (-140 -768 368) (-128 -768 368)" + "id" "91323" + "plane" "(-140 -920 336) (-140 -920 368) (-128 -920 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[1 0 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -26221,10 +26304,10 @@ world } side { - "id" "91214" - "plane" "(-140 -760 336) (-140 -760 368) (-140 -768 368)" + "id" "91322" + "plane" "(-140 -912 336) (-140 -912 368) (-140 -920 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -480] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26232,10 +26315,10 @@ world } side { - "id" "91213" - "plane" "(-128 -760 336) (-140 -760 336) (-140 -768 336)" + "id" "91321" + "plane" "(-128 -912 336) (-140 -912 336) (-140 -920 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26243,8 +26326,8 @@ world } side { - "id" "91212" - "plane" "(-128 -768 336) (-128 -768 368) (-128 -760 368)" + "id" "91320" + "plane" "(-128 -920 336) (-128 -920 368) (-128 -912 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -26262,13 +26345,13 @@ world } solid { - "id" "254544" + "id" "254562" side { - "id" "91223" - "plane" "(-128 -776 368) (-136 -776 368) (-136 -768 368)" + "id" "91331" + "plane" "(-136 -928 368) (-136 -920 368) (-128 -920 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26276,8 +26359,8 @@ world } side { - "id" "91222" - "plane" "(-128 -768 368) (-136 -768 368) (-136 -768 336)" + "id" "91330" + "plane" "(-136 -920 368) (-136 -920 336) (-128 -920 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -26287,8 +26370,8 @@ world } side { - "id" "91221" - "plane" "(-136 -776 336) (-136 -776 368) (-128 -776 368)" + "id" "91329" + "plane" "(-136 -928 336) (-136 -928 368) (-128 -928 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -26298,10 +26381,10 @@ world } side { - "id" "91220" - "plane" "(-136 -768 336) (-136 -768 368) (-136 -776 368)" + "id" "91328" + "plane" "(-136 -920 368) (-136 -928 368) (-136 -928 336)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 -448] 0.125" + "uaxis" "[0 -1 0 0] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -26309,10 +26392,10 @@ world } side { - "id" "91219" - "plane" "(-128 -768 336) (-136 -768 336) (-136 -776 336)" + "id" "91327" + "plane" "(-136 -920 336) (-136 -928 336) (-128 -928 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 -1 0 -48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26320,8 +26403,8 @@ world } side { - "id" "91218" - "plane" "(-128 -776 336) (-128 -776 368) (-128 -768 368)" + "id" "91326" + "plane" "(-128 -928 368) (-128 -920 368) (-128 -920 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -26339,46 +26422,46 @@ world } solid { - "id" "254545" + "id" "254566" side { - "id" "91229" - "plane" "(-128 -784 368) (-140 -784 368) (-140 -776 368)" + "id" "91343" + "plane" "(-144 -928 240) (-144 -544 240) (-128 -544 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91228" - "plane" "(-128 -776 368) (-140 -776 368) (-140 -776 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91342" + "plane" "(-144 -544 216) (-144 -544 240) (-144 -928 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 192] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91227" - "plane" "(-140 -784 336) (-140 -784 368) (-128 -784 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91341" + "plane" "(-128 -928 216) (-128 -928 240) (-128 -544 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91226" - "plane" "(-140 -776 336) (-140 -776 368) (-140 -784 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -480] 0.25" + "id" "91340" + "plane" "(-128 -544 216) (-128 -544 240) (-144 -544 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26386,76 +26469,75 @@ world } side { - "id" "91225" - "plane" "(-128 -776 336) (-140 -776 336) (-140 -784 336)" + "id" "91339" + "plane" "(-144 -928 216) (-144 -928 240) (-128 -928 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91224" - "plane" "(-128 -784 336) (-128 -784 368) (-128 -776 368)" + "id" "91338" + "plane" "(-144 -544 216) (-144 -928 216) (-128 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254546" + "id" "254578" side { - "id" "91235" - "plane" "(-128 -792 368) (-136 -792 368) (-136 -784 368)" + "id" "91355" + "plane" "(-140 -816 64) (-140 -788 64) (-128 -788 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91234" - "plane" "(-128 -784 368) (-136 -784 368) (-136 -784 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91354" + "plane" "(-140 -788 0) (-140 -788 64) (-140 -816 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91233" - "plane" "(-136 -792 336) (-136 -792 368) (-128 -792 368)" + "id" "91353" + "plane" "(-128 -816 0) (-128 -816 64) (-128 -788 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91232" - "plane" "(-136 -784 336) (-136 -784 368) (-136 -792 368)" + "id" "91352" + "plane" "(-128 -788 0) (-128 -788 64) (-140 -788 64)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 -448] 0.125" + "uaxis" "[1 0 0 0] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -26463,54 +26545,53 @@ world } side { - "id" "91231" - "plane" "(-128 -784 336) (-136 -784 336) (-136 -792 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "91351" + "plane" "(-140 -816 0) (-140 -816 64) (-128 -816 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91230" - "plane" "(-128 -792 336) (-128 -792 368) (-128 -784 368)" + "id" "91350" + "plane" "(-140 -788 0) (-140 -816 0) (-128 -816 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254547" + "id" "254579" side { - "id" "91241" - "plane" "(-128 -800 368) (-140 -800 368) (-140 -792 368)" + "id" "91367" + "plane" "(-136 -788 64) (-136 -684 64) (-128 -684 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91240" - "plane" "(-128 -792 368) (-140 -792 368) (-140 -792 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" + "id" "91366" + "plane" "(-136 -684 0) (-136 -684 64) (-136 -788 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 1 0 -96] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26518,21 +26599,21 @@ world } side { - "id" "91239" - "plane" "(-140 -800 336) (-140 -800 368) (-128 -800 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91365" + "plane" "(-128 -788 0) (-128 -788 64) (-128 -684 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91238" - "plane" "(-140 -792 336) (-140 -792 368) (-140 -800 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -480] 0.25" + "id" "91364" + "plane" "(-128 -684 0) (-128 -684 64) (-136 -684 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26540,54 +26621,53 @@ world } side { - "id" "91237" - "plane" "(-128 -792 336) (-140 -792 336) (-140 -800 336)" + "id" "91363" + "plane" "(-136 -788 0) (-136 -788 64) (-128 -788 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91236" - "plane" "(-128 -800 336) (-128 -800 368) (-128 -792 368)" + "id" "91362" + "plane" "(-136 -684 0) (-136 -788 0) (-128 -788 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254548" + "id" "254582" side { - "id" "91247" - "plane" "(-128 -808 368) (-136 -808 368) (-136 -800 368)" + "id" "91379" + "plane" "(-136 -656 64) (-136 -544 64) (-128 -544 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91246" - "plane" "(-128 -800 368) (-136 -800 368) (-136 -800 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "91378" + "plane" "(-136 -544 0) (-136 -544 64) (-136 -656 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 1 0 -112] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26595,76 +26675,75 @@ world } side { - "id" "91245" - "plane" "(-136 -808 336) (-136 -808 368) (-128 -808 368)" + "id" "91377" + "plane" "(-128 -656 0) (-128 -656 64) (-128 -544 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91244" - "plane" "(-136 -800 336) (-136 -800 368) (-136 -808 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 -64] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "91376" + "plane" "(-128 -544 0) (-128 -544 64) (-136 -544 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" "91243" - "plane" "(-128 -800 336) (-136 -800 336) (-136 -808 336)" + "id" "91375" + "plane" "(-136 -656 0) (-136 -656 64) (-128 -656 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91242" - "plane" "(-128 -808 336) (-128 -808 368) (-128 -800 368)" + "id" "91374" + "plane" "(-136 -544 0) (-136 -656 0) (-128 -656 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254549" + "id" "254584" side { - "id" "91253" - "plane" "(-128 -824 368) (-140 -824 368) (-140 -808 368)" + "id" "91391" + "plane" "(-136 -928 64) (-136 -816 64) (-128 -816 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91252" - "plane" "(-128 -808 368) (-140 -808 368) (-140 -808 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" + "id" "91390" + "plane" "(-136 -816 0) (-136 -816 64) (-136 -928 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 1 0 464] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26672,21 +26751,21 @@ world } side { - "id" "91251" - "plane" "(-140 -824 336) (-140 -824 368) (-128 -824 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91389" + "plane" "(-128 -928 0) (-128 -928 64) (-128 -816 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91250" - "plane" "(-140 -808 336) (-140 -808 368) (-140 -824 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -352] 0.25" + "id" "91388" + "plane" "(-128 -816 0) (-128 -816 64) (-136 -816 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26694,54 +26773,53 @@ world } side { - "id" "91249" - "plane" "(-128 -808 336) (-140 -808 336) (-140 -824 336)" + "id" "91387" + "plane" "(-136 -928 0) (-136 -928 64) (-128 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91248" - "plane" "(-128 -824 336) (-128 -824 368) (-128 -808 368)" + "id" "91386" + "plane" "(-136 -816 0) (-136 -928 0) (-128 -928 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254550" + "id" "254679" side { - "id" "91259" - "plane" "(-128 -840 368) (-140 -840 368) (-140 -832 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "91481" + "plane" "(-140 -768 248) (-140 -704 248) (-128 -704 248)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 368] 0.25" + "vaxis" "[-1 0 0 208] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91258" - "plane" "(-128 -832 368) (-140 -832 368) (-140 -832 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" + "id" "91480" + "plane" "(-140 -704 248) (-140 -704 240) (-128 -704 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26749,10 +26827,10 @@ world } side { - "id" "91257" - "plane" "(-140 -840 336) (-140 -840 368) (-128 -840 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" + "id" "91479" + "plane" "(-140 -768 248) (-128 -768 248) (-128 -768 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26760,10 +26838,10 @@ world } side { - "id" "91256" - "plane" "(-140 -832 336) (-140 -832 368) (-140 -840 368)" + "id" "91478" + "plane" "(-140 -704 248) (-140 -768 248) (-140 -768 240)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -384] 0.25" + "uaxis" "[0 -1 0 368] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26771,21 +26849,21 @@ world } side { - "id" "91255" - "plane" "(-128 -832 336) (-140 -832 336) (-140 -840 336)" + "id" "91477" + "plane" "(-140 -704 240) (-140 -768 240) (-128 -768 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91254" - "plane" "(-128 -840 336) (-128 -840 368) (-128 -832 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "91476" + "plane" "(-128 -768 248) (-128 -704 248) (-128 -704 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26793,21 +26871,20 @@ world } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "0 109 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254551" + "id" "254680" side { - "id" "91265" - "plane" "(-128 -832 368) (-136 -832 368) (-136 -824 368)" + "id" "91487" + "plane" "(-140 -704 320) (-140 -696 320) (-128 -696 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 32] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26815,8 +26892,8 @@ world } side { - "id" "91264" - "plane" "(-128 -824 368) (-136 -824 368) (-136 -824 336)" + "id" "91486" + "plane" "(-140 -696 320) (-140 -696 240) (-128 -696 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -26826,10 +26903,10 @@ world } side { - "id" "91263" - "plane" "(-136 -832 336) (-136 -832 368) (-128 -832 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "91485" + "plane" "(-140 -704 320) (-128 -704 320) (-128 -704 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 -208] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26837,21 +26914,21 @@ world } side { - "id" "91262" - "plane" "(-136 -824 336) (-136 -824 368) (-136 -832 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 -256] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "91484" + "plane" "(-140 -696 320) (-140 -704 320) (-140 -704 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 368] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91261" - "plane" "(-128 -824 336) (-136 -824 336) (-136 -832 336)" + "id" "91483" + "plane" "(-140 -696 240) (-140 -704 240) (-128 -704 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 32] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26859,10 +26936,10 @@ world } side { - "id" "91260" - "plane" "(-128 -832 336) (-128 -832 368) (-128 -824 368)" + "id" "91482" + "plane" "(-128 -704 320) (-128 -696 320) (-128 -696 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26870,21 +26947,20 @@ world } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "0 223 224" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254552" + "id" "254681" side { - "id" "91271" - "plane" "(-128 -848 368) (-136 -848 368) (-136 -840 368)" + "id" "91493" + "plane" "(-136 -768 312) (-136 -704 312) (-128 -704 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 32] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26892,43 +26968,43 @@ world } side { - "id" "91270" - "plane" "(-128 -840 368) (-136 -840 368) (-136 -840 336)" + "id" "91492" + "plane" "(-136 -704 312) (-136 -704 248) (-128 -704 248)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91269" - "plane" "(-136 -848 336) (-136 -848 368) (-128 -848 368)" + "id" "91491" + "plane" "(-136 -768 312) (-128 -768 312) (-128 -768 248)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91268" - "plane" "(-136 -840 336) (-136 -840 368) (-136 -848 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 -256] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "91490" + "plane" "(-136 -704 312) (-136 -768 312) (-136 -768 248)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 112] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91267" - "plane" "(-128 -840 336) (-136 -840 336) (-136 -848 336)" + "id" "91489" + "plane" "(-136 -704 248) (-136 -768 248) (-128 -768 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 32] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26936,10 +27012,10 @@ world } side { - "id" "91266" - "plane" "(-128 -848 336) (-128 -848 368) (-128 -840 368)" + "id" "91488" + "plane" "(-128 -768 312) (-128 -704 312) (-128 -704 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -26947,54 +27023,53 @@ world } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "0 161 238" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254553" + "id" "254682" side { - "id" "91277" - "plane" "(-128 -856 368) (-140 -856 368) (-140 -848 368)" + "id" "91499" + "plane" "(-140 -768 320) (-140 -704 320) (-128 -704 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91276" - "plane" "(-128 -848 368) (-140 -848 368) (-140 -848 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91498" + "plane" "(-140 -704 320) (-140 -704 312) (-128 -704 312)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91275" - "plane" "(-140 -856 336) (-140 -856 368) (-128 -856 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91497" + "plane" "(-140 -768 320) (-128 -768 320) (-128 -768 312)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91274" - "plane" "(-140 -848 336) (-140 -848 368) (-140 -856 368)" + "id" "91496" + "plane" "(-140 -704 320) (-140 -768 320) (-140 -768 312)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -384] 0.25" + "uaxis" "[0 -1 0 368] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27002,21 +27077,21 @@ world } side { - "id" "91273" - "plane" "(-128 -848 336) (-140 -848 336) (-140 -856 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "91495" + "plane" "(-140 -704 312) (-140 -768 312) (-128 -768 312)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 368] 0.25" + "vaxis" "[-1 0 0 208] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91272" - "plane" "(-128 -856 336) (-128 -856 368) (-128 -848 368)" + "id" "91494" + "plane" "(-128 -768 320) (-128 -704 320) (-128 -704 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27024,21 +27099,20 @@ world } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254554" + "id" "254684" side { - "id" "91283" - "plane" "(-128 -864 368) (-136 -864 368) (-136 -856 368)" + "id" "91511" + "plane" "(-140 -776 320) (-140 -768 320) (-128 -768 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27046,10 +27120,10 @@ world } side { - "id" "91282" - "plane" "(-128 -856 368) (-136 -856 368) (-136 -856 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "91510" + "plane" "(-140 -768 320) (-140 -768 240) (-128 -768 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 -208] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27057,8 +27131,8 @@ world } side { - "id" "91281" - "plane" "(-136 -864 336) (-136 -864 368) (-128 -864 368)" + "id" "91509" + "plane" "(-140 -776 320) (-128 -776 320) (-128 -776 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -27068,21 +27142,21 @@ world } side { - "id" "91280" - "plane" "(-136 -856 336) (-136 -856 368) (-136 -864 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 -256] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "91508" + "plane" "(-140 -768 320) (-140 -776 320) (-140 -776 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 368] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91279" - "plane" "(-128 -856 336) (-136 -856 336) (-136 -864 336)" + "id" "91507" + "plane" "(-140 -768 240) (-140 -776 240) (-128 -776 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27090,10 +27164,10 @@ world } side { - "id" "91278" - "plane" "(-128 -864 336) (-128 -864 368) (-128 -856 368)" + "id" "91506" + "plane" "(-128 -776 320) (-128 -768 320) (-128 -768 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27101,32 +27175,31 @@ world } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "0 111 168" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254555" + "id" "254686" side { - "id" "91289" - "plane" "(-128 -872 368) (-140 -872 368) (-140 -864 368)" + "id" "91559" + "plane" "(-128 -544 320) (-128 -564 320) (-140 -564 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91288" - "plane" "(-128 -864 368) (-140 -864 368) (-140 -864 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" + "id" "91558" + "plane" "(-140 -544 320) (-140 -544 240) (-128 -544 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27134,10 +27207,10 @@ world } side { - "id" "91287" - "plane" "(-140 -872 336) (-140 -872 368) (-128 -872 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" + "id" "91557" + "plane" "(-140 -564 240) (-140 -564 320) (-128 -564 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27145,32 +27218,32 @@ world } side { - "id" "91286" - "plane" "(-140 -864 336) (-140 -864 368) (-140 -872 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -384] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91556" + "plane" "(-128 -564 240) (-128 -544 240) (-140 -544 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91285" - "plane" "(-128 -864 336) (-140 -864 336) (-140 -872 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "91555" + "plane" "(-140 -564 240) (-140 -544 240) (-140 -544 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 1 0 -304] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91284" - "plane" "(-128 -872 336) (-128 -872 368) (-128 -864 368)" + "id" "91554" + "plane" "(-128 -544 240) (-128 -564 240) (-128 -564 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27178,30 +27251,30 @@ world } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "139 224 0" + "groupid" "254685" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254556" + "id" "254687" side { - "id" "91295" - "plane" "(-128 -880 368) (-136 -880 368) (-136 -872 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "91565" + "plane" "(-128 -572 248) (-128 -636 248) (-140 -636 248)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 384] 0.25" + "vaxis" "[-1 0 0 208] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91294" - "plane" "(-128 -872 368) (-136 -872 368) (-136 -872 336)" + "id" "91564" + "plane" "(-128 -572 240) (-128 -572 248) (-140 -572 248)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -27211,8 +27284,8 @@ world } side { - "id" "91293" - "plane" "(-136 -880 336) (-136 -880 368) (-128 -880 368)" + "id" "91563" + "plane" "(-128 -636 240) (-140 -636 240) (-140 -636 248)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -27222,21 +27295,21 @@ world } side { - "id" "91292" - "plane" "(-136 -872 336) (-136 -872 368) (-136 -880 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 -256] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "91562" + "plane" "(-140 -636 240) (-140 -572 240) (-140 -572 248)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91291" - "plane" "(-128 -872 336) (-136 -872 336) (-136 -880 336)" + "id" "91561" + "plane" "(-128 -636 240) (-128 -572 240) (-140 -572 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27244,10 +27317,10 @@ world } side { - "id" "91290" - "plane" "(-128 -880 336) (-128 -880 368) (-128 -872 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "91560" + "plane" "(-128 -572 240) (-128 -636 240) (-128 -636 248)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27255,32 +27328,32 @@ world } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "139 224 0" + "groupid" "254685" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254557" + "id" "254688" side { - "id" "91301" - "plane" "(-128 -888 368) (-140 -888 368) (-140 -880 368)" + "id" "91571" + "plane" "(-128 -564 320) (-128 -572 320) (-140 -572 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91300" - "plane" "(-128 -880 368) (-140 -880 368) (-140 -880 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" + "id" "91570" + "plane" "(-128 -564 240) (-128 -564 320) (-140 -564 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27288,10 +27361,10 @@ world } side { - "id" "91299" - "plane" "(-140 -888 336) (-140 -888 368) (-128 -888 368)" + "id" "91569" + "plane" "(-128 -572 240) (-140 -572 240) (-140 -572 320)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" + "uaxis" "[1 0 0 -208] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27299,10 +27372,10 @@ world } side { - "id" "91298" - "plane" "(-140 -880 336) (-140 -880 368) (-140 -888 368)" + "id" "91568" + "plane" "(-140 -572 240) (-140 -564 240) (-140 -564 320)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -384] 0.25" + "uaxis" "[0 -1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27310,21 +27383,21 @@ world } side { - "id" "91297" - "plane" "(-128 -880 336) (-140 -880 336) (-140 -888 336)" + "id" "91567" + "plane" "(-128 -572 240) (-128 -564 240) (-140 -564 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91296" - "plane" "(-128 -888 336) (-128 -888 368) (-128 -880 368)" + "id" "91566" + "plane" "(-128 -564 240) (-128 -572 240) (-128 -572 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27332,21 +27405,21 @@ world } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "139 224 0" + "groupid" "254685" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254558" + "id" "254689" side { - "id" "91307" - "plane" "(-128 -896 368) (-136 -896 368) (-136 -888 368)" + "id" "91577" + "plane" "(-128 -572 312) (-128 -636 312) (-136 -636 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27354,43 +27427,43 @@ world } side { - "id" "91306" - "plane" "(-128 -888 368) (-136 -888 368) (-136 -888 336)" + "id" "91576" + "plane" "(-128 -572 248) (-128 -572 312) (-136 -572 312)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91305" - "plane" "(-136 -896 336) (-136 -896 368) (-128 -896 368)" + "id" "91575" + "plane" "(-128 -636 248) (-136 -636 248) (-136 -636 312)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91304" - "plane" "(-136 -888 336) (-136 -888 368) (-136 -896 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 -256] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "91574" + "plane" "(-136 -636 248) (-136 -572 248) (-136 -572 312)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91303" - "plane" "(-128 -888 336) (-136 -888 336) (-136 -896 336)" + "id" "91573" + "plane" "(-128 -636 248) (-128 -572 248) (-136 -572 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27398,10 +27471,10 @@ world } side { - "id" "91302" - "plane" "(-128 -896 336) (-128 -896 368) (-128 -888 368)" + "id" "91572" + "plane" "(-128 -572 248) (-128 -636 248) (-128 -636 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27409,21 +27482,21 @@ world } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "139 224 0" + "groupid" "254685" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254559" + "id" "254690" side { - "id" "91313" - "plane" "(-128 -904 368) (-140 -904 368) (-140 -896 368)" + "id" "91583" + "plane" "(-128 -572 320) (-128 -636 320) (-140 -636 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 -1 0 48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27431,32 +27504,32 @@ world } side { - "id" "91312" - "plane" "(-128 -896 368) (-140 -896 368) (-140 -896 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91582" + "plane" "(-128 -572 312) (-128 -572 320) (-140 -572 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91311" - "plane" "(-140 -904 336) (-140 -904 368) (-128 -904 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91581" + "plane" "(-128 -636 312) (-140 -636 312) (-140 -636 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91310" - "plane" "(-140 -896 336) (-140 -896 368) (-140 -904 368)" + "id" "91580" + "plane" "(-140 -636 312) (-140 -572 312) (-140 -572 320)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -384] 0.25" + "uaxis" "[0 -1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27464,21 +27537,21 @@ world } side { - "id" "91309" - "plane" "(-128 -896 336) (-140 -896 336) (-140 -904 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "91579" + "plane" "(-128 -636 312) (-128 -572 312) (-140 -572 312)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 384] 0.25" + "vaxis" "[-1 0 0 208] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91308" - "plane" "(-128 -904 336) (-128 -904 368) (-128 -896 368)" + "id" "91578" + "plane" "(-128 -572 312) (-128 -636 312) (-128 -636 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27486,21 +27559,21 @@ world } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "139 224 0" + "groupid" "254685" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254560" + "id" "254691" side { - "id" "91319" - "plane" "(-128 -912 368) (-136 -912 368) (-136 -904 368)" + "id" "91589" + "plane" "(-128 -644 320) (-128 -696 320) (-140 -696 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 48] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27508,8 +27581,8 @@ world } side { - "id" "91318" - "plane" "(-128 -904 368) (-136 -904 368) (-136 -904 336)" + "id" "91588" + "plane" "(-140 -644 320) (-140 -644 240) (-128 -644 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -27519,8 +27592,8 @@ world } side { - "id" "91317" - "plane" "(-136 -912 336) (-136 -912 368) (-128 -912 368)" + "id" "91587" + "plane" "(-140 -696 240) (-140 -696 320) (-128 -696 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -27530,32 +27603,32 @@ world } side { - "id" "91316" - "plane" "(-136 -904 336) (-136 -904 368) (-136 -912 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 -384] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "91586" + "plane" "(-128 -696 240) (-128 -644 240) (-140 -644 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91315" - "plane" "(-128 -904 336) (-136 -904 336) (-136 -912 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "91585" + "plane" "(-140 -696 240) (-140 -644 240) (-140 -644 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 1 0 -384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91314" - "plane" "(-128 -912 336) (-128 -912 368) (-128 -904 368)" + "id" "91584" + "plane" "(-128 -644 240) (-128 -696 240) (-128 -696 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27563,32 +27636,32 @@ world } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "139 224 0" + "groupid" "254685" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254561" + "id" "254692" side { - "id" "91325" - "plane" "(-128 -920 368) (-140 -920 368) (-140 -912 368)" + "id" "91595" + "plane" "(-128 -636 320) (-128 -644 320) (-140 -644 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91324" - "plane" "(-128 -912 368) (-140 -912 368) (-140 -912 336)" + "id" "91594" + "plane" "(-128 -636 240) (-128 -636 320) (-140 -636 320)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" + "uaxis" "[1 0 0 -208] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27596,10 +27669,10 @@ world } side { - "id" "91323" - "plane" "(-140 -920 336) (-140 -920 368) (-128 -920 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 304] 0.25" + "id" "91593" + "plane" "(-128 -644 240) (-140 -644 240) (-140 -644 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27607,10 +27680,10 @@ world } side { - "id" "91322" - "plane" "(-140 -912 336) (-140 -912 368) (-140 -920 368)" + "id" "91592" + "plane" "(-140 -644 240) (-140 -636 240) (-140 -636 320)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27618,21 +27691,21 @@ world } side { - "id" "91321" - "plane" "(-128 -912 336) (-140 -912 336) (-140 -920 336)" + "id" "91591" + "plane" "(-128 -644 240) (-128 -636 240) (-140 -636 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91320" - "plane" "(-128 -920 336) (-128 -920 368) (-128 -912 368)" + "id" "91590" + "plane" "(-128 -636 240) (-128 -644 240) (-128 -644 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27640,54 +27713,54 @@ world } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "139 224 0" + "groupid" "254685" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254562" + "id" "254810" side { - "id" "91331" - "plane" "(-136 -928 368) (-136 -920 368) (-128 -920 368)" + "id" "91721" + "plane" "(-144 -704 368) (-144 -680 368) (8 -680 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91330" - "plane" "(-136 -920 368) (-136 -920 336) (-128 -920 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "91720" + "plane" "(-144 -680 336) (-144 -680 368) (-144 -704 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91329" - "plane" "(-136 -928 336) (-136 -928 368) (-128 -928 368)" + "id" "91719" + "plane" "(8 -704 336) (8 -704 368) (8 -680 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91328" - "plane" "(-136 -920 368) (-136 -928 368) (-136 -928 336)" + "id" "91718" + "plane" "(8 -680 336) (8 -680 368) (-144 -680 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 0] 0.125" + "uaxis" "[1 0 0 0] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -27695,76 +27768,75 @@ world } side { - "id" "91327" - "plane" "(-136 -920 336) (-136 -928 336) (-128 -928 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "91717" + "plane" "(-144 -704 336) (-144 -704 368) (8 -704 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91326" - "plane" "(-128 -928 368) (-128 -920 368) (-128 -920 336)" + "id" "91716" + "plane" "(-144 -680 336) (-144 -704 336) (8 -704 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "179 144 0" - "groupid" "254368" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254566" + "id" "254833" side { - "id" "91343" - "plane" "(-144 -928 240) (-144 -544 240) (-128 -544 240)" + "id" "91727" + "plane" "(-148 -664 372) (7.99999 -664 372) (7.99999 -968 372)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91342" - "plane" "(-144 -544 216) (-144 -544 240) (-144 -928 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 192] 0.125" + "id" "91726" + "plane" "(-148 -664 372) (-148 -968 372) (-148 -968 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91341" - "plane" "(-128 -928 216) (-128 -928 240) (-128 -544 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "91725" + "plane" "(-148 -664 372) (-148 -664 368) (7.99999 -664 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91340" - "plane" "(-128 -544 216) (-128 -544 240) (-144 -544 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "91724" + "plane" "(-148 -968 372) (7.99999 -968 372) (7.99999 -968 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27772,22 +27844,22 @@ world } side { - "id" "91339" - "plane" "(-144 -928 216) (-144 -928 240) (-128 -928 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "91723" + "plane" "(-148 -968 368) (7.99999 -968 368) (7.99999 -664 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91338" - "plane" "(-144 -544 216) (-144 -928 216) (-128 -928 216)" + "id" "91722" + "plane" "(7.99999 -968 372) (7.99999 -664 372) (7.99999 -664 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -27801,11 +27873,11 @@ world } solid { - "id" "254578" + "id" "254886" side { - "id" "91355" - "plane" "(-140 -816 64) (-140 -788 64) (-128 -788 64)" + "id" "91811" + "plane" "(-128 -528 256) (-128 -240 256) (128 -240 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -27815,97 +27887,97 @@ world } side { - "id" "91354" - "plane" "(-140 -788 0) (-140 -788 64) (-140 -816 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "91810" + "plane" "(-128 -240 240) (-128 -528 240) (128 -528 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 480] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91353" - "plane" "(-128 -816 0) (-128 -816 64) (-128 -788 64)" + "id" "91809" + "plane" "(-128 -528 240) (-128 -240 240) (-128 -240 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91352" - "plane" "(-128 -788 0) (-128 -788 64) (-140 -788 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "91808" + "plane" "(128 -240 240) (128 -528 240) (128 -528 256)" + "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" "91351" - "plane" "(-140 -816 0) (-140 -816 64) (-128 -816 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "91807" + "plane" "(-128 -240 240) (128 -240 240) (128 -240 256)" + "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" "91350" - "plane" "(-140 -788 0) (-140 -816 0) (-128 -816 0)" + "id" "91806" + "plane" "(128 -528 240) (-128 -528 240) (-128 -528 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254579" + "id" "254938" side { - "id" "91367" - "plane" "(-136 -788 64) (-136 -684 64) (-128 -684 64)" + "id" "92015" + "plane" "(-128 -528 240) (128 -528 240) (128 -544 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 48] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91366" - "plane" "(-136 -684 0) (-136 -684 64) (-136 -788 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 1 0 -96] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92014" + "plane" "(128 -528 216) (128 -528 240) (-128 -528 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 -256] 0.125" + "vaxis" "[0 0 -1 192] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91365" - "plane" "(-128 -788 0) (-128 -788 64) (-128 -684 64)" + "id" "92013" + "plane" "(-128 -544 216) (-128 -544 240) (128 -544 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.125" + "uaxis" "[1 0 0 -32] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -27913,10 +27985,10 @@ world } side { - "id" "91364" - "plane" "(-128 -684 0) (-128 -684 64) (-136 -684 64)" + "id" "92012" + "plane" "(128 -544 216) (128 -544 240) (128 -528 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -27924,10 +27996,10 @@ world } side { - "id" "91363" - "plane" "(-136 -788 0) (-136 -788 64) (-128 -788 64)" + "id" "92011" + "plane" "(-128 -528 216) (-128 -528 240) (-128 -544 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.125" + "uaxis" "[0 -1 0 0] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -27935,11 +28007,11 @@ world } side { - "id" "91362" - "plane" "(-136 -684 0) (-136 -788 0) (-128 -788 0)" + "id" "92010" + "plane" "(128 -528 216) (-128 -528 216) (-128 -544 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 48] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -27953,34 +28025,34 @@ world } solid { - "id" "254582" + "id" "255746" side { - "id" "91379" - "plane" "(-136 -656 64) (-136 -544 64) (-128 -544 64)" + "id" "92347" + "plane" "(-144 -240 320) (-144 -224 320) (-128 -224 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91378" - "plane" "(-136 -544 0) (-136 -544 64) (-136 -656 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 1 0 -112] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92346" + "plane" "(-144 -224 4.85507e-06) (-144 -224 320) (-144 -240 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91377" - "plane" "(-128 -656 0) (-128 -656 64) (-128 -544 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "92345" + "plane" "(-128 -240 4.85507e-06) (-128 -240 320) (-128 -224 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" "uaxis" "[0 1 0 0] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" @@ -27989,20 +28061,20 @@ world } side { - "id" "91376" - "plane" "(-128 -544 0) (-128 -544 64) (-136 -544 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92344" + "plane" "(-128 -224 4.85507e-06) (-128 -224 320) (-144 -224 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91375" - "plane" "(-136 -656 0) (-136 -656 64) (-128 -656 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "92343" + "plane" "(-144 -240 4.85507e-06) (-144 -240 320) (-128 -240 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" "uaxis" "[1 0 0 0] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" @@ -28011,11 +28083,11 @@ world } side { - "id" "91374" - "plane" "(-136 -544 0) (-136 -656 0) (-128 -656 0)" + "id" "92342" + "plane" "(-144 -224 4.85507e-06) (-144 -240 4.85507e-06) (-128 -240 4.85507e-06)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28029,24 +28101,24 @@ world } solid { - "id" "254584" + "id" "255747" side { - "id" "91391" - "plane" "(-136 -928 64) (-136 -816 64) (-128 -816 64)" + "id" "92359" + "plane" "(128 -224 64) (128 -236 64) (-128 -236 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91390" - "plane" "(-136 -816 0) (-136 -816 64) (-136 -928 64)" + "id" "92358" + "plane" "(-128 -224 0) (-128 -224 64) (-128 -236 64)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 1 0 464] 0.25" + "uaxis" "[0 -1 0 -64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28054,10 +28126,10 @@ world } side { - "id" "91389" - "plane" "(-128 -928 0) (-128 -928 64) (-128 -816 64)" + "id" "92357" + "plane" "(128 -236 0) (128 -236 64) (128 -224 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.125" + "uaxis" "[0 -1 0 -32] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -28065,9 +28137,9 @@ world } side { - "id" "91388" - "plane" "(-128 -816 0) (-128 -816 64) (-136 -816 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "92356" + "plane" "(-128 -236 0) (-128 -236 64) (128 -236 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -28076,8 +28148,8 @@ world } side { - "id" "91387" - "plane" "(-136 -928 0) (-136 -928 64) (-128 -928 64)" + "id" "92355" + "plane" "(128 -224 0) (128 -224 64) (-128 -224 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.125" "vaxis" "[0 0 -1 0] 0.125" @@ -28087,11 +28159,11 @@ world } side { - "id" "91386" - "plane" "(-136 -816 0) (-136 -928 0) (-128 -928 0)" + "id" "92354" + "plane" "(128 -236 0) (128 -224 0) (-128 -224 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -28105,89 +28177,89 @@ world } solid { - "id" "254679" + "id" "255749" side { - "id" "91481" - "plane" "(-140 -768 248) (-140 -704 248) (-128 -704 248)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 368] 0.25" - "vaxis" "[-1 0 0 208] 0.25" + "id" "92377" + "plane" "(-128 -224 88) (128 -224 88) (128 -240 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91480" - "plane" "(-140 -704 248) (-140 -704 240) (-128 -704 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92376" + "plane" "(-128 -240 68) (-128 -240 88) (128 -240 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 -256] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91479" - "plane" "(-140 -768 248) (-128 -768 248) (-128 -768 240)" + "id" "92375" + "plane" "(128 -224 68) (128 -224 88) (-128 -224 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91478" - "plane" "(-140 -704 248) (-140 -768 248) (-140 -768 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 368] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92374" + "plane" "(128 -240 68) (128 -240 88) (128 -224 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91477" - "plane" "(-140 -704 240) (-140 -768 240) (-128 -768 240)" + "id" "92373" + "plane" "(-128 -224 68) (-128 -224 88) (-128 -240 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91476" - "plane" "(-128 -768 248) (-128 -704 248) (-128 -704 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92372" + "plane" "(128 -224 68) (-128 -224 68) (-128 -240 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 109 222" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254680" + "id" "255750" side { - "id" "91487" - "plane" "(-140 -704 320) (-140 -696 320) (-128 -696 320)" + "id" "92383" + "plane" "(-128 -240 68) (-128 -224 68) (128 -224 68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28195,86 +28267,86 @@ world } side { - "id" "91486" - "plane" "(-140 -696 320) (-140 -696 240) (-128 -696 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92382" + "plane" "(128 -236 64) (-128 -236 64) (-128 -240 68)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 -256] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91485" - "plane" "(-140 -704 320) (-128 -704 320) (-128 -704 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -208] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92381" + "plane" "(-128 -224 64) (128 -224 64) (128 -224 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91484" - "plane" "(-140 -696 320) (-140 -704 320) (-140 -704 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 368] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92380" + "plane" "(128 -224 64) (128 -236 64) (128 -240 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91483" - "plane" "(-140 -696 240) (-140 -704 240) (-128 -704 240)" + "id" "92379" + "plane" "(-128 -236 64) (-128 -224 64) (-128 -224 68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91482" - "plane" "(-128 -704 320) (-128 -696 320) (-128 -696 240)" + "id" "92378" + "plane" "(128 -236 64) (128 -224 64) (-128 -224 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 223 224" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254681" + "id" "255754" side { - "id" "91493" - "plane" "(-136 -768 312) (-136 -704 312) (-128 -704 312)" + "id" "92425" + "plane" "(-28 -240 216) (-28 -224 216) (128 -224 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91492" - "plane" "(-136 -704 312) (-136 -704 248) (-128 -704 248)" + "id" "92424" + "plane" "(128 -240 216) (128 -224 216) (128 -224 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28282,10 +28354,10 @@ world } side { - "id" "91491" - "plane" "(-136 -768 312) (-128 -768 312) (-128 -768 248)" + "id" "92423" + "plane" "(-28 -240 216) (-28 -240 88) (-28 -224 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28293,32 +28365,32 @@ world } side { - "id" "91490" - "plane" "(-136 -704 312) (-136 -768 312) (-136 -768 248)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 112] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "92422" + "plane" "(128 -240 216) (128 -240 88) (-28 -240 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[-1 0 0 480] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91489" - "plane" "(-136 -704 248) (-136 -768 248) (-128 -768 248)" + "id" "92421" + "plane" "(128 -240 88) (128 -224 88) (-28 -224 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91488" - "plane" "(-128 -768 312) (-128 -704 312) (-128 -704 248)" + "id" "92420" + "plane" "(-28 -224 216) (-28 -224 88) (128 -224 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28326,31 +28398,31 @@ world } editor { - "color" "0 161 238" + "color" "0 203 112" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254682" + "id" "255755" side { - "id" "91499" - "plane" "(-140 -768 320) (-140 -704 320) (-128 -704 320)" + "id" "92431" + "plane" "(-36 -240 216) (-36 -224 216) (-28 -224 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91498" - "plane" "(-140 -704 320) (-140 -704 312) (-128 -704 312)" + "id" "92430" + "plane" "(-28 -240 216) (-28 -224 216) (-28 -224 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28358,21 +28430,21 @@ world } side { - "id" "91497" - "plane" "(-140 -768 320) (-128 -768 320) (-128 -768 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "92429" + "plane" "(-36 -240 216) (-36 -240 88) (-36 -224 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91496" - "plane" "(-140 -704 320) (-140 -768 320) (-140 -768 312)" + "id" "92428" + "plane" "(-28 -240 216) (-28 -240 88) (-36 -240 88)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 368] 0.25" + "uaxis" "[-1 0 0 480] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28380,21 +28452,21 @@ world } side { - "id" "91495" - "plane" "(-140 -704 312) (-140 -768 312) (-128 -768 312)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 368] 0.25" - "vaxis" "[-1 0 0 208] 0.25" + "id" "92427" + "plane" "(-28 -240 88) (-28 -224 88) (-36 -224 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91494" - "plane" "(-128 -768 320) (-128 -704 320) (-128 -704 312)" + "id" "92426" + "plane" "(-36 -224 216) (-36 -224 88) (-28 -224 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28402,53 +28474,53 @@ world } editor { - "color" "0 143 120" + "color" "0 185 166" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254684" + "id" "255756" side { - "id" "91511" - "plane" "(-140 -776 320) (-140 -768 320) (-128 -768 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "92437" + "plane" "(-100 -240 96) (-100 -224 96) (-36 -224 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 480] 0.25" + "vaxis" "[0 -1 0 -192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91510" - "plane" "(-140 -768 320) (-140 -768 240) (-128 -768 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -208] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92436" + "plane" "(-36 -240 96) (-36 -224 96) (-36 -224 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91509" - "plane" "(-140 -776 320) (-128 -776 320) (-128 -776 240)" + "id" "92435" + "plane" "(-100 -240 96) (-100 -240 88) (-100 -224 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91508" - "plane" "(-140 -768 320) (-140 -776 320) (-140 -776 240)" + "id" "92434" + "plane" "(-36 -240 96) (-36 -240 88) (-100 -240 88)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 368] 0.25" + "uaxis" "[-1 0 0 480] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28456,21 +28528,21 @@ world } side { - "id" "91507" - "plane" "(-140 -768 240) (-140 -776 240) (-128 -776 240)" + "id" "92433" + "plane" "(-36 -240 88) (-36 -224 88) (-100 -224 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91506" - "plane" "(-128 -776 320) (-128 -768 320) (-128 -768 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "id" "92432" + "plane" "(-100 -224 96) (-100 -224 88) (-36 -224 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28478,31 +28550,31 @@ world } editor { - "color" "0 111 168" + "color" "0 199 176" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254686" + "id" "255757" side { - "id" "91559" - "plane" "(-128 -544 320) (-128 -564 320) (-140 -564 320)" + "id" "92443" + "plane" "(-108 -240 216) (-108 -224 216) (-100 -224 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91558" - "plane" "(-140 -544 320) (-140 -544 240) (-128 -544 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "92442" + "plane" "(-100 -240 216) (-100 -224 216) (-100 -224 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 192] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28510,43 +28582,43 @@ world } side { - "id" "91557" - "plane" "(-140 -564 240) (-140 -564 320) (-128 -564 320)" + "id" "92441" + "plane" "(-108 -240 216) (-108 -240 88) (-108 -224 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91556" - "plane" "(-128 -564 240) (-128 -544 240) (-140 -544 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "92440" + "plane" "(-100 -240 216) (-100 -240 88) (-108 -240 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 480] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91555" - "plane" "(-140 -564 240) (-140 -544 240) (-140 -544 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 1 0 -304] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92439" + "plane" "(-100 -240 88) (-100 -224 88) (-108 -224 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91554" - "plane" "(-128 -544 240) (-128 -564 240) (-128 -564 320)" + "id" "92438" + "plane" "(-108 -224 216) (-108 -224 88) (-100 -224 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28554,54 +28626,53 @@ world } editor { - "color" "139 224 0" - "groupid" "254685" + "color" "0 245 130" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254687" + "id" "255758" side { - "id" "91565" - "plane" "(-128 -572 248) (-128 -636 248) (-140 -636 248)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 384] 0.25" - "vaxis" "[-1 0 0 208] 0.25" + "id" "92449" + "plane" "(-128 -240 216) (-128 -224 216) (-108 -224 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91564" - "plane" "(-128 -572 240) (-128 -572 248) (-140 -572 248)" + "id" "92448" + "plane" "(-108 -240 216) (-108 -224 216) (-108 -224 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91563" - "plane" "(-128 -636 240) (-140 -636 240) (-140 -636 248)" + "id" "92447" + "plane" "(-128 -240 216) (-128 -240 88) (-128 -224 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91562" - "plane" "(-140 -636 240) (-140 -572 240) (-140 -572 248)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 384] 0.25" + "id" "92446" + "plane" "(-108 -240 216) (-108 -240 88) (-128 -240 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[-1 0 0 480] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28609,21 +28680,21 @@ world } side { - "id" "91561" - "plane" "(-128 -636 240) (-128 -572 240) (-140 -572 240)" + "id" "92445" + "plane" "(-108 -240 88) (-108 -224 88) (-128 -224 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91560" - "plane" "(-128 -572 240) (-128 -636 240) (-128 -636 248)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -32] 0.25" + "id" "92444" + "plane" "(-128 -224 216) (-128 -224 88) (-108 -224 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28631,32 +28702,31 @@ world } editor { - "color" "139 224 0" - "groupid" "254685" + "color" "0 255 196" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254688" + "id" "255763" side { - "id" "91571" - "plane" "(-128 -564 320) (-128 -572 320) (-140 -572 320)" + "id" "92455" + "plane" "(-100 -240 216) (-100 -224 216) (-36 -224 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91570" - "plane" "(-128 -564 240) (-128 -564 320) (-140 -564 320)" + "id" "92454" + "plane" "(-36 -240 216) (-36 -224 216) (-36 -224 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28664,10 +28734,10 @@ world } side { - "id" "91569" - "plane" "(-128 -572 240) (-140 -572 240) (-140 -572 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -208] 0.25" + "id" "92453" + "plane" "(-100 -240 216) (-100 -240 208) (-100 -224 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28675,10 +28745,10 @@ world } side { - "id" "91568" - "plane" "(-140 -572 240) (-140 -564 240) (-140 -564 320)" + "id" "92452" + "plane" "(-36 -240 216) (-36 -240 208) (-100 -240 208)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 384] 0.25" + "uaxis" "[-1 0 0 480] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28686,21 +28756,21 @@ world } side { - "id" "91567" - "plane" "(-128 -572 240) (-128 -564 240) (-140 -564 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "92451" + "plane" "(-36 -240 208) (-36 -224 208) (-100 -224 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 480] 0.25" + "vaxis" "[0 -1 0 -192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91566" - "plane" "(-128 -564 240) (-128 -572 240) (-128 -572 320)" + "id" "92450" + "plane" "(-100 -224 216) (-100 -224 208) (-36 -224 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -28708,373 +28778,368 @@ world } editor { - "color" "139 224 0" - "groupid" "254685" + "color" "0 203 132" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254689" + "id" "255851" side { - "id" "91577" - "plane" "(-128 -572 312) (-128 -636 312) (-136 -636 312)" + "id" "92503" + "plane" "(-136 -224 64) (-136 -104 64) (-128 -104 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91576" - "plane" "(-128 -572 248) (-128 -572 312) (-136 -572 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "92502" + "plane" "(-136 -104 0) (-136 -104 64) (-136 -224 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 1 0 -304] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91575" - "plane" "(-128 -636 248) (-136 -636 248) (-136 -636 312)" + "id" "92501" + "plane" "(-128 -224 0) (-128 -224 64) (-128 -104 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91574" - "plane" "(-136 -636 248) (-136 -572 248) (-136 -572 312)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "92500" + "plane" "(-128 -104 0) (-128 -104 64) (-136 -104 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" "91573" - "plane" "(-128 -636 248) (-128 -572 248) (-136 -572 248)" + "id" "92499" + "plane" "(-136 -224 0) (-136 -224 64) (-128 -224 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91572" - "plane" "(-128 -572 248) (-128 -636 248) (-128 -636 312)" + "id" "92498" + "plane" "(-136 -104 0) (-136 -224 0) (-128 -224 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "139 224 0" - "groupid" "254685" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254690" + "id" "255852" side { - "id" "91583" - "plane" "(-128 -572 320) (-128 -636 320) (-140 -636 320)" + "id" "92521" + "plane" "(-144 -224 88) (-144 -104 88) (-128 -104 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91582" - "plane" "(-128 -572 312) (-128 -572 320) (-140 -572 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "92520" + "plane" "(-144 -104 68) (-144 -104 88) (-144 -224 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91581" - "plane" "(-128 -636 312) (-140 -636 312) (-140 -636 320)" + "id" "92519" + "plane" "(-128 -224 68) (-128 -224 88) (-128 -104 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91580" - "plane" "(-140 -636 312) (-140 -572 312) (-140 -572 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 384] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92518" + "plane" "(-128 -104 68) (-128 -104 88) (-144 -104 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91579" - "plane" "(-128 -636 312) (-128 -572 312) (-140 -572 312)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 384] 0.25" - "vaxis" "[-1 0 0 208] 0.25" + "id" "92517" + "plane" "(-144 -224 68) (-144 -224 88) (-128 -224 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91578" - "plane" "(-128 -572 312) (-128 -636 312) (-128 -636 320)" + "id" "92516" + "plane" "(-144 -104 68) (-144 -224 68) (-128 -224 68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "139 224 0" - "groupid" "254685" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254691" + "id" "255853" side { - "id" "91589" - "plane" "(-128 -644 320) (-128 -696 320) (-140 -696 320)" + "id" "92527" + "plane" "(-144 -128 68) (-128 -128 68) (-128 -224 68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91588" - "plane" "(-140 -644 320) (-140 -644 240) (-128 -644 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92526" + "plane" "(-144 -128 68) (-144 -224 68) (-140 -224 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91587" - "plane" "(-140 -696 240) (-140 -696 320) (-128 -696 320)" + "id" "92525" + "plane" "(-128 -224 68) (-128 -128 68) (-128 -128 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91586" - "plane" "(-128 -696 240) (-128 -644 240) (-140 -644 240)" + "id" "92524" + "plane" "(-128 -128 68) (-144 -128 68) (-140 -128 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91585" - "plane" "(-140 -696 240) (-140 -644 240) (-140 -644 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 1 0 -384] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92523" + "plane" "(-144 -224 68) (-128 -224 68) (-128 -224 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91584" - "plane" "(-128 -644 240) (-128 -696 240) (-128 -696 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92522" + "plane" "(-140 -224 64) (-128 -224 64) (-128 -128 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 128] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "139 224 0" - "groupid" "254685" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254692" + "id" "255898" side { - "id" "91595" - "plane" "(-128 -636 320) (-128 -644 320) (-140 -644 320)" + "id" "92647" + "plane" "(-144 -104 336) (-144 -88 336) (-128 -88 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91594" - "plane" "(-128 -636 240) (-128 -636 320) (-140 -636 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -208] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92646" + "plane" "(-144 -88 0) (-144 -88 336) (-144 -104 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 -64] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91593" - "plane" "(-128 -644 240) (-140 -644 240) (-140 -644 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92645" + "plane" "(-128 -104 0) (-128 -104 336) (-128 -88 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 -64] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91592" - "plane" "(-140 -644 240) (-140 -636 240) (-140 -636 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 384] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "92644" + "plane" "(-128 -88 0) (-128 -88 336) (-144 -88 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91591" - "plane" "(-128 -644 240) (-128 -636 240) (-140 -636 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "92643" + "plane" "(-144 -104 0) (-144 -104 336) (-128 -104 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91590" - "plane" "(-128 -636 240) (-128 -644 240) (-128 -644 320)" + "id" "92642" + "plane" "(-144 -88 0) (-144 -104 0) (-128 -104 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "139 224 0" - "groupid" "254685" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254810" + "id" "250740" side { - "id" "91721" - "plane" "(-144 -704 368) (-144 -680 368) (8 -680 368)" + "id" "88446" + "plane" "(192 -928 256) (192 -640 256) (448 -640 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91720" - "plane" "(-144 -680 336) (-144 -680 368) (-144 -704 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 -448] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88445" + "plane" "(192 -640 240) (192 -928 240) (448 -928 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 -96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91719" - "plane" "(8 -704 336) (8 -704 368) (8 -680 368)" + "id" "88444" + "plane" "(192 -928 240) (192 -640 240) (192 -640 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91718" - "plane" "(8 -680 336) (8 -680 368) (-144 -680 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88443" + "plane" "(448 -640 240) (448 -928 240) (448 -928 256)" + "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" "91717" - "plane" "(-144 -704 336) (-144 -704 368) (8 -704 368)" + "id" "88442" + "plane" "(192 -640 240) (448 -640 240) (448 -640 256)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 64] 0.125" + "uaxis" "[1 0 0 0] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -29082,64 +29147,64 @@ world } side { - "id" "91716" - "plane" "(-144 -680 336) (-144 -704 336) (8 -704 336)" + "id" "88441" + "plane" "(448 -928 240) (192 -928 240) (192 -928 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254833" + "id" "250756" side { - "id" "91727" - "plane" "(-148 -664 372) (7.99999 -664 372) (7.99999 -968 372)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "88458" + "plane" "(255 -161 104) (255 -144 104) (352 -144 104)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[1 0 0 0] 0.2" + "vaxis" "[0 -1 0 -166] 0.2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91726" - "plane" "(-148 -664 372) (-148 -968 372) (-148 -968 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88457" + "plane" "(255 -144 100) (255 -161 100) (352 -161 100)" + "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" "91725" - "plane" "(-148 -664 372) (-148 -664 368) (7.99999 -664 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88456" + "plane" "(255 -161 100) (255 -144 100) (255 -144 104)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" + "uaxis" "[0 -1 0 199.111] 0.135" + "vaxis" "[0 0 -1 260] 0.135" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91724" - "plane" "(-148 -968 372) (7.99999 -968 372) (7.99999 -968 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 -256] 0.25" + "id" "88455" + "plane" "(352 -144 100) (352 -161 100) (352 -161 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -29147,53 +29212,53 @@ world } side { - "id" "91723" - "plane" "(-148 -968 368) (7.99999 -968 368) (7.99999 -664 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 -256] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "88454" + "plane" "(255 -144 100) (352 -144 100) (352 -144 104)" + "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" "91722" - "plane" "(7.99999 -968 372) (7.99999 -664 372) (7.99999 -664 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "88453" + "plane" "(352 -161 100) (255 -161 100) (255 -161 104)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" + "uaxis" "[1 0 0 0] 0.135" + "vaxis" "[0 0 -1 260] 0.135" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254886" + "id" "250795" side { - "id" "91811" - "plane" "(-128 -528 256) (-128 -240 256) (128 -240 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" + "id" "88530" + "plane" "(224 -240 96) (224 -160 96) (352 -160 96)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[0 1 0 0] 0.2" + "vaxis" "[1 0 0 0] 0.2" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91810" - "plane" "(-128 -240 240) (-128 -528 240) (128 -528 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 480] 0.25" + "id" "88529" + "plane" "(224 -160 88) (224 -240 88) (352 -240 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -29201,44 +29266,44 @@ world } side { - "id" "91809" - "plane" "(-128 -528 240) (-128 -240 240) (-128 -240 256)" + "id" "88528" + "plane" "(224 -240 88) (224 -160 88) (224 -160 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91808" - "plane" "(128 -240 240) (128 -528 240) (128 -528 256)" + "id" "88527" + "plane" "(352 -160 88) (352 -240 88) (352 -240 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91807" - "plane" "(-128 -240 240) (128 -240 240) (128 -240 256)" + "id" "88526" + "plane" "(224 -160 88) (352 -160 88) (352 -160 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91806" - "plane" "(128 -528 240) (-128 -528 240) (-128 -528 256)" + "id" "88525" + "plane" "(352 -240 88) (224 -240 88) (224 -240 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -29252,13 +29317,13 @@ world } solid { - "id" "254895" + "id" "250808" side { - "id" "91973" - "plane" "(128 -528 216) (128 -544 216) (-28 -544 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" + "id" "88590" + "plane" "(224 -80 160) (224 -96 160) (128 -96 160)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -29266,19 +29331,19 @@ world } side { - "id" "91972" - "plane" "(128 -528 88) (128 -544 88) (128 -544 216)" + "id" "88589" + "plane" "(224 -96 96) (224 -80 96) (128 -80 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91971" - "plane" "(-28 -544 216) (-28 -544 88) (-28 -528 88)" + "id" "88588" + "plane" "(128 -80 160) (128 -96 160) (128 -96 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" @@ -29288,31 +29353,31 @@ world } side { - "id" "91970" - "plane" "(-28 -528 216) (-28 -528 88) (128 -528 88)" + "id" "88587" + "plane" "(224 -96 160) (224 -80 160) (224 -80 96)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91969" - "plane" "(-28 -528 88) (-28 -544 88) (128 -544 88)" + "id" "88586" + "plane" "(128 -96 160) (224 -96 160) (224 -96 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91968" - "plane" "(128 -544 216) (128 -544 88) (-28 -544 88)" - "material" "TOOLS/TOOLSNODRAW" + "id" "88585" + "plane" "(224 -80 160) (128 -80 160) (128 -80 96)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -29321,21 +29386,20 @@ world } editor { - "color" "155 204 0" - "groupid" "254894" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254896" + "id" "250809" side { - "id" "91979" - "plane" "(-28 -528 216) (-28 -544 216) (-36 -544 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" + "id" "88596" + "plane" "(224 -96 168) (224 -112 168) (128 -112 168)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -29343,21 +29407,21 @@ world } side { - "id" "91978" - "plane" "(-28 -528 88) (-28 -544 88) (-28 -544 216)" + "id" "88595" + "plane" "(224 -112 96) (224 -96 96) (128 -96 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91977" - "plane" "(-36 -544 216) (-36 -544 88) (-36 -528 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -320] 0.25" + "id" "88594" + "plane" "(128 -96 168) (128 -112 168) (128 -112 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -29365,31 +29429,31 @@ world } side { - "id" "91976" - "plane" "(-36 -528 216) (-36 -528 88) (-28 -528 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88593" + "plane" "(224 -112 168) (224 -96 168) (224 -96 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 -1 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91975" - "plane" "(-36 -528 88) (-36 -544 88) (-28 -544 88)" + "id" "88592" + "plane" "(128 -112 168) (224 -112 168) (224 -112 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91974" - "plane" "(-28 -544 216) (-28 -544 88) (-36 -544 88)" - "material" "TOOLS/TOOLSNODRAW" + "id" "88591" + "plane" "(224 -96 168) (128 -96 168) (128 -96 96)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -29398,41 +29462,40 @@ world } editor { - "color" "155 204 0" - "groupid" "254894" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254897" + "id" "250810" side { - "id" "91985" - "plane" "(-36 -528 96) (-36 -544 96) (-100 -544 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 1 0 320] 0.25" + "id" "88602" + "plane" "(224 -112 176) (224 -128 176) (128 -128 176)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91984" - "plane" "(-36 -528 88) (-36 -544 88) (-36 -544 96)" + "id" "88601" + "plane" "(224 -128 96) (224 -112 96) (128 -112 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91983" - "plane" "(-100 -544 96) (-100 -544 88) (-100 -528 88)" + "id" "88600" + "plane" "(128 -112 176) (128 -128 176) (128 -128 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" @@ -29442,32 +29505,32 @@ world } side { - "id" "91982" - "plane" "(-100 -528 96) (-100 -528 88) (-36 -528 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88599" + "plane" "(224 -128 176) (224 -112 176) (224 -112 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 -1 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91981" - "plane" "(-100 -528 88) (-100 -544 88) (-36 -544 88)" + "id" "88598" + "plane" "(128 -128 176) (224 -128 176) (224 -128 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91980" - "plane" "(-36 -544 96) (-36 -544 88) (-100 -544 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -128] 0.25" + "id" "88597" + "plane" "(224 -112 176) (128 -112 176) (128 -112 96)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -29475,21 +29538,20 @@ world } editor { - "color" "155 204 0" - "groupid" "254894" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254898" + "id" "250811" side { - "id" "91991" - "plane" "(-100 -528 216) (-100 -544 216) (-108 -544 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" + "id" "88608" + "plane" "(224 -128 184) (224 -144 184) (128 -144 184)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -29497,53 +29559,53 @@ world } side { - "id" "91990" - "plane" "(-100 -528 88) (-100 -544 88) (-100 -544 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 -320] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88607" + "plane" "(224 -144 96) (224 -128 96) (128 -128 96)" + "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" "91989" - "plane" "(-108 -544 216) (-108 -544 88) (-108 -528 88)" + "id" "88606" + "plane" "(128 -128 184) (128 -144 184) (128 -144 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91988" - "plane" "(-108 -528 216) (-108 -528 88) (-100 -528 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88605" + "plane" "(224 -144 184) (224 -128 184) (224 -128 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 -1 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91987" - "plane" "(-108 -528 88) (-108 -544 88) (-100 -544 88)" + "id" "88604" + "plane" "(128 -144 184) (224 -144 184) (224 -144 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91986" - "plane" "(-100 -544 216) (-100 -544 88) (-108 -544 88)" - "material" "TOOLS/TOOLSNODRAW" + "id" "88603" + "plane" "(224 -128 184) (128 -128 184) (128 -128 96)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -29552,21 +29614,20 @@ world } editor { - "color" "155 204 0" - "groupid" "254894" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254899" + "id" "250812" side { - "id" "91997" - "plane" "(-108 -528 216) (-108 -544 216) (-128 -544 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" + "id" "88614" + "plane" "(224 -144 192) (224 -160 192) (128 -160 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -29574,19 +29635,19 @@ world } side { - "id" "91996" - "plane" "(-108 -528 88) (-108 -544 88) (-108 -544 216)" + "id" "88613" + "plane" "(224 -160 96) (224 -144 96) (128 -144 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91995" - "plane" "(-128 -544 216) (-128 -544 88) (-128 -528 88)" + "id" "88612" + "plane" "(128 -144 192) (128 -160 192) (128 -160 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" @@ -29596,31 +29657,31 @@ world } side { - "id" "91994" - "plane" "(-128 -528 216) (-128 -528 88) (-108 -528 88)" + "id" "88611" + "plane" "(224 -160 192) (224 -144 192) (224 -144 96)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91993" - "plane" "(-128 -528 88) (-128 -544 88) (-108 -544 88)" + "id" "88610" + "plane" "(128 -160 192) (224 -160 192) (224 -160 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91992" - "plane" "(-108 -544 216) (-108 -544 88) (-128 -544 88)" - "material" "TOOLS/TOOLSNODRAW" + "id" "88609" + "plane" "(224 -144 192) (128 -144 192) (128 -144 96)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -29629,21 +29690,20 @@ world } editor { - "color" "155 204 0" - "groupid" "254894" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254904" + "id" "250838" side { - "id" "92003" - "plane" "(-36 -528 216) (-36 -544 216) (-100 -544 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" + "id" "88626" + "plane" "(224 -64 152) (224 -80 152) (128 -80 152)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -29651,19 +29711,19 @@ world } side { - "id" "92002" - "plane" "(-36 -528 208) (-36 -544 208) (-36 -544 216)" + "id" "88625" + "plane" "(224 -80 96) (224 -64 96) (128 -64 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92001" - "plane" "(-100 -544 216) (-100 -544 208) (-100 -528 208)" + "id" "88624" + "plane" "(128 -64 152) (128 -80 152) (128 -80 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -29673,31 +29733,31 @@ world } side { - "id" "92000" - "plane" "(-100 -528 216) (-100 -528 208) (-36 -528 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88623" + "plane" "(224 -80 152) (224 -64 152) (224 -64 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 -1 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "91999" - "plane" "(-100 -528 208) (-100 -544 208) (-36 -544 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 1 0 320] 0.25" + "id" "88622" + "plane" "(128 -80 152) (224 -80 152) (224 -80 96)" + "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" "91998" - "plane" "(-36 -544 216) (-36 -544 208) (-100 -544 208)" - "material" "TOOLS/TOOLSNODRAW" + "id" "88621" + "plane" "(224 -64 152) (128 -64 152) (128 -64 96)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -29706,282 +29766,281 @@ world } editor { - "color" "155 204 0" - "groupid" "254894" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "254938" + "id" "250857" side { - "id" "92015" - "plane" "(-128 -528 240) (128 -528 240) (128 -544 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "88650" + "plane" "(224 -160 200) (224 -176 200) (128 -176 200)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92014" - "plane" "(128 -528 216) (128 -528 240) (-128 -528 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 -256] 0.125" - "vaxis" "[0 0 -1 192] 0.125" + "id" "88649" + "plane" "(224 -176 96) (224 -160 96) (128 -160 96)" + "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" "92013" - "plane" "(-128 -544 216) (-128 -544 240) (128 -544 240)" + "id" "88648" + "plane" "(128 -160 200) (128 -176 200) (128 -176 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92012" - "plane" "(128 -544 216) (128 -544 240) (128 -528 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88647" + "plane" "(224 -176 200) (224 -160 200) (224 -160 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 -1 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92011" - "plane" "(-128 -528 216) (-128 -528 240) (-128 -544 240)" + "id" "88646" + "plane" "(128 -176 200) (224 -176 200) (224 -176 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92010" - "plane" "(128 -528 216) (-128 -528 216) (-128 -544 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "88645" + "plane" "(224 -160 200) (128 -160 200) (128 -160 96)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255746" + "id" "250859" side { - "id" "92347" - "plane" "(-144 -240 320) (-144 -224 320) (-128 -224 320)" - "material" "TOOLS/TOOLSNODRAW" + "id" "88662" + "plane" "(224 -176 208) (224 -192 208) (128 -192 208)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92346" - "plane" "(-144 -224 4.85507e-06) (-144 -224 320) (-144 -240 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88661" + "plane" "(224 -192 96) (224 -176 96) (128 -176 96)" + "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" "92345" - "plane" "(-128 -240 4.85507e-06) (-128 -240 320) (-128 -224 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88660" + "plane" "(128 -176 208) (128 -192 208) (128 -192 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92344" - "plane" "(-128 -224 4.85507e-06) (-128 -224 320) (-144 -224 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88659" + "plane" "(224 -192 208) (224 -176 208) (224 -176 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 -1 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92343" - "plane" "(-144 -240 4.85507e-06) (-144 -240 320) (-128 -240 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88658" + "plane" "(128 -192 208) (224 -192 208) (224 -192 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92342" - "plane" "(-144 -224 4.85507e-06) (-144 -240 4.85507e-06) (-128 -240 4.85507e-06)" - "material" "TOOLS/TOOLSNODRAW" + "id" "88657" + "plane" "(224 -176 208) (128 -176 208) (128 -176 96)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255747" + "id" "250921" side { - "id" "92359" - "plane" "(128 -224 64) (128 -236 64) (-128 -236 64)" + "id" "88776" + "plane" "(368 32 320) (368 -240 320) (352 -240 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92358" - "plane" "(-128 -224 0) (-128 -224 64) (-128 -236 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 -64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88775" + "plane" "(368 -240 96) (368 32 96) (352 32 96)" + "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" "92357" - "plane" "(128 -236 0) (128 -236 64) (128 -224 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88774" + "plane" "(352 32 320) (352 -240 320) (352 -240 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92356" - "plane" "(-128 -236 0) (-128 -236 64) (128 -236 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88773" + "plane" "(368 -240 320) (368 32 320) (368 32 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92355" - "plane" "(128 -224 0) (128 -224 64) (-128 -224 64)" + "id" "88772" + "plane" "(352 -240 320) (368 -240 320) (368 -240 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92354" - "plane" "(128 -236 0) (128 -224 0) (-128 -224 0)" + "id" "88771" + "plane" "(368 32 320) (352 32 320) (352 32 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255749" + "id" "250923" side { - "id" "92377" - "plane" "(-128 -224 88) (128 -224 88) (128 -240 88)" + "id" "88788" + "plane" "(352 48 320) (352 32 320) (128 32 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92376" - "plane" "(-128 -240 68) (-128 -240 88) (128 -240 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 -256] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88787" + "plane" "(352 32 144) (352 48 144) (128 48 144)" + "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" "92375" - "plane" "(128 -224 68) (128 -224 88) (-128 -224 88)" + "id" "88786" + "plane" "(128 48 320) (128 32 320) (128 32 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92374" - "plane" "(128 -240 68) (128 -240 88) (128 -224 88)" + "id" "88785" + "plane" "(352 32 320) (352 48 320) (352 48 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -29989,138 +30048,138 @@ world } side { - "id" "92373" - "plane" "(-128 -224 68) (-128 -224 88) (-128 -240 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88784" + "plane" "(128 32 320) (352 32 320) (352 32 144)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92372" - "plane" "(128 -224 68) (-128 -224 68) (-128 -240 68)" + "id" "88783" + "plane" "(352 48 320) (128 48 320) (128 48 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255750" + "id" "250926" side { - "id" "92383" - "plane" "(-128 -240 68) (-128 -224 68) (128 -224 68)" + "id" "88800" + "plane" "(112 -224 320) (112 32 320) (128 32 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92382" - "plane" "(128 -236 64) (-128 -236 64) (-128 -240 68)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 -256] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88799" + "plane" "(112 32 144) (112 -224 144) (128 -224 144)" + "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" "92381" - "plane" "(-128 -224 64) (128 -224 64) (128 -224 68)" + "id" "88798" + "plane" "(112 -224 144) (112 32 144) (112 32 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.125" - "vaxis" "[0 0 -1 -32] 0.125" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92380" - "plane" "(128 -224 64) (128 -236 64) (128 -240 68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "88797" + "plane" "(128 32 144) (128 -224 144) (128 -224 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92379" - "plane" "(-128 -236 64) (-128 -224 64) (-128 -224 68)" + "id" "88796" + "plane" "(128 -224 144) (112 -224 144) (112 -224 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 -32] 0.125" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92378" - "plane" "(128 -236 64) (128 -224 64) (-128 -224 64)" + "id" "88795" + "plane" "(112 32 144) (128 32 144) (128 32 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255754" + "id" "250968" side { - "id" "92425" - "plane" "(-28 -240 216) (-28 -224 216) (128 -224 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" + "id" "88902" + "plane" "(128 -64 144) (128 32 144) (352 32 144)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[0 1 0 0] 0.2" + "vaxis" "[1 0 0 0] 0.2" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92424" - "plane" "(128 -240 216) (128 -224 216) (128 -224 88)" + "id" "88901" + "plane" "(128 32 96) (128 -64 96) (352 -64 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92423" - "plane" "(-28 -240 216) (-28 -240 88) (-28 -224 88)" + "id" "88900" + "plane" "(128 32 96) (128 32 144) (128 -64 144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" @@ -30130,32 +30189,32 @@ world } side { - "id" "92422" - "plane" "(128 -240 216) (128 -240 88) (-28 -240 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88899" + "plane" "(352 32 96) (352 32 144) (128 32 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92421" - "plane" "(128 -240 88) (128 -224 88) (-28 -224 88)" + "id" "88898" + "plane" "(128 -64 96) (128 -64 144) (352 -64 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92420" - "plane" "(-28 -224 216) (-28 -224 88) (128 -224 88)" + "id" "88897" + "plane" "(352 -64 96) (352 -64 144) (352 32 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -30163,20 +30222,20 @@ world } editor { - "color" "0 203 112" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255755" + "id" "251037" side { - "id" "92431" - "plane" "(-36 -240 216) (-36 -224 216) (-28 -224 216)" + "id" "88993" + "plane" "(160 -640 256) (160 -352 256) (224 -352 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -30184,21 +30243,21 @@ world } side { - "id" "92430" - "plane" "(-28 -240 216) (-28 -224 216) (-28 -224 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "88992" + "plane" "(160 -352 240) (160 -640 240) (224 -640 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 -96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } side { - "id" "92429" - "plane" "(-36 -240 216) (-36 -240 88) (-36 -224 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 192] 0.25" + "id" "88991" + "plane" "(160 -640 240) (160 -352 240) (160 -352 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -30206,30 +30265,30 @@ world } side { - "id" "92428" - "plane" "(-28 -240 216) (-28 -240 88) (-36 -240 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88990" + "plane" "(224 -352 240) (224 -640 240) (224 -640 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92427" - "plane" "(-28 -240 88) (-28 -224 88) (-36 -224 88)" + "id" "88989" + "plane" "(160 -352 240) (224 -352 240) (224 -352 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92426" - "plane" "(-36 -224 216) (-36 -224 88) (-28 -224 88)" + "id" "88988" + "plane" "(224 -640 240) (160 -640 240) (160 -640 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -30239,53 +30298,53 @@ world } editor { - "color" "0 185 166" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255756" + "id" "251051" side { - "id" "92437" - "plane" "(-100 -240 96) (-100 -224 96) (-36 -224 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 -1 0 -192] 0.25" + "id" "89017" + "plane" "(128 -480 256) (128 -288 256) (160 -288 256)" + "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" "92436" - "plane" "(-36 -240 96) (-36 -224 96) (-36 -224 88)" + "id" "89016" + "plane" "(128 -288 240) (128 -480 240) (160 -480 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92435" - "plane" "(-100 -240 96) (-100 -240 88) (-100 -224 88)" + "id" "89015" + "plane" "(128 -480 240) (128 -288 240) (128 -288 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92434" - "plane" "(-36 -240 96) (-36 -240 88) (-100 -240 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" + "id" "89014" + "plane" "(160 -288 240) (160 -480 240) (160 -480 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -30293,21 +30352,21 @@ world } side { - "id" "92433" - "plane" "(-36 -240 88) (-36 -224 88) (-100 -224 88)" + "id" "89013" + "plane" "(128 -288 240) (160 -288 240) (160 -288 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92432" - "plane" "(-100 -224 96) (-100 -224 88) (-36 -224 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -128] 0.25" + "id" "89012" + "plane" "(160 -480 240) (128 -480 240) (128 -480 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -30315,73 +30374,73 @@ world } editor { - "color" "0 199 176" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255757" + "id" "251064" side { - "id" "92443" - "plane" "(-108 -240 216) (-108 -224 216) (-100 -224 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" + "id" "89023" + "plane" "(224 -160 96) (224 -64 96) (256 -64 96)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[0 1 0 0] 0.2" + "vaxis" "[1 0 0 0] 0.2" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92442" - "plane" "(-100 -240 216) (-100 -224 216) (-100 -224 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 192] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "89022" + "plane" "(224 -64 88) (224 -160 88) (256 -160 88)" + "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" "92441" - "plane" "(-108 -240 216) (-108 -240 88) (-108 -224 88)" + "id" "89021" + "plane" "(224 -160 88) (224 -64 88) (224 -64 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92440" - "plane" "(-100 -240 216) (-100 -240 88) (-108 -240 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "89020" + "plane" "(256 -64 88) (256 -160 88) (256 -160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92439" - "plane" "(-100 -240 88) (-100 -224 88) (-108 -224 88)" + "id" "89019" + "plane" "(256 -160 88) (224 -160 88) (224 -160 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92438" - "plane" "(-108 -224 216) (-108 -224 88) (-100 -224 88)" + "id" "89018" + "plane" "(224 -64 88) (256 -64 88) (256 -64 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -30391,42 +30450,42 @@ world } editor { - "color" "0 245 130" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255758" + "id" "251239" side { - "id" "92449" - "plane" "(-128 -240 216) (-128 -224 216) (-108 -224 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "89239" + "plane" "(224 -192 216) (224 -208 216) (128 -208 216)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92448" - "plane" "(-108 -240 216) (-108 -224 216) (-108 -224 88)" + "id" "89238" + "plane" "(224 -208 96) (224 -192 96) (128 -192 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92447" - "plane" "(-128 -240 216) (-128 -240 88) (-128 -224 88)" + "id" "89237" + "plane" "(128 -192 216) (128 -208 216) (128 -208 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -30434,31 +30493,31 @@ world } side { - "id" "92446" - "plane" "(-108 -240 216) (-108 -240 88) (-128 -240 88)" + "id" "89236" + "plane" "(224 -208 216) (224 -192 216) (224 -192 96)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92445" - "plane" "(-108 -240 88) (-108 -224 88) (-128 -224 88)" + "id" "89235" + "plane" "(128 -208 216) (224 -208 216) (224 -208 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92444" - "plane" "(-128 -224 216) (-128 -224 88) (-108 -224 88)" - "material" "TOOLS/TOOLSNODRAW" + "id" "89234" + "plane" "(224 -192 216) (128 -192 216) (128 -192 96)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -30467,74 +30526,74 @@ world } editor { - "color" "0 255 196" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255763" + "id" "251241" side { - "id" "92455" - "plane" "(-100 -240 216) (-100 -224 216) (-36 -224 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "89251" + "plane" "(224 -208 224) (224 -224 224) (128 -224 224)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92454" - "plane" "(-36 -240 216) (-36 -224 216) (-36 -224 208)" + "id" "89250" + "plane" "(224 -224 96) (224 -208 96) (128 -208 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92453" - "plane" "(-100 -240 216) (-100 -240 208) (-100 -224 208)" + "id" "89249" + "plane" "(128 -208 224) (128 -224 224) (128 -224 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92452" - "plane" "(-36 -240 216) (-36 -240 208) (-100 -240 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "89248" + "plane" "(224 -224 224) (224 -208 224) (224 -208 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 -1 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92451" - "plane" "(-36 -240 208) (-36 -224 208) (-100 -224 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 480] 0.25" - "vaxis" "[0 -1 0 -192] 0.25" + "id" "89247" + "plane" "(128 -224 224) (224 -224 224) (224 -224 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92450" - "plane" "(-100 -224 216) (-100 -224 208) (-36 -224 208)" - "material" "TOOLS/TOOLSNODRAW" + "id" "89246" + "plane" "(224 -208 224) (128 -208 224) (128 -208 96)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -30543,107 +30602,107 @@ world } editor { - "color" "0 203 132" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255851" + "id" "251243" side { - "id" "92503" - "plane" "(-136 -224 64) (-136 -104 64) (-128 -104 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "89263" + "plane" "(224 -224 232) (224 -240 232) (128 -240 232)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92502" - "plane" "(-136 -104 0) (-136 -104 64) (-136 -224 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 1 0 -304] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "89262" + "plane" "(224 -240 96) (224 -224 96) (128 -224 96)" + "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" "92501" - "plane" "(-128 -224 0) (-128 -224 64) (-128 -104 64)" + "id" "89261" + "plane" "(128 -224 232) (128 -240 232) (128 -240 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92500" - "plane" "(-128 -104 0) (-128 -104 64) (-136 -104 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "89260" + "plane" "(224 -240 232) (224 -224 232) (224 -224 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 -1 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92499" - "plane" "(-136 -224 0) (-136 -224 64) (-128 -224 64)" + "id" "89259" + "plane" "(128 -240 232) (224 -240 232) (224 -240 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92498" - "plane" "(-136 -104 0) (-136 -224 0) (-128 -224 0)" - "material" "TOOLS/TOOLSNODRAW" + "id" "89258" + "plane" "(224 -224 232) (128 -224 232) (128 -224 96)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255852" + "id" "245130" side { - "id" "92521" - "plane" "(-144 -224 88) (-144 -104 88) (-128 -104 88)" + "id" "87617" + "plane" "(502 -908 212) (464 -908 212) (464 -724 212)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 56] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92520" - "plane" "(-144 -104 68) (-144 -104 88) (-144 -224 88)" + "id" "87616" + "plane" "(464 -908 212) (502 -908 212) (502 -908 208)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" + "uaxis" "[-1 0 0 0] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -30651,10 +30710,10 @@ world } side { - "id" "92519" - "plane" "(-128 -224 68) (-128 -224 88) (-128 -104 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.125" + "id" "87615" + "plane" "(464 -724 208) (502 -724 208) (502 -724 212)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -30662,140 +30721,140 @@ world } side { - "id" "92518" - "plane" "(-128 -104 68) (-128 -104 88) (-144 -104 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87614" + "plane" "(502 -908 208) (502 -908 212) (502 -724 212)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92517" - "plane" "(-144 -224 68) (-144 -224 88) (-128 -224 88)" + "id" "87613" + "plane" "(502 -724 208) (464 -724 208) (464 -908 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92516" - "plane" "(-144 -104 68) (-144 -224 68) (-128 -224 68)" + "id" "87612" + "plane" "(464 -724 208) (464 -724 212) (464 -908 212)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 103 232" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255853" + "id" "245213" side { - "id" "92527" - "plane" "(-144 -128 68) (-128 -128 68) (-128 -224 68)" + "id" "87629" + "plane" "(464 -868 192) (448 -868 192) (448 -764 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92526" - "plane" "(-144 -128 68) (-144 -224 68) (-140 -224 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "87628" + "plane" "(448 -868 184) (448 -868 192) (464 -868 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92525" - "plane" "(-128 -224 68) (-128 -128 68) (-128 -128 64)" + "id" "87627" + "plane" "(464 -764 184) (464 -764 192) (448 -764 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.125" - "vaxis" "[0 0 -1 -32] 0.125" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92524" - "plane" "(-128 -128 68) (-144 -128 68) (-140 -128 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "87626" + "plane" "(448 -764 184) (448 -764 192) (448 -868 192)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92523" - "plane" "(-144 -224 68) (-128 -224 68) (-128 -224 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 -32] 0.125" + "id" "87625" + "plane" "(464 -868 184) (464 -868 192) (464 -764 192)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92522" - "plane" "(-140 -224 64) (-128 -224 64) (-128 -128 64)" + "id" "87624" + "plane" "(464 -764 184) (448 -764 184) (448 -868 184)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[1 0 0 128] 0.125" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -224] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255883" + "id" "245218" side { - "id" "92605" - "plane" "(-128 -124 216) (-144 -124 216) (-144 -104 216)" + "id" "87641" + "plane" "(464 -876 192) (448 -876 192) (448 -868 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92604" - "plane" "(-128 -104 216) (-144 -104 216) (-144 -104 88)" + "id" "87640" + "plane" "(448 -876 64) (448 -876 192) (464 -876 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -30803,175 +30862,173 @@ world } side { - "id" "92603" - "plane" "(-144 -124 88) (-144 -124 216) (-128 -124 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87639" + "plane" "(464 -868 64) (464 -868 192) (448 -868 192)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92602" - "plane" "(-144 -104 88) (-144 -104 216) (-144 -124 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 96] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87638" + "plane" "(448 -868 64) (448 -868 192) (448 -876 192)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92601" - "plane" "(-128 -104 88) (-144 -104 88) (-144 -124 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "87637" + "plane" "(464 -876 64) (464 -876 192) (464 -868 192)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92600" - "plane" "(-128 -124 88) (-128 -124 216) (-128 -104 216)" + "id" "87636" + "plane" "(464 -868 64) (448 -868 64) (448 -876 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "155 204 0" - "groupid" "255882" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255884" + "id" "245220" side { - "id" "92611" - "plane" "(-128 -132 216) (-144 -132 216) (-144 -124 216)" + "id" "87653" + "plane" "(464 -764 192) (448 -764 192) (448 -756 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92610" - "plane" "(-128 -124 216) (-144 -124 216) (-144 -124 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87652" + "plane" "(448 -764 64) (448 -764 192) (464 -764 192)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92609" - "plane" "(-144 -132 88) (-144 -132 216) (-128 -132 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -192] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87651" + "plane" "(464 -756 64) (464 -756 192) (448 -756 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92608" - "plane" "(-144 -124 88) (-144 -124 216) (-144 -132 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 96] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87650" + "plane" "(448 -756 64) (448 -756 192) (448 -764 192)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92607" - "plane" "(-128 -124 88) (-144 -124 88) (-144 -132 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "87649" + "plane" "(464 -764 64) (464 -764 192) (464 -756 192)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92606" - "plane" "(-128 -132 88) (-128 -132 216) (-128 -124 216)" + "id" "87648" + "plane" "(464 -756 64) (448 -756 64) (448 -764 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "155 204 0" - "groupid" "255882" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255885" + "id" "245260" side { - "id" "92617" - "plane" "(-128 -196 96) (-144 -196 96) (-144 -132 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 96] 0.25" - "vaxis" "[-1 0 0 192] 0.25" + "id" "87677" + "plane" "(464 -928 240) (456 -928 240) (456 -704 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92616" - "plane" "(-128 -132 96) (-144 -132 96) (-144 -132 88)" + "id" "87676" + "plane" "(456 -928 216) (456 -928 240) (464 -928 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92615" - "plane" "(-144 -196 88) (-144 -196 96) (-128 -196 96)" + "id" "87675" + "plane" "(464 -704 216) (464 -704 240) (456 -704 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92614" - "plane" "(-144 -132 88) (-144 -132 96) (-144 -196 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 96] 0.25" + "id" "87674" + "plane" "(456 -704 216) (456 -704 240) (456 -928 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -30979,65 +31036,64 @@ world } side { - "id" "92613" - "plane" "(-128 -132 88) (-144 -132 88) (-144 -196 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "87673" + "plane" "(464 -928 216) (464 -928 240) (464 -704 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92612" - "plane" "(-128 -196 88) (-128 -196 96) (-128 -132 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87672" + "plane" "(464 -704 216) (456 -704 216) (456 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "155 204 0" - "groupid" "255882" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255886" + "id" "245267" side { - "id" "92623" - "plane" "(-128 -204 216) (-144 -204 216) (-144 -196 216)" + "id" "87761" + "plane" "(464 -928 336) (448 -928 336) (448 -704 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92622" - "plane" "(-128 -196 216) (-144 -196 216) (-144 -196 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -192] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87760" + "plane" "(448 -928 332) (448 -928 336) (464 -928 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92621" - "plane" "(-144 -204 88) (-144 -204 216) (-128 -204 216)" + "id" "87759" + "plane" "(464 -704 332) (464 -704 336) (448 -704 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31045,393 +31101,390 @@ world } side { - "id" "92620" - "plane" "(-144 -196 88) (-144 -196 216) (-144 -204 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 96] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87758" + "plane" "(448 -704 332) (448 -704 336) (448 -928 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92619" - "plane" "(-128 -196 88) (-144 -196 88) (-144 -204 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "87757" + "plane" "(464 -928 332) (464 -928 336) (464 -704 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 358] 0.125" + "vaxis" "[0 0 -1 96] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92618" - "plane" "(-128 -204 88) (-128 -204 216) (-128 -196 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87756" + "plane" "(464 -704 332) (448 -704 332) (448 -928 332)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 358] 0.125" + "vaxis" "[-1 0 0 128] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "155 204 0" - "groupid" "255882" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255887" + "id" "245271" side { - "id" "92629" - "plane" "(-128 -224 216) (-144 -224 216) (-144 -204 216)" + "id" "87701" + "plane" "(463 -924 332) (456 -924 332) (456 -708 332)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92628" - "plane" "(-128 -204 216) (-144 -204 216) (-144 -204 88)" + "id" "87700" + "plane" "(456 -924 244) (456 -924 332) (463 -924 332)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92627" - "plane" "(-144 -224 88) (-144 -224 216) (-128 -224 216)" + "id" "87699" + "plane" "(463 -708 244) (463 -708 332) (456 -708 332)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92626" - "plane" "(-144 -204 88) (-144 -204 216) (-144 -224 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 96] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87698" + "plane" "(456 -708 244) (456 -708 332) (456 -924 332)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92625" - "plane" "(-128 -204 88) (-144 -204 88) (-144 -224 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "87697" + "plane" "(463 -924 244) (463 -924 332) (463 -708 332)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 1 0 320] 0.25" + "vaxis" "[0 0 -1 208] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92624" - "plane" "(-128 -224 88) (-128 -224 216) (-128 -204 216)" + "id" "87696" + "plane" "(463 -708 244) (456 -708 244) (456 -924 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "155 204 0" - "groupid" "255882" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255892" + "id" "248233" side { - "id" "92635" - "plane" "(-128 -196 216) (-144 -196 216) (-144 -132 216)" + "id" "87779" + "plane" "(464 -928 332) (448 -928 332) (448 -924 332)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92634" - "plane" "(-128 -132 216) (-144 -132 216) (-144 -132 208)" + "id" "87778" + "plane" "(448 -928 244) (448 -928 332) (464 -928 332)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92633" - "plane" "(-144 -196 208) (-144 -196 216) (-128 -196 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87777" + "plane" "(464 -924 244) (464 -924 332) (448 -924 332)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 0 1 358] 0.125" + "vaxis" "[-1 0 0 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92632" - "plane" "(-144 -132 208) (-144 -132 216) (-144 -196 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 96] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87776" + "plane" "(448 -924 244) (448 -924 332) (448 -928 332)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92631" - "plane" "(-128 -132 208) (-144 -132 208) (-144 -196 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 96] 0.25" - "vaxis" "[-1 0 0 192] 0.25" - "rotation" "0" + "id" "87775" + "plane" "(464 -928 244) (464 -928 332) (464 -924 332)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 0 1 358] 0.125" + "vaxis" "[0 1 0 96] 0.125" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92630" - "plane" "(-128 -196 208) (-128 -196 216) (-128 -132 216)" + "id" "87774" + "plane" "(464 -924 244) (448 -924 244) (448 -928 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "155 204 0" - "groupid" "255882" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "255898" + "id" "248235" side { - "id" "92647" - "plane" "(-144 -104 336) (-144 -88 336) (-128 -88 336)" + "id" "87791" + "plane" "(464 -708 332) (448 -708 332) (448 -704 332)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92646" - "plane" "(-144 -88 0) (-144 -88 336) (-144 -104 336)" + "id" "87790" + "plane" "(448 -708 244) (448 -708 332) (464 -708 332)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 -64] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "uaxis" "[0 0 -1 358] 0.125" + "vaxis" "[-1 0 0 256] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92645" - "plane" "(-128 -104 0) (-128 -104 336) (-128 -88 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 -64] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "87789" + "plane" "(464 -704 244) (464 -704 332) (448 -704 332)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92644" - "plane" "(-128 -88 0) (-128 -88 336) (-144 -88 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "87788" + "plane" "(448 -704 244) (448 -704 332) (448 -708 332)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92643" - "plane" "(-144 -104 0) (-144 -104 336) (-128 -104 336)" + "id" "87787" + "plane" "(464 -708 244) (464 -708 332) (464 -704 332)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" + "uaxis" "[0 0 -1 358] 0.125" + "vaxis" "[0 -1 0 96] 0.125" + "rotation" "-90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "92642" - "plane" "(-144 -88 0) (-144 -104 0) (-128 -104 0)" + "id" "87786" + "plane" "(464 -704 244) (448 -704 244) (448 -708 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250740" + "id" "248238" side { - "id" "88446" - "plane" "(192 -928 256) (192 -640 256) (448 -640 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "87803" + "plane" "(464 -928 244) (456 -928 244) (456 -704 244)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 358] 0.125" + "vaxis" "[1 0 0 -448] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88445" - "plane" "(192 -640 240) (192 -928 240) (448 -928 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -96] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "87802" + "plane" "(456 -928 240) (456 -928 244) (464 -928 244)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88444" - "plane" "(192 -928 240) (192 -640 240) (192 -640 256)" + "id" "87801" + "plane" "(464 -704 240) (464 -704 244) (456 -704 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88443" - "plane" "(448 -640 240) (448 -928 240) (448 -928 256)" + "id" "87800" + "plane" "(456 -704 240) (456 -704 244) (456 -928 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88442" - "plane" "(192 -640 240) (448 -640 240) (448 -640 256)" + "id" "87799" + "plane" "(464 -928 240) (464 -928 244) (464 -704 244)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "uaxis" "[0 1 0 358] 0.125" + "vaxis" "[0 0 -1 96] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88441" - "plane" "(448 -928 240) (192 -928 240) (192 -928 256)" + "id" "87798" + "plane" "(464 -704 240) (456 -704 240) (456 -928 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250756" + "id" "248239" side { - "id" "88458" - "plane" "(255 -161 104) (255 -144 104) (352 -144 104)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[1 0 0 0] 0.2" - "vaxis" "[0 -1 0 -166] 0.2" + "id" "87815" + "plane" "(456 -704 368) (456 -668 368) (464 -668 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88457" - "plane" "(255 -144 100) (255 -161 100) (352 -161 100)" + "id" "87814" + "plane" "(456 -668 64) (456 -668 368) (456 -704 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88456" - "plane" "(255 -161 100) (255 -144 100) (255 -144 104)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" - "uaxis" "[0 -1 0 199.111] 0.135" - "vaxis" "[0 0 -1 260] 0.135" + "id" "87813" + "plane" "(464 -704 64) (464 -704 368) (464 -668 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88455" - "plane" "(352 -144 100) (352 -161 100) (352 -161 104)" + "id" "87812" + "plane" "(464 -668 64) (464 -668 368) (456 -668 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31439,10 +31492,10 @@ world } side { - "id" "88454" - "plane" "(255 -144 100) (352 -144 100) (352 -144 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "87811" + "plane" "(456 -704 64) (456 -704 368) (464 -704 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 -96] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31450,205 +31503,205 @@ world } side { - "id" "88453" - "plane" "(352 -161 100) (255 -161 100) (255 -161 104)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" - "uaxis" "[1 0 0 0] 0.135" - "vaxis" "[0 0 -1 260] 0.135" + "id" "87810" + "plane" "(456 -668 64) (456 -704 64) (464 -704 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250795" + "id" "248263" side { - "id" "88530" - "plane" "(224 -240 96) (224 -160 96) (352 -160 96)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[0 1 0 0] 0.2" - "vaxis" "[1 0 0 0] 0.2" - "rotation" "90" + "id" "87893" + "plane" "(460 -728 368) (432 -728 368) (432 -720 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88529" - "plane" "(224 -160 88) (224 -240 88) (352 -240 88)" + "id" "87892" + "plane" "(432 -728 336) (432 -728 368) (460 -728 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88528" - "plane" "(224 -240 88) (224 -160 88) (224 -160 96)" + "id" "87891" + "plane" "(460 -720 336) (460 -720 368) (432 -720 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88527" - "plane" "(352 -160 88) (352 -240 88) (352 -240 96)" + "id" "87890" + "plane" "(432 -720 336) (432 -720 368) (432 -728 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88526" - "plane" "(224 -160 88) (352 -160 88) (352 -160 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "87889" + "plane" "(460 -728 336) (460 -728 368) (460 -720 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88525" - "plane" "(352 -240 88) (224 -240 88) (224 -240 96)" + "id" "87888" + "plane" "(460 -720 336) (432 -720 336) (432 -728 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250808" + "id" "248264" side { - "id" "88590" - "plane" "(224 -80 160) (224 -96 160) (128 -96 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "87899" + "plane" "(464 -736 368) (432 -736 368) (432 -728 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88589" - "plane" "(224 -96 96) (224 -80 96) (128 -80 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "87898" + "plane" "(432 -736 336) (432 -736 368) (464 -736 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88588" - "plane" "(128 -80 160) (128 -96 160) (128 -96 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87897" + "plane" "(464 -728 336) (464 -728 368) (432 -728 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88587" - "plane" "(224 -96 160) (224 -80 160) (224 -80 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "87896" + "plane" "(432 -728 336) (432 -728 368) (432 -736 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88586" - "plane" "(128 -96 160) (224 -96 160) (224 -96 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87895" + "plane" "(464 -736 336) (464 -736 368) (464 -728 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88585" - "plane" "(224 -80 160) (128 -80 160) (128 -80 96)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87894" + "plane" "(464 -728 336) (432 -728 336) (432 -736 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250809" + "id" "248265" side { - "id" "88596" - "plane" "(224 -96 168) (224 -112 168) (128 -112 168)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "87905" + "plane" "(460 -744 368) (432 -744 368) (432 -736 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88595" - "plane" "(224 -112 96) (224 -96 96) (128 -96 96)" + "id" "87904" + "plane" "(432 -744 336) (432 -744 368) (460 -744 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88594" - "plane" "(128 -96 168) (128 -112 168) (128 -112 96)" + "id" "87903" + "plane" "(460 -736 336) (460 -736 368) (432 -736 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31656,151 +31709,151 @@ world } side { - "id" "88593" - "plane" "(224 -112 168) (224 -96 168) (224 -96 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "87902" + "plane" "(432 -736 336) (432 -736 368) (432 -744 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88592" - "plane" "(128 -112 168) (224 -112 168) (224 -112 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87901" + "plane" "(460 -744 336) (460 -744 368) (460 -736 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88591" - "plane" "(224 -96 168) (128 -96 168) (128 -96 96)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "87900" + "plane" "(460 -736 336) (432 -736 336) (432 -744 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250810" + "id" "248266" side { - "id" "88602" - "plane" "(224 -112 176) (224 -128 176) (128 -128 176)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "87911" + "plane" "(464 -752 368) (432 -752 368) (432 -744 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88601" - "plane" "(224 -128 96) (224 -112 96) (128 -112 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "87910" + "plane" "(432 -752 336) (432 -752 368) (464 -752 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88600" - "plane" "(128 -112 176) (128 -128 176) (128 -128 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87909" + "plane" "(464 -744 336) (464 -744 368) (432 -744 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88599" - "plane" "(224 -128 176) (224 -112 176) (224 -112 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "87908" + "plane" "(432 -744 336) (432 -744 368) (432 -752 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88598" - "plane" "(128 -128 176) (224 -128 176) (224 -128 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87907" + "plane" "(464 -752 336) (464 -752 368) (464 -744 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88597" - "plane" "(224 -112 176) (128 -112 176) (128 -112 96)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87906" + "plane" "(464 -744 336) (432 -744 336) (432 -752 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250811" + "id" "248267" side { - "id" "88608" - "plane" "(224 -128 184) (224 -144 184) (128 -144 184)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "87917" + "plane" "(460 -760 368) (432 -760 368) (432 -752 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88607" - "plane" "(224 -144 96) (224 -128 96) (128 -128 96)" + "id" "87916" + "plane" "(432 -760 336) (432 -760 368) (460 -760 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88606" - "plane" "(128 -128 184) (128 -144 184) (128 -144 96)" + "id" "87915" + "plane" "(460 -752 336) (460 -752 368) (432 -752 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31808,151 +31861,151 @@ world } side { - "id" "88605" - "plane" "(224 -144 184) (224 -128 184) (224 -128 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "87914" + "plane" "(432 -752 336) (432 -752 368) (432 -760 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88604" - "plane" "(128 -144 184) (224 -144 184) (224 -144 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87913" + "plane" "(460 -760 336) (460 -760 368) (460 -752 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88603" - "plane" "(224 -128 184) (128 -128 184) (128 -128 96)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87912" + "plane" "(460 -752 336) (432 -752 336) (432 -760 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250812" + "id" "248268" side { - "id" "88614" - "plane" "(224 -144 192) (224 -160 192) (128 -160 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "87923" + "plane" "(464 -768 368) (432 -768 368) (432 -760 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88613" - "plane" "(224 -160 96) (224 -144 96) (128 -144 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "87922" + "plane" "(432 -768 336) (432 -768 368) (464 -768 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88612" - "plane" "(128 -144 192) (128 -160 192) (128 -160 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87921" + "plane" "(464 -760 336) (464 -760 368) (432 -760 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88611" - "plane" "(224 -160 192) (224 -144 192) (224 -144 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "87920" + "plane" "(432 -760 336) (432 -760 368) (432 -768 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88610" - "plane" "(128 -160 192) (224 -160 192) (224 -160 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87919" + "plane" "(464 -768 336) (464 -768 368) (464 -760 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88609" - "plane" "(224 -144 192) (128 -144 192) (128 -144 96)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87918" + "plane" "(464 -760 336) (432 -760 336) (432 -768 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250838" + "id" "248269" side { - "id" "88626" - "plane" "(224 -64 152) (224 -80 152) (128 -80 152)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "87929" + "plane" "(460 -776 368) (432 -776 368) (432 -768 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88625" - "plane" "(224 -80 96) (224 -64 96) (128 -64 96)" + "id" "87928" + "plane" "(432 -776 336) (432 -776 368) (460 -776 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88624" - "plane" "(128 -64 152) (128 -80 152) (128 -80 96)" + "id" "87927" + "plane" "(460 -768 336) (460 -768 368) (432 -768 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31960,227 +32013,227 @@ world } side { - "id" "88623" - "plane" "(224 -80 152) (224 -64 152) (224 -64 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "87926" + "plane" "(432 -768 336) (432 -768 368) (432 -776 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88622" - "plane" "(128 -80 152) (224 -80 152) (224 -80 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87925" + "plane" "(460 -776 336) (460 -776 368) (460 -768 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88621" - "plane" "(224 -64 152) (128 -64 152) (128 -64 96)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87924" + "plane" "(460 -768 336) (432 -768 336) (432 -776 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250857" + "id" "248270" side { - "id" "88650" - "plane" "(224 -160 200) (224 -176 200) (128 -176 200)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "87935" + "plane" "(464 -784 368) (432 -784 368) (432 -776 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88649" - "plane" "(224 -176 96) (224 -160 96) (128 -160 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "87934" + "plane" "(432 -784 336) (432 -784 368) (464 -784 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88648" - "plane" "(128 -160 200) (128 -176 200) (128 -176 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87933" + "plane" "(464 -776 336) (464 -776 368) (432 -776 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88647" - "plane" "(224 -176 200) (224 -160 200) (224 -160 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "87932" + "plane" "(432 -776 336) (432 -776 368) (432 -784 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88646" - "plane" "(128 -176 200) (224 -176 200) (224 -176 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87931" + "plane" "(464 -784 336) (464 -784 368) (464 -776 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88645" - "plane" "(224 -160 200) (128 -160 200) (128 -160 96)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87930" + "plane" "(464 -776 336) (432 -776 336) (432 -784 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250859" + "id" "248271" side { - "id" "88662" - "plane" "(224 -176 208) (224 -192 208) (128 -192 208)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "87941" + "plane" "(460 -792 368) (432 -792 368) (432 -784 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88661" - "plane" "(224 -192 96) (224 -176 96) (128 -176 96)" + "id" "87940" + "plane" "(432 -792 336) (432 -792 368) (460 -792 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88660" - "plane" "(128 -176 208) (128 -192 208) (128 -192 96)" + "id" "87939" + "plane" "(460 -784 336) (460 -784 368) (432 -784 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88659" - "plane" "(224 -192 208) (224 -176 208) (224 -176 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "87938" + "plane" "(432 -784 336) (432 -784 368) (432 -792 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88658" - "plane" "(128 -192 208) (224 -192 208) (224 -192 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87937" + "plane" "(460 -792 336) (460 -792 368) (460 -784 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88657" - "plane" "(224 -176 208) (128 -176 208) (128 -176 96)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87936" + "plane" "(460 -784 336) (432 -784 336) (432 -792 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250921" + "id" "248272" side { - "id" "88776" - "plane" "(368 32 320) (368 -240 320) (352 -240 320)" + "id" "87947" + "plane" "(464 -800 368) (432 -800 368) (432 -792 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88775" - "plane" "(368 -240 96) (368 32 96) (352 32 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "87946" + "plane" "(432 -800 336) (432 -800 368) (464 -800 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88774" - "plane" "(352 32 320) (352 -240 320) (352 -240 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "87945" + "plane" "(464 -792 336) (464 -792 368) (432 -792 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32188,162 +32241,162 @@ world } side { - "id" "88773" - "plane" "(368 -240 320) (368 32 320) (368 32 96)" + "id" "87944" + "plane" "(432 -792 336) (432 -792 368) (432 -800 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88772" - "plane" "(352 -240 320) (368 -240 320) (368 -240 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87943" + "plane" "(464 -800 336) (464 -800 368) (464 -792 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88771" - "plane" "(368 32 320) (352 32 320) (352 32 96)" + "id" "87942" + "plane" "(464 -792 336) (432 -792 336) (432 -800 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250923" + "id" "248273" side { - "id" "88788" - "plane" "(352 48 320) (352 32 320) (128 32 320)" + "id" "87953" + "plane" "(460 -808 368) (432 -808 368) (432 -800 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88787" - "plane" "(352 32 144) (352 48 144) (128 48 144)" + "id" "87952" + "plane" "(432 -808 336) (432 -808 368) (460 -808 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88786" - "plane" "(128 48 320) (128 32 320) (128 32 144)" + "id" "87951" + "plane" "(460 -800 336) (460 -800 368) (432 -800 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88785" - "plane" "(352 32 320) (352 48 320) (352 48 144)" + "id" "87950" + "plane" "(432 -800 336) (432 -800 368) (432 -808 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88784" - "plane" "(128 32 320) (352 32 320) (352 32 144)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87949" + "plane" "(460 -808 336) (460 -808 368) (460 -800 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88783" - "plane" "(352 48 320) (128 48 320) (128 48 144)" + "id" "87948" + "plane" "(460 -800 336) (432 -800 336) (432 -808 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250926" + "id" "248274" side { - "id" "88800" - "plane" "(112 -224 320) (112 32 320) (128 32 320)" + "id" "87959" + "plane" "(464 -824 368) (432 -824 368) (432 -808 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88799" - "plane" "(112 32 144) (112 -224 144) (128 -224 144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "87958" + "plane" "(432 -824 336) (432 -824 368) (464 -824 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88798" - "plane" "(112 -224 144) (112 32 144) (112 32 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87957" + "plane" "(464 -808 336) (464 -808 368) (432 -808 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88797" - "plane" "(128 32 144) (128 -224 144) (128 -224 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "87956" + "plane" "(432 -808 336) (432 -808 368) (432 -824 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32351,140 +32404,140 @@ world } side { - "id" "88796" - "plane" "(128 -224 144) (112 -224 144) (112 -224 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "87955" + "plane" "(464 -824 336) (464 -824 368) (464 -808 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 -480] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88795" - "plane" "(112 32 144) (128 32 144) (128 32 320)" + "id" "87954" + "plane" "(464 -808 336) (432 -808 336) (432 -824 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "250968" + "id" "248277" side { - "id" "88902" - "plane" "(128 -64 144) (128 32 144) (352 32 144)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[0 1 0 0] 0.2" - "vaxis" "[1 0 0 0] 0.2" - "rotation" "90" + "id" "88001" + "plane" "(460 -712 368) (432 -712 368) (432 -704 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88901" - "plane" "(128 32 96) (128 -64 96) (352 -64 96)" + "id" "88000" + "plane" "(432 -712 336) (432 -712 368) (460 -712 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88900" - "plane" "(128 32 96) (128 32 144) (128 -64 144)" + "id" "87999" + "plane" "(460 -704 336) (460 -704 368) (432 -704 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88899" - "plane" "(352 32 96) (352 32 144) (128 32 144)" + "id" "87998" + "plane" "(432 -704 336) (432 -704 368) (432 -712 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88898" - "plane" "(128 -64 96) (128 -64 144) (352 -64 144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87997" + "plane" "(460 -712 336) (460 -712 368) (460 -704 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 -256] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88897" - "plane" "(352 -64 96) (352 -64 144) (352 32 144)" + "id" "87996" + "plane" "(460 -704 336) (432 -704 336) (432 -712 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "251037" + "id" "248278" side { - "id" "88993" - "plane" "(160 -640 256) (160 -352 256) (224 -352 256)" + "id" "88007" + "plane" "(464 -720 368) (432 -720 368) (432 -712 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88992" - "plane" "(160 -352 240) (160 -640 240) (224 -640 240)" + "id" "88006" + "plane" "(432 -720 336) (432 -720 368) (464 -720 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -96] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88991" - "plane" "(160 -640 240) (160 -352 240) (160 -352 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "88005" + "plane" "(464 -712 336) (464 -712 368) (432 -712 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32492,21 +32545,21 @@ world } side { - "id" "88990" - "plane" "(224 -352 240) (224 -640 240) (224 -640 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88004" + "plane" "(432 -712 336) (432 -712 368) (432 -720 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88989" - "plane" "(160 -352 240) (224 -352 240) (224 -352 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "88003" + "plane" "(464 -720 336) (464 -720 368) (464 -712 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32514,53 +32567,53 @@ world } side { - "id" "88988" - "plane" "(224 -640 240) (160 -640 240) (160 -640 256)" + "id" "88002" + "plane" "(464 -712 336) (432 -712 336) (432 -720 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "251051" + "id" "248308" side { - "id" "89017" - "plane" "(128 -480 256) (128 -288 256) (160 -288 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" + "id" "88031" + "plane" "(432 -864 64) (432 -768 64) (480 -768 64)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[0 1 0 0] 0.2" + "vaxis" "[1 0 0 0] 0.2" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89016" - "plane" "(128 -288 240) (128 -480 240) (160 -480 240)" + "id" "88030" + "plane" "(432 -768 48) (432 -864 48) (480 -864 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89015" - "plane" "(128 -480 240) (128 -288 240) (128 -288 256)" + "id" "88029" + "plane" "(432 -864 48) (432 -768 48) (432 -768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32568,10 +32621,10 @@ world } side { - "id" "89014" - "plane" "(160 -288 240) (160 -480 240) (160 -480 256)" + "id" "88028" + "plane" "(480 -768 48) (480 -864 48) (480 -864 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32579,10 +32632,10 @@ world } side { - "id" "89013" - "plane" "(128 -288 240) (160 -288 240) (160 -288 256)" + "id" "88027" + "plane" "(432 -768 48) (480 -768 48) (480 -768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32590,10 +32643,10 @@ world } side { - "id" "89012" - "plane" "(160 -480 240) (128 -480 240) (128 -480 256)" + "id" "88026" + "plane" "(480 -864 48) (432 -864 48) (432 -864 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32601,303 +32654,307 @@ world } editor { - "color" "0 186 219" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "251064" + "id" "248330" side { - "id" "89023" - "plane" "(224 -160 96) (224 -64 96) (256 -64 96)" + "id" "88055" + "plane" "(196 -664 92) (196 -640 92) (380 -640 92)" "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[0 1 0 0] 0.2" - "vaxis" "[1 0 0 0] 0.2" - "rotation" "90" + "uaxis" "[1 0 0 0] 0.2" + "vaxis" "[0 -1 0 0] 0.2" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89022" - "plane" "(224 -64 88) (224 -160 88) (256 -160 88)" + "id" "88054" + "plane" "(196 -640 64) (196 -664 64) (380 -664 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89021" - "plane" "(224 -160 88) (224 -64 88) (224 -64 96)" + "id" "88053" + "plane" "(196 -664 64) (196 -640 64) (196 -640 92)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89020" - "plane" "(256 -64 88) (256 -160 88) (256 -160 96)" + "id" "88052" + "plane" "(380 -640 64) (380 -664 64) (380 -664 92)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89019" - "plane" "(256 -160 88) (224 -160 88) (224 -160 96)" + "id" "88051" + "plane" "(196 -640 64) (380 -640 64) (380 -640 92)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89018" - "plane" "(224 -64 88) (256 -64 88) (256 -64 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88050" + "plane" "(380 -664 64) (196 -664 64) (196 -664 92)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" + "uaxis" "[1 0 0 0] 0.135" + "vaxis" "[0 0 -1 171] 0.135" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "251239" + "id" "248335" side { - "id" "89239" - "plane" "(224 -192 216) (224 -208 216) (128 -208 216)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "88067" + "plane" "(196 -688 88) (196 -664 88) (380 -664 88)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[1 0 0 0] 0.2" + "vaxis" "[0 -1 0 0] 0.2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89238" - "plane" "(224 -208 96) (224 -192 96) (128 -192 96)" + "id" "88066" + "plane" "(196 -664 64) (196 -688 64) (380 -688 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89237" - "plane" "(128 -192 216) (128 -208 216) (128 -208 96)" + "id" "88065" + "plane" "(196 -688 64) (196 -664 64) (196 -664 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89236" - "plane" "(224 -208 216) (224 -192 216) (224 -192 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "88064" + "plane" "(380 -664 64) (380 -688 64) (380 -688 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89235" - "plane" "(128 -208 216) (224 -208 216) (224 -208 96)" + "id" "88063" + "plane" "(196 -664 64) (380 -664 64) (380 -664 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89234" - "plane" "(224 -192 216) (128 -192 216) (128 -192 96)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88062" + "plane" "(380 -688 64) (196 -688 64) (196 -688 88)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" + "uaxis" "[1 0 0 0] 0.135" + "vaxis" "[0 0 -1 142] 0.135" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "251241" + "id" "248337" side { - "id" "89251" - "plane" "(224 -208 224) (224 -224 224) (128 -224 224)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "88079" + "plane" "(196 -712 84) (196 -688 84) (380 -688 84)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[1 0 0 0] 0.2" + "vaxis" "[0 -1 0 0] 0.2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89250" - "plane" "(224 -224 96) (224 -208 96) (128 -208 96)" + "id" "88078" + "plane" "(196 -688 64) (196 -712 64) (380 -712 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89249" - "plane" "(128 -208 224) (128 -224 224) (128 -224 96)" + "id" "88077" + "plane" "(196 -712 64) (196 -688 64) (196 -688 84)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89248" - "plane" "(224 -224 224) (224 -208 224) (224 -208 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "88076" + "plane" "(380 -688 64) (380 -712 64) (380 -712 84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89247" - "plane" "(128 -224 224) (224 -224 224) (224 -224 96)" + "id" "88075" + "plane" "(196 -688 64) (380 -688 64) (380 -688 84)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89246" - "plane" "(224 -208 224) (128 -208 224) (128 -208 96)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88074" + "plane" "(380 -712 64) (196 -712 64) (196 -712 84)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" + "uaxis" "[1 0 0 0] 0.135" + "vaxis" "[0 0 -1 112] 0.135" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 219" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "251243" + "id" "248345" side { - "id" "89263" - "plane" "(224 -224 232) (224 -240 232) (128 -240 232)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" + "id" "88115" + "plane" "(384 -864 76) (384 -768 76) (400 -768 76)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[0 1 0 0] 0.2" + "vaxis" "[1 0 0 0] 0.2" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89262" - "plane" "(224 -240 96) (224 -224 96) (128 -224 96)" + "id" "88114" + "plane" "(384 -768 64) (384 -864 64) (400 -864 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89261" - "plane" "(128 -224 232) (128 -240 232) (128 -240 96)" + "id" "88113" + "plane" "(384 -864 64) (384 -768 64) (384 -768 76)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89260" - "plane" "(224 -240 232) (224 -224 232) (224 -224 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "88112" + "plane" "(400 -768 64) (400 -864 64) (400 -864 76)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" + "uaxis" "[0 1 0 0] 0.135" + "vaxis" "[0 0 -1 53] 0.135" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89259" - "plane" "(128 -240 232) (224 -240 232) (224 -240 96)" + "id" "88111" + "plane" "(384 -768 64) (400 -768 64) (400 -768 76)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89258" - "plane" "(224 -224 232) (128 -224 232) (128 -224 96)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "id" "88110" + "plane" "(400 -864 64) (384 -864 64) (384 -864 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32905,335 +32962,340 @@ world } editor { - "color" "0 186 219" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "245130" + "id" "248352" side { - "id" "87617" - "plane" "(502 -908 212) (464 -908 212) (464 -724 212)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 56] 0.25" - "rotation" "0" + "id" "88127" + "plane" "(400 -864 72) (400 -768 72) (416 -768 72)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[0 1 0 0] 0.2" + "vaxis" "[1 0 0 0] 0.2" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87616" - "plane" "(464 -908 212) (502 -908 212) (502 -908 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88126" + "plane" "(400 -768 64) (400 -864 64) (416 -864 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87615" - "plane" "(464 -724 208) (502 -724 208) (502 -724 212)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88125" + "plane" "(400 -864 64) (400 -768 64) (400 -768 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87614" - "plane" "(502 -908 208) (502 -908 212) (502 -724 212)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88124" + "plane" "(416 -768 64) (416 -864 64) (416 -864 72)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" + "uaxis" "[0 1 0 0] 0.135" + "vaxis" "[0 0 -1 23] 0.135" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87613" - "plane" "(502 -724 208) (464 -724 208) (464 -908 208)" + "id" "88123" + "plane" "(400 -768 64) (416 -768 64) (416 -768 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87612" - "plane" "(464 -724 208) (464 -724 212) (464 -908 212)" + "id" "88122" + "plane" "(416 -864 64) (400 -864 64) (400 -864 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 103 232" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "245213" + "id" "248354" side { - "id" "87629" - "plane" "(464 -868 192) (448 -868 192) (448 -764 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" + "id" "88139" + "plane" "(416 -864 68) (416 -768 68) (432 -768 68)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[0 1 0 0] 0.2" + "vaxis" "[1 0 0 0] 0.2" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87628" - "plane" "(448 -868 184) (448 -868 192) (464 -868 192)" + "id" "88138" + "plane" "(416 -768 64) (416 -864 64) (432 -864 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87627" - "plane" "(464 -764 184) (464 -764 192) (448 -764 192)" + "id" "88137" + "plane" "(416 -864 64) (416 -768 64) (416 -768 68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87626" - "plane" "(448 -764 184) (448 -764 192) (448 -868 192)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88136" + "plane" "(432 -768 64) (432 -864 64) (432 -864 68)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" + "uaxis" "[0 1 0 0] 0.135" + "vaxis" "[0 0 -1 506] 0.135" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87625" - "plane" "(464 -868 184) (464 -868 192) (464 -764 192)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88135" + "plane" "(416 -768 64) (432 -768 64) (432 -768 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87624" - "plane" "(464 -764 184) (448 -764 184) (448 -868 184)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 -1 0 -224] 0.125" + "id" "88134" + "plane" "(432 -864 64) (416 -864 64) (416 -864 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 120" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "245218" + "id" "248384" side { - "id" "87641" - "plane" "(464 -876 192) (448 -876 192) (448 -868 192)" + "id" "88157" + "plane" "(384 -764 64) (392 -764 64) (392 -640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87640" - "plane" "(448 -876 64) (448 -876 192) (464 -876 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "88156" + "plane" "(384 -640 64) (384 -640 104) (384 -764 88)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87639" - "plane" "(464 -868 64) (464 -868 192) (448 -868 192)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88155" + "plane" "(392 -764 64) (392 -764 88) (392 -640 104)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87638" - "plane" "(448 -868 64) (448 -868 192) (448 -876 192)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88154" + "plane" "(392 -640 64) (392 -640 104) (384 -640 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87637" - "plane" "(464 -876 64) (464 -876 192) (464 -868 192)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88153" + "plane" "(384 -764 64) (384 -764 88) (392 -764 88)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87636" - "plane" "(464 -868 64) (448 -868 64) (448 -876 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "88152" + "plane" "(384 -640 104) (392 -640 104) (392 -764 88)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 120" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "245220" + "id" "248387" side { - "id" "87653" - "plane" "(464 -764 192) (448 -764 192) (448 -756 192)" + "id" "88169" + "plane" "(440 -764 64) (448 -764 64) (448 -640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87652" - "plane" "(448 -764 64) (448 -764 192) (464 -764 192)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88168" + "plane" "(440 -640 64) (440 -640 104) (440 -764 88)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87651" - "plane" "(464 -756 64) (464 -756 192) (448 -756 192)" + "id" "88167" + "plane" "(448 -764 64) (448 -764 88) (448 -640 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87650" - "plane" "(448 -756 64) (448 -756 192) (448 -764 192)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88166" + "plane" "(448 -640 64) (448 -640 104) (440 -640 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87649" - "plane" "(464 -764 64) (464 -764 192) (464 -756 192)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88165" + "plane" "(440 -764 64) (440 -764 88) (448 -764 88)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87648" - "plane" "(464 -756 64) (448 -756 64) (448 -764 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "88164" + "plane" "(440 -640 104) (448 -640 104) (448 -764 88)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 120" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "245260" + "id" "248404" side { - "id" "87677" - "plane" "(464 -928 240) (456 -928 240) (456 -704 240)" + "id" "88211" + "plane" "(440 -756 64) (440 -648 64) (392 -648 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87676" - "plane" "(456 -928 216) (456 -928 240) (464 -928 240)" + "id" "88210" + "plane" "(392 -648 100.004) (392 -756 86.0682) (392 -756 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -33241,10 +33303,10 @@ world } side { - "id" "87675" - "plane" "(464 -704 216) (464 -704 240) (456 -704 240)" + "id" "88209" + "plane" "(440 -756 86.0659) (440 -648 100) (440 -648 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -33252,466 +33314,471 @@ world } side { - "id" "87674" - "plane" "(456 -704 216) (456 -704 240) (456 -928 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88208" + "plane" "(440 -648 100) (440 -756 86.0659) (392 -756 86.0682)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87673" - "plane" "(464 -928 216) (464 -928 240) (464 -704 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88207" + "plane" "(392 -756 64) (392 -756 86.0682) (440 -756 86.0659)" + "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" "87672" - "plane" "(464 -704 216) (456 -704 216) (456 -928 216)" + "id" "88206" + "plane" "(440 -648 64) (440 -648 100) (392 -648 100.004)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 120" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "245267" + "id" "248405" side { - "id" "87761" - "plane" "(464 -928 336) (448 -928 336) (448 -704 336)" + "id" "88217" + "plane" "(392 -640 64) (392 -648 64) (440 -648 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87760" - "plane" "(448 -928 332) (448 -928 336) (464 -928 336)" + "id" "88216" + "plane" "(392 -648 64) (392 -640 64) (392 -640 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87759" - "plane" "(464 -704 332) (464 -704 336) (448 -704 336)" + "id" "88215" + "plane" "(440 -640 104) (440 -640 64) (440 -648 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87758" - "plane" "(448 -704 332) (448 -704 336) (448 -928 336)" + "id" "88214" + "plane" "(392 -640 104) (392 -640 64) (440 -640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87757" - "plane" "(464 -928 332) (464 -928 336) (464 -704 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 358] 0.125" - "vaxis" "[0 0 -1 96] 0.125" + "id" "88213" + "plane" "(392 -648 102.968) (392 -640 104) (440 -640 104)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87756" - "plane" "(464 -704 332) (448 -704 332) (448 -928 332)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 358] 0.125" - "vaxis" "[-1 0 0 128] 0.125" + "id" "88212" + "plane" "(440 -648 102.969) (440 -648 64) (392 -648 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 120" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "245271" + "id" "248406" side { - "id" "87701" - "plane" "(463 -924 332) (456 -924 332) (456 -708 332)" + "id" "88223" + "plane" "(392 -756 64) (392 -764 64) (440 -764 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87700" - "plane" "(456 -924 244) (456 -924 332) (463 -924 332)" + "id" "88222" + "plane" "(392 -764 88) (392 -764 64) (392 -756 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87699" - "plane" "(463 -708 244) (463 -708 332) (456 -708 332)" + "id" "88221" + "plane" "(440 -756 64) (440 -764 64) (440 -764 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87698" - "plane" "(456 -708 244) (456 -708 332) (456 -924 332)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "88220" + "plane" "(440 -764 88) (440 -764 64) (392 -764 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87697" - "plane" "(463 -924 244) (463 -924 332) (463 -708 332)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 1 0 320] 0.25" - "vaxis" "[0 0 -1 208] 0.25" + "id" "88219" + "plane" "(392 -764 88) (392 -756 89.0322) (440 -756 89.0323)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87696" - "plane" "(463 -708 244) (456 -708 244) (456 -924 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "88218" + "plane" "(392 -756 89.0273) (392 -756 64) (440 -756 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 120" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248233" + "id" "248409" side { - "id" "87779" - "plane" "(464 -928 332) (448 -928 332) (448 -924 332)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "88235" + "plane" "(384 -892 80) (384 -868 80) (448 -868 80)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[1 0 0 0] 0.2" + "vaxis" "[0 -1 0 280] 0.2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87778" - "plane" "(448 -928 244) (448 -928 332) (464 -928 332)" + "id" "88234" + "plane" "(384 -868 64) (384 -892 64) (448 -892 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87777" - "plane" "(464 -924 244) (464 -924 332) (448 -924 332)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 0 1 358] 0.125" - "vaxis" "[-1 0 0 0] 0.125" + "id" "88233" + "plane" "(384 -892 64) (384 -868 64) (384 -868 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87776" - "plane" "(448 -924 244) (448 -924 332) (448 -928 332)" + "id" "88232" + "plane" "(448 -868 64) (448 -892 64) (448 -892 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87775" - "plane" "(464 -928 244) (464 -928 332) (464 -924 332)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 0 1 358] 0.125" - "vaxis" "[0 1 0 96] 0.125" - "rotation" "90" + "id" "88231" + "plane" "(384 -868 64) (448 -868 64) (448 -868 80)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" + "uaxis" "[1 0 0 0] 0.135" + "vaxis" "[0 0 -1 83] 0.135" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87774" - "plane" "(464 -924 244) (448 -924 244) (448 -928 244)" + "id" "88230" + "plane" "(448 -892 64) (384 -892 64) (384 -892 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 120" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248235" + "id" "248413" side { - "id" "87791" - "plane" "(464 -708 332) (448 -708 332) (448 -704 332)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "88247" + "plane" "(288 -928 96) (288 -896 96) (448 -896 96)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[1 0 0 0] 0.2" + "vaxis" "[0 1 0 0] 0.2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87790" - "plane" "(448 -708 244) (448 -708 332) (464 -708 332)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 0 -1 358] 0.125" - "vaxis" "[-1 0 0 256] 0.125" + "id" "88246" + "plane" "(288 -896 80) (288 -928 80) (448 -928 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87789" - "plane" "(464 -704 244) (464 -704 332) (448 -704 332)" + "id" "88245" + "plane" "(288 -928 80) (288 -896 80) (288 -896 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87788" - "plane" "(448 -704 244) (448 -704 332) (448 -708 332)" + "id" "88244" + "plane" "(448 -896 80) (448 -928 80) (448 -928 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87787" - "plane" "(464 -708 244) (464 -708 332) (464 -704 332)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 0 -1 358] 0.125" - "vaxis" "[0 -1 0 96] 0.125" - "rotation" "-90" + "id" "88243" + "plane" "(288 -896 80) (448 -896 80) (448 -896 96)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" + "uaxis" "[1 0 0 0] 0.135" + "vaxis" "[0 0 -1 212] 0.135" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87786" - "plane" "(464 -704 244) (448 -704 244) (448 -708 244)" + "id" "88242" + "plane" "(448 -928 80) (288 -928 80) (288 -928 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 120" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248238" + "id" "248466" side { - "id" "87803" - "plane" "(464 -928 244) (456 -928 244) (456 -704 244)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 358] 0.125" - "vaxis" "[1 0 0 -448] 0.125" + "id" "88351" + "plane" "(196 -840 80) (196 -712 80) (288 -712 80)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[1 0 0 0] 0.2" + "vaxis" "[0 -1 0 280] 0.2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87802" - "plane" "(456 -928 240) (456 -928 244) (464 -928 244)" + "id" "88350" + "plane" "(288 -712 64) (196 -712 64) (196 -840 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87801" - "plane" "(464 -704 240) (464 -704 244) (456 -704 244)" + "id" "88349" + "plane" "(196 -840 64) (196 -712 64) (196 -712 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87800" - "plane" "(456 -704 240) (456 -704 244) (456 -928 244)" + "id" "88348" + "plane" "(196 -712 64) (288 -712 64) (288 -712 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87799" - "plane" "(464 -928 240) (464 -928 244) (464 -704 244)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 358] 0.125" - "vaxis" "[0 0 -1 96] 0.125" + "id" "88347" + "plane" "(288 -712 64) (288 -840 64) (288 -840 80)" + "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" "87798" - "plane" "(464 -704 240) (456 -704 240) (456 -928 240)" + "id" "88346" + "plane" "(288 -840 64) (196 -840 64) (196 -840 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 120" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248239" + "id" "248467" side { - "id" "87815" - "plane" "(456 -704 368) (456 -668 368) (464 -668 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "id" "88357" + "plane" "(384 -768 80) (384 -892 80) (288 -892 80)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[1 0 0 0] 0.2" + "vaxis" "[0 -1 0 280] 0.2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87814" - "plane" "(456 -668 64) (456 -668 368) (456 -704 368)" + "id" "88356" + "plane" "(288 -768 64) (288 -892 64) (384 -892 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87813" - "plane" "(464 -704 64) (464 -704 368) (464 -668 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 -32] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88355" + "plane" "(384 -768 64) (384 -892 64) (384 -892 80)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" + "uaxis" "[0 1 0 0] 0.135" + "vaxis" "[0 0 -1 83] 0.135" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87812" - "plane" "(464 -668 64) (464 -668 368) (456 -668 368)" + "id" "88354" + "plane" "(384 -892 64) (288 -892 64) (288 -892 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -33719,10 +33786,10 @@ world } side { - "id" "87811" - "plane" "(456 -704 64) (456 -704 368) (464 -704 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -96] 0.25" + "id" "88353" + "plane" "(288 -892 64) (288 -768 64) (288 -768 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -33730,53 +33797,54 @@ world } side { - "id" "87810" - "plane" "(456 -668 64) (456 -704 64) (464 -704 64)" + "id" "88352" + "plane" "(288 -768 64) (384 -768 64) (384 -768 80)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248263" + "id" "248475" side { - "id" "87893" - "plane" "(460 -728 368) (432 -728 368) (432 -720 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "88368" + "plane" "(236 -840 80) (288 -840 80) (288 -892 80)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[1 0 0 0] 0.2" + "vaxis" "[0 -1 0 280] 0.2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87892" - "plane" "(432 -728 336) (432 -728 368) (460 -728 368)" + "id" "88367" + "plane" "(288 -892 64) (288 -840 64) (236 -840 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87891" - "plane" "(460 -720 336) (460 -720 368) (432 -720 368)" + "id" "88366" + "plane" "(288 -840 64) (288 -892 64) (288 -892 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -33784,10 +33852,10 @@ world } side { - "id" "87890" - "plane" "(432 -720 336) (432 -720 368) (432 -728 368)" + "id" "88365" + "plane" "(236 -840 64) (288 -840 64) (288 -840 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -33795,75 +33863,65 @@ world } side { - "id" "87889" - "plane" "(460 -728 336) (460 -728 368) (460 -720 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 -128] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "87888" - "plane" "(460 -720 336) (432 -720 336) (432 -728 336)" + "id" "88364" + "plane" "(288 -892 64) (236 -840 64) (236 -840 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248264" + "id" "248478" side { - "id" "87899" - "plane" "(464 -736 368) (432 -736 368) (432 -728 368)" + "id" "88416" + "plane" "(192 -814 184) (192 -746 184) (193 -746 184)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -40] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87898" - "plane" "(432 -736 336) (432 -736 368) (464 -736 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88415" + "plane" "(192 -746 80) (192 -814 80) (193 -814 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -40] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87897" - "plane" "(464 -728 336) (464 -728 368) (432 -728 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88414" + "plane" "(192 -814 80) (192 -746 80) (192 -746 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87896" - "plane" "(432 -728 336) (432 -728 368) (432 -736 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "id" "88413" + "plane" "(193 -746 80) (193 -814 80) (193 -814 184)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 8] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -33871,75 +33929,75 @@ world } side { - "id" "87895" - "plane" "(464 -736 336) (464 -736 368) (464 -728 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88412" + "plane" "(192 -746 80) (193 -746 80) (193 -746 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87894" - "plane" "(464 -728 336) (432 -728 336) (432 -736 336)" + "id" "88411" + "plane" "(193 -814 80) (192 -814 80) (192 -814 184)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248265" + "id" "248479" side { - "id" "87905" - "plane" "(460 -744 368) (432 -744 368) (432 -736 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "88422" + "plane" "(192 -746 192) (192 -738 192) (200 -738 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87904" - "plane" "(432 -744 336) (432 -744 368) (460 -744 368)" + "id" "88421" + "plane" "(192 -738 80) (192 -746 80) (200 -746 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -40] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87903" - "plane" "(460 -736 336) (460 -736 368) (432 -736 368)" + "id" "88420" + "plane" "(192 -746 80) (192 -738 80) (192 -738 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87902" - "plane" "(432 -736 336) (432 -736 368) (432 -744 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "id" "88419" + "plane" "(200 -738 80) (200 -746 80) (200 -746 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 8] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -33947,75 +34005,75 @@ world } side { - "id" "87901" - "plane" "(460 -744 336) (460 -744 368) (460 -736 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88418" + "plane" "(192 -738 80) (200 -738 80) (200 -738 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87900" - "plane" "(460 -736 336) (432 -736 336) (432 -744 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "88417" + "plane" "(200 -746 80) (192 -746 80) (192 -746 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248266" + "id" "248480" side { - "id" "87911" - "plane" "(464 -752 368) (432 -752 368) (432 -744 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "88428" + "plane" "(192 -810 192) (192 -746 192) (200 -746 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87910" - "plane" "(432 -752 336) (432 -752 368) (464 -752 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88427" + "plane" "(192 -746 184) (192 -810 184) (200 -810 184)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87909" - "plane" "(464 -744 336) (464 -744 368) (432 -744 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88426" + "plane" "(192 -810 184) (192 -746 184) (192 -746 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87908" - "plane" "(432 -744 336) (432 -744 368) (432 -752 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "id" "88425" + "plane" "(200 -746 184) (200 -810 184) (200 -810 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 8] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34023,64 +34081,64 @@ world } side { - "id" "87907" - "plane" "(464 -752 336) (464 -752 368) (464 -744 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88424" + "plane" "(192 -746 184) (200 -746 184) (200 -746 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87906" - "plane" "(464 -744 336) (432 -744 336) (432 -752 336)" + "id" "88423" + "plane" "(200 -810 184) (192 -810 184) (192 -810 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248267" + "id" "248528" side { - "id" "87917" - "plane" "(460 -760 368) (432 -760 368) (432 -752 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "88434" + "plane" "(288 -1472 96) (440.405 -964 96) (472.4 -964 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87916" - "plane" "(432 -760 336) (432 -760 368) (460 -760 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "88433" + "plane" "(440.402 -964 0) (288 -1472 0) (320 -1472 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87915" - "plane" "(460 -752 336) (460 -752 368) (432 -752 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "88432" + "plane" "(288 -1472 0) (440.398 -964 0) (440.4 -964 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34088,10 +34146,10 @@ world } side { - "id" "87914" - "plane" "(432 -752 336) (432 -752 368) (432 -760 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "id" "88431" + "plane" "(472.399 -964 0) (320 -1472 0) (320 -1472 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34099,75 +34157,75 @@ world } side { - "id" "87913" - "plane" "(460 -760 336) (460 -760 368) (460 -752 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "88430" + "plane" "(320 -1472 0) (288 -1472 0) (288 -1472 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87912" - "plane" "(460 -752 336) (432 -752 336) (432 -760 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "88429" + "plane" "(440.402 -964 0) (472.4 -964 0) (472.402 -964 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248268" + "id" "242794" side { - "id" "87923" - "plane" "(464 -768 368) (432 -768 368) (432 -760 368)" + "id" "86963" + "plane" "(464 -928 216) (448 -928 216) (448 -876 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87922" - "plane" "(432 -768 336) (432 -768 368) (464 -768 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "86962" + "plane" "(448 -928 64) (448 -928 216) (464 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87921" - "plane" "(464 -760 336) (464 -760 368) (432 -760 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "86961" + "plane" "(464 -876 64) (464 -876 216) (448 -876 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87920" - "plane" "(432 -760 336) (432 -760 368) (432 -768 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "id" "86960" + "plane" "(448 -876 64) (448 -876 216) (448 -928 216)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34175,10 +34233,10 @@ world } side { - "id" "87919" - "plane" "(464 -768 336) (464 -768 368) (464 -760 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "86959" + "plane" "(464 -928 64) (464 -928 216) (464 -876 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 1 0 304] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34186,29 +34244,29 @@ world } side { - "id" "87918" - "plane" "(464 -760 336) (432 -760 336) (432 -768 336)" + "id" "86958" + "plane" "(464 -876 64) (448 -876 64) (448 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248269" + "id" "242805" side { - "id" "87929" - "plane" "(460 -776 368) (432 -776 368) (432 -768 368)" + "id" "87071" + "plane" "(464 -840 368) (432 -840 368) (432 -832 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -48] 0.25" "vaxis" "[1 0 0 0] 0.25" @@ -34218,10 +34276,10 @@ world } side { - "id" "87928" - "plane" "(432 -776 336) (432 -776 368) (460 -776 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "87070" + "plane" "(432 -840 336) (432 -840 368) (464 -840 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34229,10 +34287,10 @@ world } side { - "id" "87927" - "plane" "(460 -768 336) (460 -768 368) (432 -768 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "87069" + "plane" "(464 -832 336) (464 -832 368) (432 -832 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34240,8 +34298,8 @@ world } side { - "id" "87926" - "plane" "(432 -768 336) (432 -768 368) (432 -776 368)" + "id" "87068" + "plane" "(432 -832 336) (432 -832 368) (432 -840 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34251,19 +34309,19 @@ world } side { - "id" "87925" - "plane" "(460 -776 336) (460 -776 368) (460 -768 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "87067" + "plane" "(464 -840 336) (464 -840 368) (464 -832 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87924" - "plane" "(460 -768 336) (432 -768 336) (432 -776 336)" + "id" "87066" + "plane" "(432 -840 336) (464 -840 336) (464 -832 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -48] 0.25" "vaxis" "[1 0 0 0] 0.25" @@ -34273,31 +34331,31 @@ world } editor { - "color" "0 253 174" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248270" + "id" "242806" side { - "id" "87935" - "plane" "(464 -784 368) (432 -784 368) (432 -776 368)" + "id" "87077" + "plane" "(460 -832 368) (432 -832 368) (432 -824 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87934" - "plane" "(432 -784 336) (432 -784 368) (464 -784 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" + "id" "87076" + "plane" "(432 -832 336) (432 -832 368) (460 -832 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34305,10 +34363,10 @@ world } side { - "id" "87933" - "plane" "(464 -776 336) (464 -776 368) (432 -776 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" + "id" "87075" + "plane" "(460 -824 336) (460 -824 368) (432 -824 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34316,8 +34374,8 @@ world } side { - "id" "87932" - "plane" "(432 -776 336) (432 -776 368) (432 -784 368)" + "id" "87074" + "plane" "(432 -824 336) (432 -824 368) (432 -832 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34327,22 +34385,22 @@ world } side { - "id" "87931" - "plane" "(464 -784 336) (464 -784 368) (464 -776 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87073" + "plane" "(460 -832 336) (460 -832 368) (460 -824 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 192] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87930" - "plane" "(464 -776 336) (432 -776 336) (432 -784 336)" + "id" "87072" + "plane" "(432 -832 336) (460 -832 336) (460 -824 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -34356,13 +34414,13 @@ world } solid { - "id" "248271" + "id" "242807" side { - "id" "87941" - "plane" "(460 -792 368) (432 -792 368) (432 -784 368)" + "id" "87083" + "plane" "(460 -848 368) (432 -848 368) (432 -840 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34370,8 +34428,8 @@ world } side { - "id" "87940" - "plane" "(432 -792 336) (432 -792 368) (460 -792 368)" + "id" "87082" + "plane" "(432 -848 336) (432 -848 368) (460 -848 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34381,8 +34439,8 @@ world } side { - "id" "87939" - "plane" "(460 -784 336) (460 -784 368) (432 -784 368)" + "id" "87081" + "plane" "(460 -840 336) (460 -840 368) (432 -840 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34392,10 +34450,10 @@ world } side { - "id" "87938" - "plane" "(432 -784 336) (432 -784 368) (432 -792 368)" + "id" "87080" + "plane" "(432 -840 336) (432 -840 368) (432 -848 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34403,10 +34461,10 @@ world } side { - "id" "87937" - "plane" "(460 -792 336) (460 -792 368) (460 -784 368)" + "id" "87079" + "plane" "(460 -848 336) (460 -848 368) (460 -840 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" + "uaxis" "[0 1 0 -192] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -34414,10 +34472,10 @@ world } side { - "id" "87936" - "plane" "(460 -784 336) (432 -784 336) (432 -792 336)" + "id" "87078" + "plane" "(432 -848 336) (460 -848 336) (460 -840 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34432,13 +34490,13 @@ world } solid { - "id" "248272" + "id" "242808" side { - "id" "87947" - "plane" "(464 -800 368) (432 -800 368) (432 -792 368)" + "id" "87089" + "plane" "(464 -856 368) (432 -856 368) (432 -848 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[0 1 0 -48] 0.25" "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34446,8 +34504,8 @@ world } side { - "id" "87946" - "plane" "(432 -800 336) (432 -800 368) (464 -800 368)" + "id" "87088" + "plane" "(432 -856 336) (432 -856 368) (464 -856 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[-1 0 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34457,8 +34515,8 @@ world } side { - "id" "87945" - "plane" "(464 -792 336) (464 -792 368) (432 -792 368)" + "id" "87087" + "plane" "(464 -848 336) (464 -848 368) (432 -848 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[-1 0 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34468,10 +34526,10 @@ world } side { - "id" "87944" - "plane" "(432 -792 336) (432 -792 368) (432 -800 368)" + "id" "87086" + "plane" "(432 -848 336) (432 -848 368) (432 -856 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[0 1 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34479,10 +34537,10 @@ world } side { - "id" "87943" - "plane" "(464 -800 336) (464 -800 368) (464 -792 368)" + "id" "87085" + "plane" "(464 -856 336) (464 -856 368) (464 -848 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -96] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34490,10 +34548,10 @@ world } side { - "id" "87942" - "plane" "(464 -792 336) (432 -792 336) (432 -800 336)" + "id" "87084" + "plane" "(432 -856 336) (464 -856 336) (464 -848 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[0 1 0 -48] 0.25" "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34508,13 +34566,13 @@ world } solid { - "id" "248273" + "id" "242809" side { - "id" "87953" - "plane" "(460 -808 368) (432 -808 368) (432 -800 368)" + "id" "87095" + "plane" "(460 -864 368) (432 -864 368) (432 -856 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34522,8 +34580,8 @@ world } side { - "id" "87952" - "plane" "(432 -808 336) (432 -808 368) (460 -808 368)" + "id" "87094" + "plane" "(432 -864 336) (432 -864 368) (460 -864 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34533,8 +34591,8 @@ world } side { - "id" "87951" - "plane" "(460 -800 336) (460 -800 368) (432 -800 368)" + "id" "87093" + "plane" "(460 -856 336) (460 -856 368) (432 -856 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34544,10 +34602,10 @@ world } side { - "id" "87950" - "plane" "(432 -800 336) (432 -800 368) (432 -808 368)" + "id" "87092" + "plane" "(432 -856 336) (432 -856 368) (432 -864 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34555,10 +34613,10 @@ world } side { - "id" "87949" - "plane" "(460 -808 336) (460 -808 368) (460 -800 368)" + "id" "87091" + "plane" "(460 -864 336) (460 -864 368) (460 -856 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" + "uaxis" "[0 1 0 -192] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -34566,10 +34624,10 @@ world } side { - "id" "87948" - "plane" "(460 -800 336) (432 -800 336) (432 -808 336)" + "id" "87090" + "plane" "(432 -864 336) (460 -864 336) (460 -856 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34584,22 +34642,22 @@ world } solid { - "id" "248274" + "id" "242810" side { - "id" "87959" - "plane" "(464 -824 368) (432 -824 368) (432 -808 368)" + "id" "87101" + "plane" "(464 -872 368) (432 -872 368) (432 -864 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87958" - "plane" "(432 -824 336) (432 -824 368) (464 -824 368)" + "id" "87100" + "plane" "(432 -872 336) (432 -872 368) (464 -872 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[-1 0 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34609,8 +34667,8 @@ world } side { - "id" "87957" - "plane" "(464 -808 336) (464 -808 368) (432 -808 368)" + "id" "87099" + "plane" "(464 -864 336) (464 -864 368) (432 -864 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[-1 0 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34620,8 +34678,8 @@ world } side { - "id" "87956" - "plane" "(432 -808 336) (432 -808 368) (432 -824 368)" + "id" "87098" + "plane" "(432 -864 336) (432 -864 368) (432 -872 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34631,10 +34689,10 @@ world } side { - "id" "87955" - "plane" "(464 -824 336) (464 -824 368) (464 -808 368)" + "id" "87097" + "plane" "(464 -872 336) (464 -872 368) (464 -864 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -480] 0.25" + "uaxis" "[0 1 0 -96] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34642,31 +34700,31 @@ world } side { - "id" "87954" - "plane" "(464 -808 336) (432 -808 336) (432 -824 336)" + "id" "87096" + "plane" "(432 -872 336) (464 -872 336) (464 -864 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248277" + "id" "242811" side { - "id" "88001" - "plane" "(460 -712 368) (432 -712 368) (432 -704 368)" + "id" "87107" + "plane" "(460 -880 368) (432 -880 368) (432 -872 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34674,8 +34732,8 @@ world } side { - "id" "88000" - "plane" "(432 -712 336) (432 -712 368) (460 -712 368)" + "id" "87106" + "plane" "(432 -880 336) (432 -880 368) (460 -880 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34685,8 +34743,8 @@ world } side { - "id" "87999" - "plane" "(460 -704 336) (460 -704 368) (432 -704 368)" + "id" "87105" + "plane" "(460 -872 336) (460 -872 368) (432 -872 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34696,10 +34754,10 @@ world } side { - "id" "87998" - "plane" "(432 -704 336) (432 -704 368) (432 -712 368)" + "id" "87104" + "plane" "(432 -872 336) (432 -872 368) (432 -880 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34707,10 +34765,10 @@ world } side { - "id" "87997" - "plane" "(460 -712 336) (460 -712 368) (460 -704 368)" + "id" "87103" + "plane" "(460 -880 336) (460 -880 368) (460 -872 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 -256] 0.125" + "uaxis" "[0 1 0 -192] 0.125" "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" @@ -34718,10 +34776,10 @@ world } side { - "id" "87996" - "plane" "(460 -704 336) (432 -704 336) (432 -712 336)" + "id" "87102" + "plane" "(432 -880 336) (460 -880 336) (460 -872 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34736,13 +34794,13 @@ world } solid { - "id" "248278" + "id" "242812" side { - "id" "88007" - "plane" "(464 -720 368) (432 -720 368) (432 -712 368)" + "id" "87113" + "plane" "(464 -888 368) (432 -888 368) (432 -880 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[0 1 0 -48] 0.25" "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34750,8 +34808,8 @@ world } side { - "id" "88006" - "plane" "(432 -720 336) (432 -720 368) (464 -720 368)" + "id" "87112" + "plane" "(432 -888 336) (432 -888 368) (464 -888 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[-1 0 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34761,8 +34819,8 @@ world } side { - "id" "88005" - "plane" "(464 -712 336) (464 -712 368) (432 -712 368)" + "id" "87111" + "plane" "(464 -880 336) (464 -880 368) (432 -880 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[-1 0 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -34772,10 +34830,10 @@ world } side { - "id" "88004" - "plane" "(432 -712 336) (432 -712 368) (432 -720 368)" + "id" "87110" + "plane" "(432 -880 336) (432 -880 368) (432 -888 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[0 1 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34783,10 +34841,10 @@ world } side { - "id" "88003" - "plane" "(464 -720 336) (464 -720 368) (464 -712 368)" + "id" "87109" + "plane" "(464 -888 336) (464 -888 368) (464 -880 368)" "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -128] 0.25" + "uaxis" "[0 1 0 -96] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34794,10 +34852,10 @@ world } side { - "id" "88002" - "plane" "(464 -712 336) (432 -712 336) (432 -720 336)" + "id" "87108" + "plane" "(432 -888 336) (464 -888 336) (464 -880 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[0 1 0 -48] 0.25" "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34812,35 +34870,35 @@ world } solid { - "id" "248308" + "id" "242813" side { - "id" "88031" - "plane" "(432 -864 64) (432 -768 64) (480 -768 64)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[0 1 0 0] 0.2" - "vaxis" "[1 0 0 0] 0.2" - "rotation" "90" + "id" "87119" + "plane" "(460 -896 368) (432 -896 368) (432 -888 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88030" - "plane" "(432 -768 48) (432 -864 48) (480 -864 48)" + "id" "87118" + "plane" "(432 -896 336) (432 -896 368) (460 -896 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88029" - "plane" "(432 -864 48) (432 -768 48) (432 -768 64)" + "id" "87117" + "plane" "(460 -888 336) (460 -888 368) (432 -888 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34848,10 +34906,10 @@ world } side { - "id" "88028" - "plane" "(480 -768 48) (480 -864 48) (480 -864 64)" + "id" "87116" + "plane" "(432 -888 336) (432 -888 368) (432 -896 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34859,65 +34917,64 @@ world } side { - "id" "88027" - "plane" "(432 -768 48) (480 -768 48) (480 -768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87115" + "plane" "(460 -896 336) (460 -896 368) (460 -888 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 -192] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88026" - "plane" "(480 -864 48) (432 -864 48) (432 -864 64)" + "id" "87114" + "plane" "(432 -896 336) (460 -896 336) (460 -888 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248330" + "id" "242814" side { - "id" "88055" - "plane" "(196 -664 92) (196 -640 92) (380 -640 92)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[1 0 0 0] 0.2" - "vaxis" "[0 -1 0 0] 0.2" + "id" "87125" + "plane" "(464 -904 368) (432 -904 368) (432 -896 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88054" - "plane" "(196 -640 64) (196 -664 64) (380 -664 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "87124" + "plane" "(432 -904 336) (432 -904 368) (464 -904 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88053" - "plane" "(196 -664 64) (196 -640 64) (196 -640 92)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "id" "87123" + "plane" "(464 -896 336) (464 -896 368) (432 -896 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34925,10 +34982,10 @@ world } side { - "id" "88052" - "plane" "(380 -640 64) (380 -664 64) (380 -664 92)" + "id" "87122" + "plane" "(432 -896 336) (432 -896 368) (432 -904 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[0 1 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34936,10 +34993,10 @@ world } side { - "id" "88051" - "plane" "(196 -640 64) (380 -640 64) (380 -640 92)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "87121" + "plane" "(464 -904 336) (464 -904 368) (464 -896 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 -96] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -34947,54 +35004,53 @@ world } side { - "id" "88050" - "plane" "(380 -664 64) (196 -664 64) (196 -664 92)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" - "uaxis" "[1 0 0 0] 0.135" - "vaxis" "[0 0 -1 171] 0.135" + "id" "87120" + "plane" "(432 -904 336) (464 -904 336) (464 -896 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248335" + "id" "242815" side { - "id" "88067" - "plane" "(196 -688 88) (196 -664 88) (380 -664 88)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[1 0 0 0] 0.2" - "vaxis" "[0 -1 0 0] 0.2" + "id" "87131" + "plane" "(460 -912 368) (432 -912 368) (432 -904 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88066" - "plane" "(196 -664 64) (196 -688 64) (380 -688 64)" + "id" "87130" + "plane" "(432 -912 336) (432 -912 368) (460 -912 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88065" - "plane" "(196 -688 64) (196 -664 64) (196 -664 88)" + "id" "87129" + "plane" "(460 -904 336) (460 -904 368) (432 -904 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35002,10 +35058,10 @@ world } side { - "id" "88064" - "plane" "(380 -664 64) (380 -688 64) (380 -688 88)" + "id" "87128" + "plane" "(432 -904 336) (432 -904 368) (432 -912 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35013,65 +35069,64 @@ world } side { - "id" "88063" - "plane" "(196 -664 64) (380 -664 64) (380 -664 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87127" + "plane" "(460 -912 336) (460 -912 368) (460 -904 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 -192] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88062" - "plane" "(380 -688 64) (196 -688 64) (196 -688 88)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" - "uaxis" "[1 0 0 0] 0.135" - "vaxis" "[0 0 -1 142] 0.135" + "id" "87126" + "plane" "(432 -912 336) (460 -912 336) (460 -904 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248337" + "id" "242816" side { - "id" "88079" - "plane" "(196 -712 84) (196 -688 84) (380 -688 84)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[1 0 0 0] 0.2" - "vaxis" "[0 -1 0 0] 0.2" + "id" "87137" + "plane" "(464 -920 368) (432 -920 368) (432 -912 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88078" - "plane" "(196 -688 64) (196 -712 64) (380 -712 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "87136" + "plane" "(432 -920 336) (432 -920 368) (464 -920 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88077" - "plane" "(196 -712 64) (196 -688 64) (196 -688 84)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "id" "87135" + "plane" "(464 -912 336) (464 -912 368) (432 -912 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35079,10 +35134,10 @@ world } side { - "id" "88076" - "plane" "(380 -688 64) (380 -712 64) (380 -712 84)" + "id" "87134" + "plane" "(432 -912 336) (432 -912 368) (432 -920 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[0 1 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35090,10 +35145,10 @@ world } side { - "id" "88075" - "plane" "(196 -688 64) (380 -688 64) (380 -688 84)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "87133" + "plane" "(464 -920 336) (464 -920 368) (464 -912 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 -96] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35101,54 +35156,53 @@ world } side { - "id" "88074" - "plane" "(380 -712 64) (196 -712 64) (196 -712 84)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" - "uaxis" "[1 0 0 0] 0.135" - "vaxis" "[0 0 -1 112] 0.135" + "id" "87132" + "plane" "(432 -920 336) (464 -920 336) (464 -912 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248345" + "id" "242817" side { - "id" "88115" - "plane" "(384 -864 76) (384 -768 76) (400 -768 76)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[0 1 0 0] 0.2" - "vaxis" "[1 0 0 0] 0.2" - "rotation" "90" + "id" "87143" + "plane" "(460 -928 368) (432 -928 368) (432 -920 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88114" - "plane" "(384 -768 64) (384 -864 64) (400 -864 64)" + "id" "87142" + "plane" "(432 -928 336) (432 -928 368) (460 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88113" - "plane" "(384 -864 64) (384 -768 64) (384 -768 76)" + "id" "87141" + "plane" "(460 -920 336) (460 -920 368) (432 -920 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35156,98 +35210,97 @@ world } side { - "id" "88112" - "plane" "(400 -768 64) (400 -864 64) (400 -864 76)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" - "uaxis" "[0 1 0 0] 0.135" - "vaxis" "[0 0 -1 53] 0.135" + "id" "87140" + "plane" "(432 -920 336) (432 -920 368) (432 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88111" - "plane" "(384 -768 64) (400 -768 64) (400 -768 76)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87139" + "plane" "(460 -928 336) (460 -928 368) (460 -920 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 -64] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88110" - "plane" "(400 -864 64) (384 -864 64) (384 -864 76)" + "id" "87138" + "plane" "(432 -928 336) (460 -928 336) (460 -920 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248352" + "id" "242844" side { - "id" "88127" - "plane" "(400 -864 72) (400 -768 72) (416 -768 72)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[0 1 0 0] 0.2" - "vaxis" "[1 0 0 0] 0.2" - "rotation" "90" + "id" "87155" + "plane" "(464 -756 216) (456 -756 216) (456 -704 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88126" - "plane" "(400 -768 64) (400 -864 64) (416 -864 64)" + "id" "87154" + "plane" "(456 -756 64) (456 -756 216) (464 -756 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88125" - "plane" "(400 -864 64) (400 -768 64) (400 -768 72)" + "id" "87153" + "plane" "(464 -704 64) (464 -704 216) (456 -704 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88124" - "plane" "(416 -768 64) (416 -864 64) (416 -864 72)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" - "uaxis" "[0 1 0 0] 0.135" - "vaxis" "[0 0 -1 23] 0.135" + "id" "87152" + "plane" "(456 -704 64) (456 -704 216) (456 -756 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88123" - "plane" "(400 -768 64) (416 -768 64) (416 -768 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" + "id" "87151" + "plane" "(464 -756 64) (464 -756 216) (464 -704 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 1 0 -496] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35255,87 +35308,86 @@ world } side { - "id" "88122" - "plane" "(416 -864 64) (400 -864 64) (400 -864 72)" + "id" "87150" + "plane" "(464 -704 64) (456 -704 64) (456 -756 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248354" + "id" "243000" side { - "id" "88139" - "plane" "(416 -864 68) (416 -768 68) (432 -768 68)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[0 1 0 0] 0.2" - "vaxis" "[1 0 0 0] 0.2" - "rotation" "90" + "id" "87551" + "plane" "(510 -816 274) (464 -816 274) (464 -716 224)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88138" - "plane" "(416 -768 64) (416 -864 64) (432 -864 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "id" "87550" + "plane" "(464 -816 274) (510 -816 274) (510 -816 270)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -88] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88137" - "plane" "(416 -864 64) (416 -768 64) (416 -768 68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87549" + "plane" "(464 -716 220) (510 -716 220) (510 -716 224)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88136" - "plane" "(432 -768 64) (432 -864 64) (432 -864 68)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" - "uaxis" "[0 1 0 0] 0.135" - "vaxis" "[0 0 -1 506] 0.135" + "id" "87548" + "plane" "(510 -816 270) (510 -816 274) (510 -716 224)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0.447214 0.8 -0.4 -205] 0.125" + "vaxis" "[0 -0.447214 -0.894427 66] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88135" - "plane" "(416 -768 64) (432 -768 64) (432 -768 68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87547" + "plane" "(510 -716 220) (464 -716 220) (464 -816 270)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 0.6 -0.8 154.032] 0.125" + "vaxis" "[-1 0 0 13.4468] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88134" - "plane" "(432 -864 64) (416 -864 64) (416 -864 68)" + "id" "87546" + "plane" "(464 -716 220) (464 -716 224) (464 -816 274)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35343,230 +35395,227 @@ world } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248384" + "id" "243002" side { - "id" "88157" - "plane" "(384 -764 64) (392 -764 64) (392 -640 64)" + "id" "87563" + "plane" "(502 -908 208) (464 -908 208) (464 -724 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 56] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88156" - "plane" "(384 -640 64) (384 -640 104) (384 -764 88)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87562" + "plane" "(464 -908 208) (502 -908 208) (502 -908 192)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[-1 0 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88155" - "plane" "(392 -764 64) (392 -764 88) (392 -640 104)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87561" + "plane" "(464 -724 192) (502 -724 192) (502 -724 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[-1 0 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88154" - "plane" "(392 -640 64) (392 -640 104) (384 -640 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87560" + "plane" "(502 -908 192) (502 -908 208) (502 -724 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 1 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88153" - "plane" "(384 -764 64) (384 -764 88) (392 -764 88)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87559" + "plane" "(502 -724 192) (464 -724 192) (464 -908 192)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 208] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88152" - "plane" "(384 -640 104) (392 -640 104) (392 -764 88)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "87558" + "plane" "(464 -724 192) (464 -724 208) (464 -908 208)" + "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" "0 158 183" - "visgroupid" "23" + "color" "0 103 232" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248387" + "id" "243003" side { - "id" "88169" - "plane" "(440 -764 64) (448 -764 64) (448 -640 64)" + "id" "87569" + "plane" "(510 -916 216) (464 -916 216) (464 -716 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 56] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88168" - "plane" "(440 -640 64) (440 -640 104) (440 -764 88)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87568" + "plane" "(464 -916 216) (510 -916 216) (502 -908 212)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88167" - "plane" "(448 -764 64) (448 -764 88) (448 -640 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87567" + "plane" "(510 -716 216) (464 -716 216) (464 -724 212)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88166" - "plane" "(448 -640 64) (448 -640 104) (440 -640 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87566" + "plane" "(502 -908 212) (510 -916 216) (510 -716 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88165" - "plane" "(440 -764 64) (440 -764 88) (448 -764 88)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87565" + "plane" "(502 -724 212) (464 -724 212) (464 -908 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88164" - "plane" "(440 -640 104) (448 -640 104) (448 -764 88)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "87564" + "plane" "(464 -716 216) (464 -916 216) (464 -908 212)" + "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" "0 158 183" - "visgroupid" "23" + "color" "0 173 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248404" + "id" "243004" side { - "id" "88211" - "plane" "(440 -756 64) (440 -648 64) (392 -648 64)" + "id" "87575" + "plane" "(510 -916 220) (464 -916 220) (464 -716 220)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[1 0 0 56] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88210" - "plane" "(392 -648 100.004) (392 -756 86.0682) (392 -756 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87574" + "plane" "(464 -916 220) (510 -916 220) (510 -916 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88209" - "plane" "(440 -756 86.0659) (440 -648 100) (440 -648 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87573" + "plane" "(510 -716 216) (510 -716 220) (464 -716 220)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88208" - "plane" "(440 -648 100) (440 -756 86.0659) (392 -756 86.0682)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "87572" + "plane" "(510 -916 216) (510 -916 220) (510 -716 220)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88207" - "plane" "(392 -756 64) (392 -756 86.0682) (440 -756 86.0659)" + "id" "87571" + "plane" "(510 -716 216) (464 -716 216) (464 -916 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88206" - "plane" "(440 -648 64) (440 -648 100) (392 -648 100.004)" + "id" "87570" + "plane" "(464 -716 216) (464 -716 220) (464 -916 220)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35574,76 +35623,75 @@ world } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 151 144" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248405" + "id" "243005" side { - "id" "88217" - "plane" "(392 -640 64) (392 -648 64) (440 -648 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "87581" + "plane" "(510 -916 224) (464 -916 224) (464 -816 274)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88216" - "plane" "(392 -648 64) (392 -640 64) (392 -640 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87580" + "plane" "(464 -816 270) (510 -816 270) (510 -816 274)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -88] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88215" - "plane" "(440 -640 104) (440 -640 64) (440 -648 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87579" + "plane" "(464 -916 224) (510 -916 224) (510 -916 220)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88214" - "plane" "(392 -640 104) (392 -640 64) (440 -640 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87578" + "plane" "(510 -916 220) (510 -916 224) (510 -816 274)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0.447214 -0.8 -0.4 358] 0.125" + "vaxis" "[0 0.447214 -0.894427 274] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88213" - "plane" "(392 -648 102.968) (392 -640 104) (440 -640 104)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "87577" + "plane" "(510 -816 270) (464 -816 270) (464 -916 220)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 -0.6 -0.8 256.231] 0.125" + "vaxis" "[-1 0 0 -497.372] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88212" - "plane" "(440 -648 102.969) (440 -648 64) (392 -648 64)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "id" "87576" + "plane" "(464 -816 270) (464 -816 274) (464 -916 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35651,76 +35699,64 @@ world } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248406" + "id" "243040" side { - "id" "88223" - "plane" "(392 -756 64) (392 -764 64) (440 -764 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" - "rotation" "0" + "id" "87593" + "plane" "(464 -916 220) (464 -816 270) (506 -816 270)" + "material" "WOOD/MILROOF001" + "uaxis" "[-1 0 0 -233] 0.25" + "vaxis" "[0 -1 0 123] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88222" - "plane" "(392 -764 88) (392 -764 64) (392 -756 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "87592" + "plane" "(506 -716 220) (506 -816 270) (464 -816 270)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -88] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88221" - "plane" "(440 -756 64) (440 -764 64) (440 -764 88)" + "id" "87591" + "plane" "(506 -916 220) (506 -716 220) (464 -716 220)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "88220" - "plane" "(440 -764 88) (440 -764 64) (392 -764 64)" - "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88219" - "plane" "(392 -764 88) (392 -756 89.0322) (440 -756 89.0323)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "87590" + "plane" "(506 -916 220) (506 -816 270) (506 -716 220)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 -1 0 208] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88218" - "plane" "(392 -756 89.0273) (392 -756 64) (440 -756 64)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "id" "87588" + "plane" "(464 -816 270) (464 -916 220) (464 -716 220)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35728,54 +35764,53 @@ world } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 218 255" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248409" + "id" "240364" side { - "id" "88235" - "plane" "(384 -892 80) (384 -868 80) (448 -868 80)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[1 0 0 0] 0.2" - "vaxis" "[0 -1 0 280] 0.2" + "id" "86918" + "plane" "(2752 32 192) (2752 168 192) (2760 168 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88234" - "plane" "(384 -868 64) (384 -892 64) (448 -892 64)" + "id" "86917" + "plane" "(2752 168 96) (2752 32 96) (2760 32 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88233" - "plane" "(384 -892 64) (384 -868 64) (384 -868 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "86916" + "plane" "(2752 32 96) (2752 168 96) (2752 168 192)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88232" - "plane" "(448 -868 64) (448 -892 64) (448 -892 80)" + "id" "86915" + "plane" "(2760 168 96) (2760 32 96) (2760 32 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35783,21 +35818,21 @@ world } side { - "id" "88231" - "plane" "(384 -868 64) (448 -868 64) (448 -868 80)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" - "uaxis" "[1 0 0 0] 0.135" - "vaxis" "[0 0 -1 83] 0.135" + "id" "86914" + "plane" "(2760 32 96) (2752 32 96) (2752 32 192)" + "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" "88230" - "plane" "(448 -892 64) (384 -892 64) (384 -892 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" + "id" "86913" + "plane" "(2752 168 96) (2760 168 96) (2760 168 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35805,54 +35840,53 @@ world } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248413" + "id" "240365" side { - "id" "88247" - "plane" "(288 -928 96) (288 -896 96) (448 -896 96)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[1 0 0 0] 0.2" - "vaxis" "[0 1 0 0] 0.2" + "id" "86924" + "plane" "(2752 168 192) (2752 200 192) (2760 200 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88246" - "plane" "(288 -896 80) (288 -928 80) (448 -928 80)" + "id" "86923" + "plane" "(2752 200 160) (2752 168 160) (2760 168 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88245" - "plane" "(288 -928 80) (288 -896 80) (288 -896 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "86922" + "plane" "(2752 168 160) (2752 200 160) (2752 200 192)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88244" - "plane" "(448 -896 80) (448 -928 80) (448 -928 96)" + "id" "86921" + "plane" "(2760 200 160) (2760 168 160) (2760 168 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35860,21 +35894,21 @@ world } side { - "id" "88243" - "plane" "(288 -896 80) (448 -896 80) (448 -896 96)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" - "uaxis" "[1 0 0 0] 0.135" - "vaxis" "[0 0 -1 212] 0.135" + "id" "86920" + "plane" "(2752 200 160) (2760 200 160) (2760 200 192)" + "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" "88242" - "plane" "(448 -928 80) (288 -928 80) (288 -928 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" + "id" "86919" + "plane" "(2760 168 160) (2752 168 160) (2752 168 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35882,53 +35916,53 @@ world } editor { - "color" "0 158 183" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248466" + "id" "240866" side { - "id" "88351" - "plane" "(196 -840 80) (196 -712 80) (288 -712 80)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[1 0 0 0] 0.2" - "vaxis" "[0 -1 0 280] 0.2" + "id" "86936" + "plane" "(2728 168 128) (2728 208 128) (2752 208 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88350" - "plane" "(288 -712 64) (196 -712 64) (196 -840 64)" + "id" "86935" + "plane" "(2728 208 96) (2728 168 96) (2752 168 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88349" - "plane" "(196 -840 64) (196 -712 64) (196 -712 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "86934" + "plane" "(2728 168 96) (2728 208 96) (2728 208 128)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 -162.766] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88348" - "plane" "(196 -712 64) (288 -712 64) (288 -712 80)" + "id" "86933" + "plane" "(2752 208 96) (2752 168 96) (2752 168 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -35936,20 +35970,20 @@ world } side { - "id" "88347" - "plane" "(288 -712 64) (288 -840 64) (288 -840 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "86932" + "plane" "(2752 168 96) (2728 168 96) (2728 168 128)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 127] 0.188" + "vaxis" "[0 0 -1 339] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88346" - "plane" "(288 -840 64) (196 -840 64) (196 -840 80)" - "material" "TOOLS/TOOLSNODRAW" + "id" "86931" + "plane" "(2728 208 96) (2752 208 96) (2752 208 128)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -35958,54 +35992,42 @@ world } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248467" - side - { - "id" "88357" - "plane" "(384 -768 80) (384 -892 80) (288 -892 80)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[1 0 0 0] 0.2" - "vaxis" "[0 -1 0 280] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "240875" side { - "id" "88356" - "plane" "(288 -768 64) (288 -892 64) (384 -892 64)" + "id" "86941" + "plane" "(2544 208 96) (2544 144 96) (2728 144 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88355" - "plane" "(384 -768 64) (384 -892 64) (384 -892 80)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" - "uaxis" "[0 1 0 0] 0.135" - "vaxis" "[0 0 -1 83] 0.135" + "id" "86940" + "plane" "(2544 144 96) (2544 208 96) (2544 208 128)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88354" - "plane" "(384 -892 64) (288 -892 64) (288 -892 80)" + "id" "86939" + "plane" "(2544 208 128) (2544 208 96) (2728 208 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36013,21 +36035,21 @@ world } side { - "id" "88353" - "plane" "(288 -892 64) (288 -768 64) (288 -768 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "86938" + "plane" "(2728 144 96) (2544 144 96) (2544 208 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 -1 0 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88352" - "plane" "(288 -768 64) (384 -768 64) (384 -768 80)" + "id" "86937" + "plane" "(2728 208 128) (2728 208 96) (2728 144 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36035,7 +36057,7 @@ world } editor { - "color" "0 158 183" + "color" "0 217 190" "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" @@ -36043,46 +36065,46 @@ world } solid { - "id" "248475" + "id" "240881" side { - "id" "88368" - "plane" "(236 -840 80) (288 -840 80) (288 -892 80)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[1 0 0 0] 0.2" - "vaxis" "[0 -1 0 280] 0.2" + "id" "86951" + "plane" "(2728 144 96) (2752 144 96) (2752 168 96)" + "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" "88367" - "plane" "(288 -892 64) (288 -840 64) (236 -840 64)" + "id" "86950" + "plane" "(2752 168 96) (2752 144 96) (2752 168 108)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88366" - "plane" "(288 -840 64) (288 -892 64) (288 -892 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "86949" + "plane" "(2752 144 96) (2728 144 96) (2728 168 108)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 -1 0 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88365" - "plane" "(236 -840 64) (288 -840 64) (288 -840 80)" + "id" "86948" + "plane" "(2728 144 96) (2728 168 96) (2728 168 108)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36090,10 +36112,10 @@ world } side { - "id" "88364" - "plane" "(288 -892 64) (236 -840 64) (236 -840 80)" + "id" "86947" + "plane" "(2728 168 96) (2752 168 96) (2752 168 108)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36101,54 +36123,53 @@ world } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 217 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248478" + "id" "215322" side { - "id" "88416" - "plane" "(192 -814 184) (192 -746 184) (193 -746 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -40] 0.25" + "id" "81207" + "plane" "(2752 768 128) (2752 208 128) (2176 208 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 -1 0 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88415" - "plane" "(192 -746 80) (192 -814 80) (193 -814 80)" + "id" "81206" + "plane" "(2752 208 96) (2752 768 96) (2176 768 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 -40] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88414" - "plane" "(192 -814 80) (192 -746 80) (192 -746 184)" + "id" "81205" + "plane" "(2176 768 128) (2176 208 128) (2176 208 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 40] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88413" - "plane" "(193 -746 80) (193 -814 80) (193 -814 184)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 8] 0.25" + "id" "81204" + "plane" "(2752 208 128) (2752 768 128) (2752 768 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36156,75 +36177,76 @@ world } side { - "id" "88412" - "plane" "(192 -746 80) (193 -746 80) (193 -746 184)" + "id" "81203" + "plane" "(2752 768 128) (2176 768 128) (2176 768 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88411" - "plane" "(193 -814 80) (192 -814 80) (192 -814 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "81202" + "plane" "(2176 208 128) (2752 208 128) (2752 208 96)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248479" + "id" "215949" side { - "id" "88422" - "plane" "(192 -746 192) (192 -738 192) (200 -738 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" + "id" "81237" + "plane" "(2544 208 120) (2544 192 120) (2240 192 120)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 -1 0 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88421" - "plane" "(192 -738 80) (192 -746 80) (200 -746 80)" + "id" "81236" + "plane" "(2544 192 96) (2544 208 96) (2240 208 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 -40] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88420" - "plane" "(192 -746 80) (192 -738 80) (192 -738 192)" + "id" "81235" + "plane" "(2240 208 120) (2240 192 120) (2240 192 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 40] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88419" - "plane" "(200 -738 80) (200 -746 80) (200 -746 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 8] 0.25" + "id" "81234" + "plane" "(2544 192 120) (2544 208 120) (2544 208 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36232,9 +36254,9 @@ world } side { - "id" "88418" - "plane" "(192 -738 80) (200 -738 80) (200 -738 192)" - "material" "DEV/REFLECTIVITY_30B" + "id" "81233" + "plane" "(2544 208 120) (2240 208 120) (2240 208 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -36243,64 +36265,65 @@ world } side { - "id" "88417" - "plane" "(200 -746 80) (192 -746 80) (192 -746 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "81232" + "plane" "(2240 192 120) (2544 192 120) (2544 192 96)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248480" + "id" "215952" side { - "id" "88428" - "plane" "(192 -810 192) (192 -746 192) (200 -746 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" + "id" "81249" + "plane" "(2544 192 112) (2544 176 112) (2240 176 112)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 -1 0 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88427" - "plane" "(192 -746 184) (192 -810 184) (200 -810 184)" - "material" "DEV/REFLECTIVITY_30B" + "id" "81248" + "plane" "(2544 176 96) (2544 192 96) (2240 192 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88426" - "plane" "(192 -810 184) (192 -746 184) (192 -746 192)" + "id" "81247" + "plane" "(2240 192 112) (2240 176 112) (2240 176 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 8] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88425" - "plane" "(200 -746 184) (200 -810 184) (200 -810 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 8] 0.25" + "id" "81246" + "plane" "(2544 176 112) (2544 192 112) (2544 192 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36308,52 +36331,53 @@ world } side { - "id" "88424" - "plane" "(192 -746 184) (200 -746 184) (200 -746 192)" + "id" "81245" + "plane" "(2544 192 112) (2240 192 112) (2240 192 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88423" - "plane" "(200 -810 184) (192 -810 184) (192 -810 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "81244" + "plane" "(2240 176 112) (2544 176 112) (2544 176 96)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "248528" + "id" "215954" side { - "id" "88434" - "plane" "(288 -1472 96) (440.405 -964 96) (472.4 -964 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "81261" + "plane" "(2544 176 104) (2544 160 104) (2240 160 104)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 -1 0 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88433" - "plane" "(440.402 -964 0) (288 -1472 0) (320 -1472 0)" - "material" "DEV/REFLECTIVITY_50B" + "id" "81260" + "plane" "(2544 160 96) (2544 176 96) (2240 176 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -36362,20 +36386,20 @@ world } side { - "id" "88432" - "plane" "(288 -1472 0) (440.398 -964 0) (440.4 -964 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "81259" + "plane" "(2240 176 104) (2240 160 104) (2240 160 96)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88431" - "plane" "(472.399 -964 0) (320 -1472 0) (320 -1472 96)" - "material" "DEV/REFLECTIVITY_50B" + "id" "81258" + "plane" "(2544 160 104) (2544 176 104) (2544 176 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -36384,9 +36408,9 @@ world } side { - "id" "88430" - "plane" "(320 -1472 0) (288 -1472 0) (288 -1472 96)" - "material" "DEV/REFLECTIVITY_50B" + "id" "81257" + "plane" "(2544 176 104) (2240 176 104) (2240 176 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -36395,64 +36419,65 @@ world } side { - "id" "88429" - "plane" "(440.402 -964 0) (472.4 -964 0) (472.402 -964 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "81256" + "plane" "(2240 160 104) (2544 160 104) (2544 160 96)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242794" + "id" "189277" side { - "id" "86963" - "plane" "(464 -928 216) (448 -928 216) (448 -876 216)" + "id" "65294" + "plane" "(2176 768 64) (2176 960 64) (2048 960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86962" - "plane" "(448 -928 64) (448 -928 216) (464 -928 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "65293" + "plane" "(2048 768 256) (2048 768 64) (2048 960 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86961" - "plane" "(464 -876 64) (464 -876 216) (448 -876 216)" + "id" "65292" + "plane" "(2176 960 256) (2176 960 64) (2176 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86960" - "plane" "(448 -876 64) (448 -876 216) (448 -928 216)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "65291" + "plane" "(2048 960 256) (2048 960 64) (2176 960 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36460,10 +36485,10 @@ world } side { - "id" "86959" - "plane" "(464 -928 64) (464 -928 216) (464 -876 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 1 0 304] 0.25" + "id" "65290" + "plane" "(2176 768 256) (2176 768 64) (2048 768 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.988011 0.154377 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36471,42 +36496,53 @@ world } side { - "id" "86958" - "plane" "(464 -876 64) (448 -876 64) (448 -928 64)" + "id" "65289" + "plane" "(2048 768 256) (2048 960 256) (2176 960 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 120" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242805" + "id" "189306" side { - "id" "87071" - "plane" "(464 -840 368) (432 -840 368) (432 -832 368)" + "id" "65301" + "plane" "(1664 448 320) (1664 672 320) (1728 672 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87070" - "plane" "(432 -840 336) (432 -840 368) (464 -840 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" + "id" "65300" + "plane" "(1664 672 64) (1664 448 64) (1856 448 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" "65299" + "plane" "(1664 448 64) (1664 448 320) (1856 448 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36514,10 +36550,10 @@ world } side { - "id" "87069" - "plane" "(464 -832 336) (464 -832 368) (432 -832 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" + "id" "65298" + "plane" "(1728 672 64) (1728 672 320) (1664 672 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36525,10 +36561,10 @@ world } side { - "id" "87068" - "plane" "(432 -832 336) (432 -832 368) (432 -840 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "id" "65297" + "plane" "(1856 448 64) (1856 448 320) (1856 544 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36536,10 +36572,10 @@ world } side { - "id" "87067" - "plane" "(464 -840 336) (464 -840 368) (464 -832 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -96] 0.25" + "id" "65296" + "plane" "(1664 672 64) (1664 672 320) (1664 448 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36547,194 +36583,195 @@ world } side { - "id" "87066" - "plane" "(432 -840 336) (464 -840 336) (464 -832 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "65295" + "plane" "(1856 544 64) (1856 544 320) (1728 672 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242806" + "id" "189350" side { - "id" "87077" - "plane" "(460 -832 368) (432 -832 368) (432 -824 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "65368" + "plane" "(2208 64 144) (2208 160 144) (2224 160 144)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87076" - "plane" "(432 -832 336) (432 -832 368) (460 -832 368)" + "id" "65369" + "plane" "(2208 160 96) (2208 64 96) (2224 64 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87075" - "plane" "(460 -824 336) (460 -824 368) (432 -824 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "65370" + "plane" "(2208 64 96) (2208 160 96) (2208 160 144)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0 1 0 -5] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87074" - "plane" "(432 -824 336) (432 -824 368) (432 -832 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "65371" + "plane" "(2224 160 96) (2224 64 96) (2224 64 144)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0 1 0 -5] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87073" - "plane" "(460 -832 336) (460 -832 368) (460 -824 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 192] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "65372" + "plane" "(2208 160 96) (2224 160 96) (2224 160 144)" + "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" "87072" - "plane" "(432 -832 336) (460 -832 336) (460 -824 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "65373" + "plane" "(2224 64 96) (2208 64 96) (2208 64 144)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 233 178" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242807" + "id" "182082" side { - "id" "87083" - "plane" "(460 -848 368) (432 -848 368) (432 -840 368)" + "id" "62920" + "plane" "(448 -2304 256) (512 -2304 256) (512 -2308 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87082" - "plane" "(432 -848 336) (432 -848 368) (460 -848 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62921" + "plane" "(448 -2308 252) (512 -2308 252) (512 -2304 252)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 -116] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87081" - "plane" "(460 -840 336) (460 -840 368) (432 -840 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62922" + "plane" "(448 -2304 256) (448 -2308 256) (448 -2308 252)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -116] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87080" - "plane" "(432 -840 336) (432 -840 368) (432 -848 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62923" + "plane" "(512 -2304 252) (512 -2308 252) (512 -2308 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -116] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87079" - "plane" "(460 -848 336) (460 -848 368) (460 -840 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 -192] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "62924" + "plane" "(512 -2304 256) (448 -2304 256) (448 -2304 252)" + "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" "87078" - "plane" "(432 -848 336) (460 -848 336) (460 -840 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "62925" + "plane" "(512 -2308 252) (448 -2308 252) (448 -2308 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -116] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 208 113" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242808" + "id" "179969" side { - "id" "87089" - "plane" "(464 -856 368) (432 -856 368) (432 -848 368)" + "id" "62451" + "plane" "(496 -2296 376) (488 -2296 384) (472 -2296 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87088" - "plane" "(432 -856 336) (432 -856 368) (464 -856 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" + "id" "62450" + "plane" "(464 -2304 376) (472 -2304 384) (488 -2304 384)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36742,21 +36779,32 @@ world } side { - "id" "87087" - "plane" "(464 -848 336) (464 -848 368) (432 -848 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62449" + "plane" "(464 -2304 376) (464 -2296 376) (472 -2296 384)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 133] 0.25" + "vaxis" "[0 -1 0 91] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87086" - "plane" "(432 -848 336) (432 -848 368) (432 -856 368)" + "id" "62448" + "plane" "(496 -2296 376) (496 -2304 376) (488 -2304 384)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 133] 0.25" + "vaxis" "[0 -1 0 91] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62447" + "plane" "(464 -2304 336) (464 -2296 336) (464 -2296 376)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36764,10 +36812,10 @@ world } side { - "id" "87085" - "plane" "(464 -856 336) (464 -856 368) (464 -848 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -96] 0.25" + "id" "62446" + "plane" "(496 -2296 336) (496 -2304 336) (496 -2304 376)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36775,42 +36823,54 @@ world } side { - "id" "87084" - "plane" "(432 -856 336) (464 -856 336) (464 -848 336)" + "id" "62445" + "plane" "(464 -2296 336) (464 -2304 336) (496 -2304 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62444" + "plane" "(472 -2304 384) (472 -2296 384) (488 -2296 384)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 133] 0.25" + "vaxis" "[0 -1 0 91] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 228 117" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242809" + "id" "179982" side { - "id" "87095" - "plane" "(460 -864 368) (432 -864 368) (432 -856 368)" + "id" "62469" + "plane" "(448 -2296 336) (424 -2296 336) (408 -2296 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87094" - "plane" "(432 -864 336) (432 -864 368) (460 -864 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "62468" + "plane" "(408.016 -2304 320) (424.016 -2304 336) (448 -2304 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36818,75 +36878,76 @@ world } side { - "id" "87093" - "plane" "(460 -856 336) (460 -856 368) (432 -856 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62467" + "plane" "(424.012 -2304 336) (408.012 -2304 320) (408 -2296 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 133] 0.25" + "vaxis" "[0 -1 0 91] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87092" - "plane" "(432 -856 336) (432 -856 368) (432 -864 368)" + "id" "62466" + "plane" "(448 -2296 320) (408 -2296 320) (408.012 -2304 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87091" - "plane" "(460 -864 336) (460 -864 368) (460 -856 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 -192] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "62465" + "plane" "(448 -2304 336) (424.012 -2304 336) (424 -2296 336)" + "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" "87090" - "plane" "(432 -864 336) (460 -864 336) (460 -856 336)" + "id" "62464" + "plane" "(448 -2296 336) (448 -2296 320) (448 -2304 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 174 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242810" + "id" "179985" side { - "id" "87101" - "plane" "(464 -872 368) (432 -872 368) (432 -864 368)" + "id" "62475" + "plane" "(551.988 -2296 320) (536 -2296 336) (512 -2296 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87100" - "plane" "(432 -872 336) (432 -872 368) (464 -872 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" + "id" "62474" + "plane" "(535.987 -2304 336) (551.98 -2304 320) (512 -2304 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -36894,73 +36955,74 @@ world } side { - "id" "87099" - "plane" "(464 -864 336) (464 -864 368) (432 -864 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62473" + "plane" "(536 -2296 336) (552 -2296 320) (551.98 -2304 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[-1 0 0 133] 0.25" + "vaxis" "[0 -1 0 91] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87098" - "plane" "(432 -864 336) (432 -864 368) (432 -872 368)" + "id" "62472" + "plane" "(551.988 -2296 320) (512 -2296 320) (512 -2304 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87097" - "plane" "(464 -872 336) (464 -872 368) (464 -864 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -96] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62471" + "plane" "(535.988 -2304 336) (512 -2304 336) (512 -2296 336)" + "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" "87096" - "plane" "(432 -872 336) (464 -872 336) (464 -864 336)" + "id" "62470" + "plane" "(512 -2304 336) (512 -2304 320) (512 -2296 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 174 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242811" + "id" "179987" side { - "id" "87107" - "plane" "(460 -880 368) (432 -880 368) (432 -872 368)" + "id" "62487" + "plane" "(512 -2296 256) (512 -2304 256) (616 -2304 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87106" - "plane" "(432 -880 336) (432 -880 368) (460 -880 368)" + "id" "62486" + "plane" "(616 -2296 256) (552 -2296 320) (512 -2296 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -36970,9 +37032,9 @@ world } side { - "id" "87105" - "plane" "(460 -872 336) (460 -872 368) (432 -872 368)" - "material" "TOOLS/TOOLSNODRAW" + "id" "62485" + "plane" "(512 -2304 256) (512 -2304 320) (551.996 -2304 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -36981,75 +37043,76 @@ world } side { - "id" "87104" - "plane" "(432 -872 336) (432 -872 368) (432 -880 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62484" + "plane" "(551.996 -2304 320) (552 -2296 320) (616 -2296 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[-1 0 0 133] 0.25" + "vaxis" "[0 -1 0 91] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87103" - "plane" "(460 -880 336) (460 -880 368) (460 -872 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 -192] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "62483" + "plane" "(512 -2296 320) (512 -2304 320) (512 -2304 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87102" - "plane" "(432 -880 336) (460 -880 336) (460 -872 336)" + "id" "62482" + "plane" "(512 -2304 320) (512 -2296 320) (552 -2296 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 106 211" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242812" + "id" "179995" side { - "id" "87113" - "plane" "(464 -888 368) (432 -888 368) (432 -880 368)" + "id" "62505" + "plane" "(512 -2296 336) (512 -2304 336) (496 -2304 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87112" - "plane" "(432 -888 336) (432 -888 368) (464 -888 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62504" + "plane" "(512 -2304 316) (512 -2296 316) (496 -2296 324)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 -174] 0.25" + "vaxis" "[0 -1 0 38] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87111" - "plane" "(464 -880 336) (464 -880 368) (432 -880 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" + "id" "62503" + "plane" "(496 -2304 336) (496 -2304 324) (496 -2296 324)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -37057,10 +37120,10 @@ world } side { - "id" "87110" - "plane" "(432 -880 336) (432 -880 368) (432 -888 368)" + "id" "62502" + "plane" "(512 -2304 316) (512 -2304 336) (512 -2296 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -37068,10 +37131,10 @@ world } side { - "id" "87109" - "plane" "(464 -888 336) (464 -888 368) (464 -880 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -96] 0.25" + "id" "62501" + "plane" "(496 -2296 336) (496 -2296 324) (512 -2296 316)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -37079,53 +37142,53 @@ world } side { - "id" "87108" - "plane" "(432 -888 336) (464 -888 336) (464 -880 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "62500" + "plane" "(496 -2304 324) (496 -2304 336) (512 -2304 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0.8 0.447214 -0.4 254.721] 0.25" + "vaxis" "[0.447214 0 0.894427 39.5508] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 255 108" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242813" + "id" "179997" side { - "id" "87119" - "plane" "(460 -896 368) (432 -896 368) (432 -888 368)" + "id" "62517" + "plane" "(464 -2296 336) (464 -2304 336) (448 -2304 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87118" - "plane" "(432 -896 336) (432 -896 368) (460 -896 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62516" + "plane" "(464 -2304 324) (464 -2296 324) (448 -2296 316)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 -174] 0.25" + "vaxis" "[0 -1 0 38] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87117" - "plane" "(460 -888 336) (460 -888 368) (432 -888 368)" + "id" "62515" + "plane" "(448 -2304 336) (448 -2304 316) (448 -2296 316)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -37133,10 +37196,10 @@ world } side { - "id" "87116" - "plane" "(432 -888 336) (432 -888 368) (432 -896 368)" + "id" "62514" + "plane" "(464 -2304 324) (464 -2304 336) (464 -2296 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -37144,64 +37207,64 @@ world } side { - "id" "87115" - "plane" "(460 -896 336) (460 -896 368) (460 -888 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 -192] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "62513" + "plane" "(448 -2296 336) (448 -2296 316) (464 -2296 324)" + "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" "87114" - "plane" "(432 -896 336) (460 -896 336) (460 -888 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "62512" + "plane" "(448 -2304 316) (448 -2304 336) (464 -2304 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0.8 -0.447214 0.4 -90.7202] 0.25" + "vaxis" "[-0.447214 0 0.894427 220.852] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 255 108" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242814" + "id" "180001" side { - "id" "87125" - "plane" "(464 -904 368) (432 -904 368) (432 -896 368)" + "id" "62523" + "plane" "(480 -2296 336) (480 -2304 336) (464 -2304 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87124" - "plane" "(432 -904 336) (432 -904 368) (464 -904 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62522" + "plane" "(480 -2304 326) (480 -2296 326) (464 -2296 324)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 -174] 0.25" + "vaxis" "[0 -1 0 38] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87123" - "plane" "(464 -896 336) (464 -896 368) (432 -896 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" + "id" "62521" + "plane" "(464 -2296 336) (464 -2304 336) (464 -2304 324)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -37209,10 +37272,10 @@ world } side { - "id" "87122" - "plane" "(432 -896 336) (432 -896 368) (432 -904 368)" + "id" "62520" + "plane" "(480 -2296 336) (464 -2296 336) (464 -2296 324)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -37220,64 +37283,64 @@ world } side { - "id" "87121" - "plane" "(464 -904 336) (464 -904 368) (464 -896 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -96] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62519" + "plane" "(464 -2304 336) (480 -2304 336) (480 -2304 326)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0.984615 -0.124035 0.123077 -168.058] 0.25" + "vaxis" "[-0.124035 0 0.992278 6.2168] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87120" - "plane" "(432 -904 336) (464 -904 336) (464 -896 336)" + "id" "62518" + "plane" "(480 -2304 336) (480 -2296 336) (480 -2296 326)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 255 108" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242815" + "id" "180002" side { - "id" "87131" - "plane" "(460 -912 368) (432 -912 368) (432 -904 368)" + "id" "62529" + "plane" "(496 -2304 336) (480 -2304 336) (480 -2296 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87130" - "plane" "(432 -912 336) (432 -912 368) (460 -912 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62528" + "plane" "(496 -2296 324) (480 -2296 326) (480 -2304 326)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 -174] 0.25" + "vaxis" "[0 -1 0 38] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87129" - "plane" "(460 -904 336) (460 -904 368) (432 -904 368)" + "id" "62527" + "plane" "(496 -2304 336) (496 -2296 336) (496 -2296 324)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -37285,10 +37348,10 @@ world } side { - "id" "87128" - "plane" "(432 -904 336) (432 -904 368) (432 -912 368)" + "id" "62526" + "plane" "(496 -2296 336) (480 -2296 336) (480 -2296 326)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -37296,75 +37359,75 @@ world } side { - "id" "87127" - "plane" "(460 -912 336) (460 -912 368) (460 -904 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 -192] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "62525" + "plane" "(480 -2304 336) (496 -2304 336) (496 -2304 324)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0.984615 0.124035 -0.123077 135.135] 0.25" + "vaxis" "[0.124035 0 0.992278 41.9238] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87126" - "plane" "(432 -912 336) (460 -912 336) (460 -904 336)" + "id" "62524" + "plane" "(480 -2296 336) (480 -2304 336) (480 -2304 326)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 255 108" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242816" + "id" "180032" side { - "id" "87137" - "plane" "(464 -920 368) (432 -920 368) (432 -912 368)" + "id" "62541" + "plane" "(448 -2288 336) (512 -2288 336) (512 -2296 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87136" - "plane" "(432 -920 336) (432 -920 368) (464 -920 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62540" + "plane" "(512 -2296 256) (512 -2296 336) (512 -2288 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87135" - "plane" "(464 -912 336) (464 -912 368) (432 -912 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62539" + "plane" "(448 -2288 256) (512 -2288 256) (512 -2288 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87134" - "plane" "(432 -912 336) (432 -912 368) (432 -920 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "id" "62538" + "plane" "(448 -2296 336) (512 -2296 336) (512 -2296 256)" + "material" "TEROUST/ARPEGGIO/WOOD/SHUTTERS" + "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -37372,64 +37435,65 @@ world } side { - "id" "87133" - "plane" "(464 -920 336) (464 -920 368) (464 -912 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -96] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62537" + "plane" "(448 -2296 256) (512 -2296 256) (512 -2288 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87132" - "plane" "(432 -920 336) (464 -920 336) (464 -912 336)" + "id" "62536" + "plane" "(448 -2288 256) (448 -2288 336) (448 -2296 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 246 183" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242817" + "id" "180103" side { - "id" "87143" - "plane" "(460 -928 368) (432 -928 368) (432 -920 368)" + "id" "62643" + "plane" "(476 -2176 384) (480 -2176 384) (480 -2296 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87142" - "plane" "(432 -928 336) (432 -928 368) (460 -928 368)" + "id" "62642" + "plane" "(348 -2296 256) (352 -2296 256) (352 -2176 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87141" - "plane" "(460 -920 336) (460 -920 368) (432 -920 368)" + "id" "62641" + "plane" "(348 -2176 256) (352 -2176 256) (480 -2176 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -37437,10 +37501,10 @@ world } side { - "id" "87140" - "plane" "(432 -920 336) (432 -920 368) (432 -928 368)" + "id" "62640" + "plane" "(352 -2296 256) (348 -2296 256) (476 -2296 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -37448,478 +37512,456 @@ world } side { - "id" "87139" - "plane" "(460 -928 336) (460 -928 368) (460 -920 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 -64] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "62639" + "plane" "(348 -2296 256) (348 -2176 256) (476 -2176 384)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[0 1 0 247] 0.25" + "vaxis" "[0 0 -1 416] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87138" - "plane" "(432 -928 336) (460 -928 336) (460 -920 336)" + "id" "62638" + "plane" "(352 -2176 256) (352 -2296 256) (480 -2296 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 109 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "242844" + "id" "180106" side { - "id" "87155" - "plane" "(464 -756 216) (456 -756 216) (456 -704 216)" + "id" "62655" + "plane" "(484 -2296 384) (480 -2296 384) (480 -2176 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87154" - "plane" "(456 -756 64) (456 -756 216) (464 -756 216)" + "id" "62654" + "plane" "(612 -2176 256) (608 -2176 256) (608 -2296 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87153" - "plane" "(464 -704 64) (464 -704 216) (456 -704 216)" + "id" "62653" + "plane" "(484 -2176 384) (480 -2176 384) (608 -2176 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87152" - "plane" "(456 -704 64) (456 -704 216) (456 -756 216)" + "id" "62652" + "plane" "(480 -2296 384) (484 -2296 384) (612 -2296 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87151" - "plane" "(464 -756 64) (464 -756 216) (464 -704 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 1 0 -496] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62651" + "plane" "(484 -2296 384) (484 -2176 384) (612 -2176 256)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[0 1 0 247] 0.25" + "vaxis" "[0 0 -1 416] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87150" - "plane" "(464 -704 64) (456 -704 64) (456 -756 64)" + "id" "62650" + "plane" "(480 -2176 384) (480 -2296 384) (608 -2296 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 120" + "color" "0 109 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "243000" - side - { - "id" "87551" - "plane" "(510 -816 274) (464 -816 274) (464 -716 224)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[1 0 0 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "180136" side { - "id" "87550" - "plane" "(464 -816 274) (510 -816 274) (510 -816 270)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -88] 0.25" - "vaxis" "[0 0 -1 -448] 0.25" + "id" "62684" + "plane" "(476 -2144 352) (480 -2144 352) (480 -2176 384)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[0.707107 0.5 -0.5 -75.3301] 0.25" + "vaxis" "[-0.707107 0.5 -0.5 226.33] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87549" - "plane" "(464 -716 220) (510 -716 220) (510 -716 224)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "62683" + "plane" "(444 -2176 352) (476 -2176 384) (480 -2176 384)" + "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" "87548" - "plane" "(510 -816 270) (510 -816 274) (510 -716 224)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0.447214 0.8 -0.4 -205] 0.125" - "vaxis" "[0 -0.447214 -0.894427 66] 0.125" + "id" "62682" + "plane" "(476 -2144 352) (476 -2176 384) (444 -2176 352)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[0 1 0 247] 0.25" + "vaxis" "[0 0 -1 416] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87547" - "plane" "(510 -716 220) (464 -716 220) (464 -816 270)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 0.6 -0.8 154.032] 0.125" - "vaxis" "[-1 0 0 13.4468] 0.125" + "id" "62681" + "plane" "(480 -2176 384) (480 -2144 352) (448 -2176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87546" - "plane" "(464 -716 220) (464 -716 224) (464 -816 274)" + "id" "62680" + "plane" "(480 -2144 352) (476 -2144 352) (444 -2176 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 109 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "243002" - side - { - "id" "87563" - "plane" "(502 -908 208) (464 -908 208) (464 -724 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "180137" side { - "id" "87562" - "plane" "(464 -908 208) (502 -908 208) (502 -908 192)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[-1 0 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "62689" + "plane" "(480 -2144 352) (484 -2144 352) (484 -2176 384)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[-0.707107 0.5 -0.5 -432.041] 0.25" + "vaxis" "[0.707107 0.5 -0.5 71.0405] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87561" - "plane" "(464 -724 192) (502 -724 192) (502 -724 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[-1 0 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "62688" + "plane" "(512 -2176 352) (480 -2176 384) (484 -2176 384)" + "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" "87560" - "plane" "(502 -908 192) (502 -908 208) (502 -724 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 1 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "62687" + "plane" "(484 -2176 384) (484 -2144 352) (516 -2176 352)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[0 1 0 247] 0.25" + "vaxis" "[0 0 -1 416] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87559" - "plane" "(502 -724 192) (464 -724 192) (464 -908 192)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 208] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "id" "62686" + "plane" "(480 -2144 352) (480 -2176 384) (512 -2176 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87558" - "plane" "(464 -724 192) (464 -724 208) (464 -908 208)" + "id" "62685" + "plane" "(484 -2144 352) (480 -2144 352) (512 -2176 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 103 232" + "color" "0 109 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "243003" + "id" "176836" side { - "id" "87569" - "plane" "(510 -916 216) (464 -916 216) (464 -716 216)" + "id" "61689" + "plane" "(-72 -960 368) (-72 -928 368) (-64 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 56] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87568" - "plane" "(464 -916 216) (510 -916 216) (502 -908 212)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "61688" + "plane" "(-64 -960 336) (-64 -960 368) (-64 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87567" - "plane" "(510 -716 216) (464 -716 216) (464 -724 212)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "61687" + "plane" "(-72 -928 336) (-72 -928 368) (-72 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87566" - "plane" "(502 -908 212) (510 -916 216) (510 -716 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "61686" + "plane" "(-64 -928 336) (-64 -928 368) (-72 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87565" - "plane" "(502 -724 212) (464 -724 212) (464 -908 212)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "61685" + "plane" "(-72 -960 336) (-72 -960 368) (-64 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87564" - "plane" "(464 -716 216) (464 -916 216) (464 -908 212)" + "id" "61684" + "plane" "(-72 -928 336) (-72 -960 336) (-64 -960 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 173 190" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "243004" + "id" "176837" side { - "id" "87575" - "plane" "(510 -916 220) (464 -916 220) (464 -716 220)" + "id" "61695" + "plane" "(-16 -956 368) (-16 -928 368) (-8 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[1 0 0 56] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87574" - "plane" "(464 -916 220) (510 -916 220) (510 -916 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "61694" + "plane" "(-8 -956 336) (-8 -956 368) (-8 -928 368)" + "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" "87573" - "plane" "(510 -716 216) (510 -716 220) (464 -716 220)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "61693" + "plane" "(-16 -928 336) (-16 -928 368) (-16 -956 368)" + "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" "87572" - "plane" "(510 -916 216) (510 -916 220) (510 -716 220)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "61692" + "plane" "(-8 -928 336) (-8 -928 368) (-16 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87571" - "plane" "(510 -716 216) (464 -716 216) (464 -916 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "61691" + "plane" "(-16 -956 336) (-16 -956 368) (-8 -956 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 -384] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87570" - "plane" "(464 -716 216) (464 -716 220) (464 -916 220)" + "id" "61690" + "plane" "(-16 -928 336) (-16 -956 336) (-8 -956 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 151 144" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "243005" + "id" "176838" side { - "id" "87581" - "plane" "(510 -916 224) (464 -916 224) (464 -816 274)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 0] 0.125" - "vaxis" "[1 0 0 0] 0.125" + "id" "61701" + "plane" "(-24 -960 368) (-24 -928 368) (-16 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87580" - "plane" "(464 -816 270) (510 -816 270) (510 -816 274)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -88] 0.25" - "vaxis" "[0 0 -1 -448] 0.25" + "id" "61700" + "plane" "(-16 -960 336) (-16 -960 368) (-16 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87579" - "plane" "(464 -916 224) (510 -916 224) (510 -916 220)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "61699" + "plane" "(-24 -928 336) (-24 -928 368) (-24 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87578" - "plane" "(510 -916 220) (510 -916 224) (510 -816 274)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0.447214 -0.8 -0.4 358] 0.125" - "vaxis" "[0 0.447214 -0.894427 274] 0.125" + "id" "61698" + "plane" "(-16 -928 336) (-16 -928 368) (-24 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87577" - "plane" "(510 -816 270) (464 -816 270) (464 -916 220)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -0.6 -0.8 256.231] 0.125" - "vaxis" "[-1 0 0 -497.372] 0.125" + "id" "61697" + "plane" "(-24 -960 336) (-24 -960 368) (-16 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87576" - "plane" "(464 -816 270) (464 -816 274) (464 -916 224)" + "id" "61696" + "plane" "(-24 -928 336) (-24 -960 336) (-16 -960 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -37933,100 +37975,111 @@ world } solid { - "id" "243040" + "id" "176839" side { - "id" "87593" - "plane" "(464 -916 220) (464 -816 270) (506 -816 270)" - "material" "WOOD/MILROOF001" - "uaxis" "[-1 0 0 -233] 0.25" - "vaxis" "[0 -1 0 123] 0.25" - "rotation" "90" + "id" "61707" + "plane" "(-32 -956 368) (-32 -928 368) (-24 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87592" - "plane" "(506 -716 220) (506 -816 270) (464 -816 270)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -88] 0.25" - "vaxis" "[0 0 -1 -448] 0.25" + "id" "61706" + "plane" "(-24 -956 336) (-24 -956 368) (-24 -928 368)" + "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" "87591" - "plane" "(506 -916 220) (506 -716 220) (464 -716 220)" + "id" "61705" + "plane" "(-32 -928 336) (-32 -928 368) (-32 -956 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87590" - "plane" "(506 -916 220) (506 -816 270) (506 -716 220)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 -1 0 208] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "61704" + "plane" "(-24 -928 336) (-24 -928 368) (-32 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87588" - "plane" "(464 -816 270) (464 -916 220) (464 -716 220)" + "id" "61703" + "plane" "(-32 -956 336) (-32 -956 368) (-24 -956 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61702" + "plane" "(-32 -928 336) (-32 -956 336) (-24 -956 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 218 255" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218077" + "id" "176840" side { - "id" "84101" - "plane" "(2980 432 992) (2760 432 992) (2760 448 992)" + "id" "61713" + "plane" "(-40 -960 368) (-40 -928 368) (-32 -928 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84100" - "plane" "(2760 432 624) (2980 432 624) (2980 448 624)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "61712" + "plane" "(-32 -960 336) (-32 -960 368) (-32 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84099" - "plane" "(2980 432 624) (2980 432 992) (2980 448 992)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "61711" + "plane" "(-40 -928 336) (-40 -928 368) (-40 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -38034,10 +38087,10 @@ world } side { - "id" "84098" - "plane" "(2760 448 624) (2760 448 992) (2760 432 992)" + "id" "61710" + "plane" "(-32 -928 336) (-32 -928 368) (-40 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -38045,131 +38098,140 @@ world } side { - "id" "84097" - "plane" "(2760 432 624) (2760 432 992) (2980 432 992)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61709" + "plane" "(-40 -960 336) (-40 -960 368) (-32 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84096" - "plane" "(2980 448 624) (2980 448 992) (2760 448 992)" + "id" "61708" + "plane" "(-40 -928 336) (-40 -960 336) (-32 -960 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218078" + "id" "176841" side { - "id" "84106" - "plane" "(2760 964 612) (2780 984 632) (2780 964 632)" + "id" "61719" + "plane" "(-48 -956 368) (-48 -928 368) (-40 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84105" - "plane" "(2780 964 424) (2780 984 424) (2760 964 424)" + "id" "61718" + "plane" "(-40 -956 336) (-40 -956 368) (-40 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84104" - "plane" "(2760 964 424) (2760 964 612) (2780 964 632)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -252.002] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "61717" + "plane" "(-48 -928 336) (-48 -928 368) (-48 -956 368)" + "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" "84103" - "plane" "(2780 964 424) (2780 964 632) (2780 984 632)" + "id" "61716" + "plane" "(-40 -928 336) (-40 -928 368) (-48 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61715" + "plane" "(-48 -956 336) (-48 -956 368) (-40 -956 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84102" - "plane" "(2760 964 612) (2760 964 424) (2780 984 424)" + "id" "61714" + "plane" "(-48 -928 336) (-48 -956 336) (-40 -956 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218079" + "id" "176842" side { - "id" "84112" - "plane" "(3024 492 992) (3024 712 992) (3040 712 992)" + "id" "61725" + "plane" "(-56 -960 368) (-56 -928 368) (-48 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84111" - "plane" "(3040 492 624) (3040 712 624) (3024 712 624)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "61724" + "plane" "(-48 -960 336) (-48 -960 368) (-48 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84110" - "plane" "(3040 712 624) (3040 712 992) (3024 712 992)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "61723" + "plane" "(-56 -928 336) (-56 -928 368) (-56 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -38177,10 +38239,10 @@ world } side { - "id" "84109" - "plane" "(3024 492 624) (3024 492 992) (3040 492 992)" + "id" "61722" + "plane" "(-48 -928 336) (-48 -928 368) (-56 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -38188,87 +38250,75 @@ world } side { - "id" "84108" - "plane" "(3040 492 624) (3040 492 992) (3040 712 992)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61721" + "plane" "(-56 -960 336) (-56 -960 368) (-48 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84107" - "plane" "(3024 712 624) (3024 712 992) (3024 492 992)" + "id" "61720" + "plane" "(-56 -928 336) (-56 -960 336) (-48 -960 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218120" + "id" "176843" side { - "id" "84119" - "plane" "(2760 416 160) (2632 416 160) (2632 500 160)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[0 1 0 2.12802] 0.188" - "vaxis" "[1 0 0 26.8928] 0.188" + "id" "61731" + "plane" "(-64 -956 368) (-64 -928 368) (-56 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84118" - "plane" "(2632 416 128) (2760 416 128) (2760 504 128)" + "id" "61730" + "plane" "(-56 -956 336) (-56 -956 368) (-56 -928 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "84117" - "plane" "(2632 416 128) (2632 416 160) (2760 416 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[-1 0 0 137.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84116" - "plane" "(2632 500 128) (2632 500 160) (2632 416 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 257.873] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "61729" + "plane" "(-64 -928 336) (-64 -928 368) (-64 -956 368)" + "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" "84115" - "plane" "(2760 416 128) (2760 416 160) (2760 504 160)" + "id" "61728" + "plane" "(-56 -928 336) (-56 -928 368) (-64 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -38276,274 +38326,292 @@ world } side { - "id" "84114" - "plane" "(2760 504 128) (2760 504 160) (2636 504 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[-1 0 0 137.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "61727" + "plane" "(-64 -956 336) (-64 -956 368) (-56 -956 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84113" - "plane" "(2636 504 128) (2636 504 160) (2632 500 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[-1 0 0 137.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "61726" + "plane" "(-64 -928 336) (-64 -956 336) (-56 -956 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218157" + "id" "176844" side { - "id" "84124" - "plane" "(2632 504 144) (2636 504 144) (2632 500 144)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[0 1 0 2.12802] 0.188" - "vaxis" "[1 0 0 26.8928] 0.188" + "id" "61737" + "plane" "(-80 -956 368) (-80 -928 368) (-72 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84123" - "plane" "(2632 504 136) (2632 500 136) (2636 504 136)" + "id" "61736" + "plane" "(-72 -956 336) (-72 -956 368) (-72 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84122" - "plane" "(2636 504 136) (2636 504 144) (2632 504 144)" + "id" "61735" + "plane" "(-80 -928 336) (-80 -928 368) (-80 -956 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84121" - "plane" "(2632 504 136) (2632 504 144) (2632 500 144)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 258.128] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "61734" + "plane" "(-72 -928 336) (-72 -928 368) (-80 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61733" + "plane" "(-80 -956 336) (-80 -956 368) (-72 -956 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84120" - "plane" "(2632 500 136) (2632 500 144) (2636 504 144)" + "id" "61732" + "plane" "(-80 -928 336) (-80 -956 336) (-72 -956 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218202" + "id" "176845" side { - "id" "84130" - "plane" "(2632 504 144) (2632 700 144) (2648 700 144)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[0 1 0 2.12802] 0.188" - "vaxis" "[1 0 0 26.8928] 0.188" + "id" "61743" + "plane" "(-88 -960 368) (-88 -928 368) (-80 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84129" - "plane" "(2648 504 136) (2648 700 136) (2632 700 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "61742" + "plane" "(-80 -960 336) (-80 -960 368) (-80 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84128" - "plane" "(2632 504 136) (2632 504 144) (2648 504 144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "61741" + "plane" "(-88 -928 336) (-88 -928 368) (-88 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84127" - "plane" "(2648 700 136) (2648 700 144) (2632 700 144)" + "id" "61740" + "plane" "(-80 -928 336) (-80 -928 368) (-88 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84126" - "plane" "(2632 700 136) (2632 700 144) (2632 504 144)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 258.128] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "61739" + "plane" "(-88 -960 336) (-88 -960 368) (-80 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84125" - "plane" "(2648 504 136) (2648 504 144) (2648 700 144)" + "id" "61738" + "plane" "(-88 -928 336) (-88 -960 336) (-80 -960 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218203" + "id" "176846" side { - "id" "84135" - "plane" "(2632 700 144) (2632 704 144) (2636 700 144)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[-1 0 0 -30.8928] 0.188" - "vaxis" "[0 1 0 6.12802] 0.188" + "id" "61749" + "plane" "(-96 -956 368) (-96 -928 368) (-88 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84134" - "plane" "(2632 700 136) (2636 700 136) (2632 704 136)" + "id" "61748" + "plane" "(-88 -956 336) (-88 -956 368) (-88 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84133" - "plane" "(2632 704 136) (2632 704 144) (2632 700 144)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -266.128] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "61747" + "plane" "(-96 -928 336) (-96 -928 368) (-96 -956 368)" + "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" "84132" - "plane" "(2632 700 136) (2632 700 144) (2636 700 144)" + "id" "61746" + "plane" "(-88 -928 336) (-88 -928 368) (-96 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61745" + "plane" "(-96 -956 336) (-96 -956 368) (-88 -956 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84131" - "plane" "(2636 700 136) (2636 700 144) (2632 704 144)" + "id" "61744" + "plane" "(-96 -928 336) (-96 -956 336) (-88 -956 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218204" + "id" "176847" side { - "id" "84141" - "plane" "(3044 712 1008) (3044 602 1228) (2696 602 1228)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[-1 0 0 307.107] 0.188" - "vaxis" "[0 1 0 57.9273] 0.108" - "rotation" "90" + "id" "61755" + "plane" "(-104 -960 368) (-104 -928 368) (-96 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84140" - "plane" "(2696 712 992) (2696 602 1212) (3044 602 1212)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[-1 0 0 307.107] 0.188" - "vaxis" "[0 1 0 57.9273] 0.108" - "rotation" "90" + "id" "61754" + "plane" "(-96 -960 336) (-96 -960 368) (-96 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84139" - "plane" "(2696 602 1212) (2696 602 1228) (3044 602 1228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "61753" + "plane" "(-104 -928 336) (-104 -928 368) (-104 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -38551,76 +38619,75 @@ world } side { - "id" "84138" - "plane" "(3044 712 992) (3044 712 1008) (2696 712 1008)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 0 1 -293.064] 0.188" - "vaxis" "[-1 0 0 -57.4817] 0.108" - "rotation" "90" + "id" "61752" + "plane" "(-96 -928 336) (-96 -928 368) (-104 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84137" - "plane" "(2696 712 992) (2696 712 1008) (2696 602 1228)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 0 1 -293.064] 0.188" - "vaxis" "[0 1 0 57.9273] 0.108" - "rotation" "90" + "id" "61751" + "plane" "(-104 -960 336) (-104 -960 368) (-96 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84136" - "plane" "(3044 712 1008) (3044 712 992) (3044 602 1212)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 0 1 -293.064] 0.188" - "vaxis" "[0 1 0 57.9273] 0.108" - "rotation" "90" + "id" "61750" + "plane" "(-104 -928 336) (-104 -960 336) (-96 -960 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218205" + "id" "176848" side { - "id" "84147" - "plane" "(2696 492 1008) (2696 602 1228) (3044 602 1228)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[-1 0 0 307.107] 0.188" - "vaxis" "[0 -1 0 -57.9273] 0.108" - "rotation" "90" + "id" "61761" + "plane" "(-112 -956 368) (-112 -928 368) (-104 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84146" - "plane" "(3044 492 992) (3044 602 1212) (2696 602 1212)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[-1 0 0 307.107] 0.188" - "vaxis" "[0 -1 0 -57.9273] 0.108" - "rotation" "90" + "id" "61760" + "plane" "(-104 -956 336) (-104 -956 368) (-104 -928 368)" + "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" "84145" - "plane" "(3044 602 1212) (3044 602 1228) (2696 602 1228)" + "id" "61759" + "plane" "(-112 -928 336) (-112 -928 368) (-112 -956 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -38628,87 +38695,86 @@ world } side { - "id" "84144" - "plane" "(2696 492 992) (2696 492 1008) (3044 492 1008)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 0 1 -293.064] 0.188" - "vaxis" "[-1 0 0 -57.4817] 0.108" - "rotation" "90" + "id" "61758" + "plane" "(-104 -928 336) (-104 -928 368) (-112 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84143" - "plane" "(2696 492 1008) (2696 492 992) (2696 602 1212)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 0 1 -293.064] 0.188" - "vaxis" "[0 -1 0 -57.9273] 0.108" - "rotation" "90" + "id" "61757" + "plane" "(-112 -956 336) (-112 -956 368) (-104 -956 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84142" - "plane" "(3044 492 992) (3044 492 1008) (3044 602 1228)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 0 1 -293.064] 0.188" - "vaxis" "[0 -1 0 -57.9273] 0.108" - "rotation" "90" + "id" "61756" + "plane" "(-112 -928 336) (-112 -956 336) (-104 -956 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218206" + "id" "176849" side { - "id" "84153" - "plane" "(2700 516 304) (2728 516 304) (2728 548 360)" + "id" "61767" + "plane" "(-128 -964 368) (-128 -928 368) (-112 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84152" - "plane" "(2728 492 304) (2700 492 304) (2700 492 360)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "61766" + "plane" "(-112 -964 336) (-112 -964 368) (-112 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84151" - "plane" "(2700 492 304) (2700 516 304) (2700 548 360)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 -1 0 -840.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61765" + "plane" "(-128 -928 336) (-128 -928 368) (-128 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84150" - "plane" "(2728 516 304) (2728 492 304) (2728 492 360)" + "id" "61764" + "plane" "(-112 -928 336) (-112 -928 368) (-128 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -38716,230 +38782,227 @@ world } side { - "id" "84149" - "plane" "(2728 492 304) (2728 516 304) (2700 516 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "61763" + "plane" "(-128 -964 336) (-128 -964 368) (-112 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84148" - "plane" "(2700 492 360) (2700 548 360) (2728 548 360)" + "id" "61762" + "plane" "(-128 -928 336) (-128 -964 336) (-112 -964 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218207" + "id" "176956" side { - "id" "84159" - "plane" "(2700 548 360) (2728 548 360) (2728 580 384)" + "id" "61838" + "plane" "(-144 -964 368) (-144 -928 368) (-128 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84158" - "plane" "(2728 492 360) (2700 492 360) (2700 492 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "61837" + "plane" "(-144 -928 -128) (-144 -928 368) (-144 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84157" - "plane" "(2700 492 360) (2700 548 360) (2700 580 384)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 -1 0 -840.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61836" + "plane" "(-128 -964 -128) (-128 -964 368) (-128 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84156" - "plane" "(2728 548 360) (2728 492 360) (2728 492 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "61835" + "plane" "(-128 -928 -128) (-128 -928 368) (-144 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84155" - "plane" "(2728 492 360) (2728 548 360) (2700 548 360)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "61834" + "plane" "(-144 -964 -128) (-144 -964 368) (-128 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84154" - "plane" "(2700 492 384) (2700 580 384) (2728 580 384)" + "id" "61833" + "plane" "(-144 -928 -128) (-144 -964 -128) (-128 -964 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218208" + "id" "176961" side { - "id" "84165" - "plane" "(2728 656 360) (2700 656 360) (2700 624 384)" + "id" "61839" + "plane" "(160 -352 256) (160 -256 256) (384 -256 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84164" - "plane" "(2700 712 360) (2728 712 360) (2728 712 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "61840" + "plane" "(160 -256 240) (160 -352 240) (384 -352 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 -96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84163" - "plane" "(2700 656 360) (2700 712 360) (2700 712 384)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61841" + "plane" "(160 -352 240) (160 -256 240) (160 -256 256)" + "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" "84162" - "plane" "(2728 712 360) (2728 656 360) (2728 624 384)" + "id" "61842" + "plane" "(384 -256 240) (384 -352 240) (384 -352 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84161" - "plane" "(2728 656 360) (2728 712 360) (2700 712 360)" + "id" "61843" + "plane" "(160 -256 240) (384 -256 240) (384 -256 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84160" - "plane" "(2700 624 384) (2700 712 384) (2728 712 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "61844" + "plane" "(384 -352 240) (160 -352 240) (160 -352 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 186 219" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218209" + "id" "177325" side { - "id" "84171" - "plane" "(2728 688 304) (2700 688 304) (2700 656 360)" + "id" "61934" + "plane" "(452 -2280 80) (452 -2296 80) (508 -2296 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84170" - "plane" "(2700 712 304) (2728 712 304) (2728 712 360)" + "id" "61933" + "plane" "(452 -2296 80) (452 -2280 80) (452 -2280 184)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -31.9971] 0.25" + "vaxis" "[0 0 -1 7] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84169" - "plane" "(2700 688 304) (2700 712 304) (2700 712 360)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61932" + "plane" "(508 -2280 80) (508 -2296 80) (508 -2296 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 7] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84168" - "plane" "(2728 712 304) (2728 688 304) (2728 656 360)" + "id" "61931" + "plane" "(452 -2280 80) (508 -2280 80) (508 -2280 184)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -38947,131 +39010,131 @@ world } side { - "id" "84167" - "plane" "(2728 688 304) (2728 712 304) (2700 712 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "61930" + "plane" "(508 -2296 80) (452 -2296 80) (452 -2296 184)" + "material" "TEROUST/ARPEGGIO/DOORS/DOORS01" + "uaxis" "[1 0 0 -18.2844] 0.21875" + "vaxis" "[0 0 -1 393.846] 0.203125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84166" - "plane" "(2700 656 360) (2700 712 360) (2728 712 360)" + "id" "61929" + "plane" "(452 -2296 184) (452 -2280 184) (508 -2280 184)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 246 183" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218210" + "id" "177327" side { - "id" "84177" - "plane" "(2700 680 608) (2700 712 608) (2728 712 608)" + "id" "61946" + "plane" "(256 -2296 80) (256 -2304 80) (452 -2304 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84176" - "plane" "(2700 680 608) (2728 680 608) (2728 680 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "61945" + "plane" "(256 -2304 80) (256 -2296 80) (256 -2296 112)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[0 -1 0 -127.998] 0.25" + "vaxis" "[0 0 -1 135] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84175" - "plane" "(2728 712 608) (2700 712 608) (2700 712 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "61944" + "plane" "(452 -2296 80) (452 -2304 80) (452 -2304 112)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 135] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84174" - "plane" "(2700 712 608) (2700 680 608) (2700 680 384)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61943" + "plane" "(256 -2296 80) (452 -2296 80) (452 -2296 112)" + "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" "84173" - "plane" "(2728 680 608) (2728 712 608) (2728 712 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "61942" + "plane" "(452 -2304 80) (256 -2304 80) (256 -2304 112)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[1 0 0 -127.998] 0.25" + "vaxis" "[0 0 -1 135] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84172" - "plane" "(2728 680 384) (2728 712 384) (2700 712 384)" + "id" "61941" + "plane" "(256 -2304 112) (256 -2296 112) (452 -2296 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 114 227" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218211" + "id" "177328" side { - "id" "84183" - "plane" "(2700 492 608) (2700 524 608) (2728 524 608)" + "id" "61952" + "plane" "(416 -2304 208) (416 -2296 208) (452 -2296 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84182" - "plane" "(2700 492 608) (2728 492 608) (2728 492 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "id" "61951" + "plane" "(416 -2296 112) (416 -2296 208) (416 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -39079,10 +39142,10 @@ world } side { - "id" "84181" - "plane" "(2728 524 608) (2700 524 608) (2700 524 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "id" "61950" + "plane" "(452 -2304 112) (452 -2304 208) (452 -2296 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -39090,21 +39153,21 @@ world } side { - "id" "84180" - "plane" "(2700 524 608) (2700 492 608) (2700 492 384)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61949" + "plane" "(452 -2296 112) (452 -2296 208) (416 -2296 208)" + "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" "84179" - "plane" "(2728 492 608) (2728 524 608) (2728 524 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "61948" + "plane" "(416 -2304 112) (416 -2304 208) (452 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -39112,54 +39175,54 @@ world } side { - "id" "84178" - "plane" "(2728 492 384) (2728 524 384) (2700 524 384)" + "id" "61947" + "plane" "(416 -2296 112) (416 -2304 112) (452 -2304 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 114 227" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218212" + "id" "177329" side { - "id" "84189" - "plane" "(2728 688 160) (2728 712 160) (2700 712 160)" + "id" "61958" + "plane" "(508 -2296 80) (508 -2304 80) (544 -2304 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84188" - "plane" "(2728 688 160) (2700 688 160) (2700 688 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "61957" + "plane" "(508 -2304 80) (508 -2296 80) (508 -2296 112)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 135] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84187" - "plane" "(2700 712 160) (2728 712 160) (2728 712 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "id" "61956" + "plane" "(544 -2296 80) (544 -2304 80) (544 -2304 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -39167,274 +39230,296 @@ world } side { - "id" "84186" - "plane" "(2700 688 160) (2700 712 160) (2700 712 304)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61955" + "plane" "(508 -2296 80) (544 -2296 80) (544 -2296 112)" + "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" "84185" - "plane" "(2728 712 160) (2728 688 160) (2728 688 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "61954" + "plane" "(544 -2304 80) (508 -2304 80) (508 -2304 112)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 135] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84184" - "plane" "(2700 688 304) (2700 712 304) (2728 712 304)" + "id" "61953" + "plane" "(508 -2304 112) (508 -2296 112) (544 -2296 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 132 249" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218213" + "id" "177330" side { - "id" "84195" - "plane" "(2780 198 632) (2780 200 632) (2780 200 636)" + "id" "61964" + "plane" "(508 -2304 208) (508 -2296 208) (544 -2296 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84194" - "plane" "(2800 200 612) (2800 198 612) (2800 198 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -2.7247] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "61963" + "plane" "(508 -2296 112) (508 -2296 208) (508 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84193" - "plane" "(2800 198 612) (2780 198 632) (2780 198 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 116.424] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "61962" + "plane" "(544 -2304 112) (544 -2304 208) (544 -2296 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84192" - "plane" "(2780 200 632) (2800 200 612) (2800 200 616)" + "id" "61961" + "plane" "(544 -2296 112) (544 -2296 208) (508 -2296 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84191" - "plane" "(2800 200 612) (2780 200 632) (2780 198 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -2.7247] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "61960" + "plane" "(508 -2304 112) (508 -2304 208) (544 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84190" - "plane" "(2800 198 616) (2780 198 636) (2780 200 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -2.7247] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "61959" + "plane" "(508 -2296 112) (508 -2304 112) (544 -2304 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 132 249" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218214" + "id" "177331" side { - "id" "84200" - "plane" "(2800 240 616) (2780 220 636) (2780 240 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 116.424] 0.188" - "vaxis" "[0 -1 0 -8.85166] 0.188" + "id" "61970" + "plane" "(544 -2288 80) (544 -2304 80) (608 -2304 80)" + "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" "84199" - "plane" "(2800 240 612) (2780 240 632) (2780 220 632)" + "id" "61969" + "plane" "(544 -2304 80) (544 -2288 80) (544 -2288 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84198" - "plane" "(2800 240 612) (2800 240 616) (2780 240 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 112.893] 0.188" - "vaxis" "[0 0 -1 80.0638] 0.188" + "id" "61968" + "plane" "(608 -2288 80) (608 -2304 80) (608 -2304 112)" + "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" "84197" - "plane" "(2780 220 632) (2780 220 636) (2800 240 616)" + "id" "61967" + "plane" "(544 -2288 80) (608 -2288 80) (608 -2288 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84196" - "plane" "(2780 240 632) (2780 240 636) (2780 220 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "61966" + "plane" "(608 -2304 80) (544 -2304 80) (544 -2304 112)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 135] 0.123" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61965" + "plane" "(544 -2304 112) (544 -2288 112) (608 -2288 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 100 237" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218215" + "id" "177333" side { - "id" "84205" - "plane" "(2904 772 1110) (2904 772 1138) (2870 772 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -215.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61982" + "plane" "(608 -2296 80) (608 -2304 80) (704 -2304 80)" + "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" "84204" - "plane" "(2904 744 1110) (2870 744 1138) (2904 744 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56.217] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "61981" + "plane" "(608 -2304 80) (608 -2296 80) (608 -2296 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84203" - "plane" "(2904 744 1110) (2904 772 1110) (2870 772 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 8.21698] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "id" "61980" + "plane" "(704 -2296 80) (704 -2304 80) (704 -2304 112)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 135] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84202" - "plane" "(2904 772 1110) (2904 744 1110) (2904 744 1138)" + "id" "61979" + "plane" "(608 -2296 80) (704 -2296 80) (704 -2296 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32.6533] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84201" - "plane" "(2870 744 1138) (2870 772 1138) (2904 772 1138)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -120.217] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "id" "61978" + "plane" "(704 -2304 80) (608 -2304 80) (608 -2304 112)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 135] 0.123" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61977" + "plane" "(608 -2304 112) (608 -2296 112) (704 -2296 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 102 255" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218216" + "id" "177334" side { - "id" "84211" - "plane" "(2904 772 1144) (2870 772 1212) (2870 772 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -215.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61988" + "plane" "(608 -2304 208) (608 -2296 208) (704 -2296 208)" + "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" "84210" - "plane" "(2904 744 1144) (2904 744 1138) (2870 744 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16.217] 0.25" + "id" "61987" + "plane" "(608 -2296 112) (608 -2296 208) (608 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -39442,21 +39527,21 @@ world } side { - "id" "84209" - "plane" "(2904 772 1144) (2904 744 1144) (2870 744 1212)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.21698] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "id" "61986" + "plane" "(704 -2304 112) (704 -2304 208) (704 -2296 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84208" - "plane" "(2904 772 1138) (2904 744 1138) (2904 744 1144)" + "id" "61985" + "plane" "(704 -2296 112) (704 -2296 208) (608 -2296 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32.6533] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -39464,10 +39549,10 @@ world } side { - "id" "84207" - "plane" "(2870 744 1138) (2870 772 1138) (2870 772 1212)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32.6533] 0.25" + "id" "61984" + "plane" "(608 -2304 112) (608 -2304 208) (704 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -39475,65 +39560,65 @@ world } side { - "id" "84206" - "plane" "(2904 744 1138) (2904 772 1138) (2870 772 1138)" + "id" "61983" + "plane" "(608 -2296 112) (608 -2304 112) (704 -2304 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16.217] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 102 255" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218217" + "id" "177546" side { - "id" "84217" - "plane" "(2836 772 1144) (2836 772 1138) (2870 772 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -215.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "62006" + "plane" "(704 -1920 80) (720 -1920 80) (720 -1984 80)" + "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" "84216" - "plane" "(2836 744 1144) (2870 744 1212) (2870 744 1138)" + "id" "62005" + "plane" "(704 -1984 64) (720 -1984 64) (720 -1920 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.21698] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84215" - "plane" "(2836 744 1144) (2836 772 1144) (2870 772 1212)" + "id" "62004" + "plane" "(704 -1920 80) (704 -1984 80) (704 -1984 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16.217] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84214" - "plane" "(2836 744 1138) (2836 772 1138) (2836 772 1144)" + "id" "62003" + "plane" "(720 -1920 64) (720 -1984 64) (720 -1984 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32.6533] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -39541,10 +39626,10 @@ world } side { - "id" "84213" - "plane" "(2870 772 1138) (2870 744 1138) (2870 744 1212)" + "id" "62002" + "plane" "(720 -1920 80) (704 -1920 80) (704 -1920 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32.6533] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -39552,263 +39637,261 @@ world } side { - "id" "84212" - "plane" "(2870 744 1138) (2870 772 1138) (2836 772 1138)" + "id" "62001" + "plane" "(720 -1984 64) (704 -1984 64) (704 -1984 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.21698] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 216 145" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218218" + "id" "177594" side { - "id" "84222" - "plane" "(2836 744 992) (2836 772 992) (2760 772 992)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.21698] 0.25" - "vaxis" "[0 -1 0 -48.6533] 0.25" + "id" "62040" + "plane" "(240 -2301.99 80) (240 -1984 80) (720 -1984 80)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[1 0 0 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84221" - "plane" "(2760 772 992) (2836 772 992) (2836 772 1144)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -215.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "62039" + "plane" "(240 -1984 64) (240 -2301.98 64) (241 -2310 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" "84220" - "plane" "(2760 744 992) (2836 744 1144) (2836 744 992)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.21698] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62038" + "plane" "(240 -2302 64) (240 -1984 64) (240 -1984 80)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 0 1 192] 0.25" + "vaxis" "[0 -1 0 -110.163] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84219" - "plane" "(2760 744 992) (2760 772 992) (2836 772 1144)" + "id" "62037" + "plane" "(720 -1984 64) (720 -2320 64) (720 -2320 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16.217] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84218" - "plane" "(2836 772 992) (2836 744 992) (2836 744 1144)" + "id" "62036" + "plane" "(240 -1984 64) (720 -1984 64) (720 -1984 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32.6533] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "218219" side { - "id" "84227" - "plane" "(2836 772 1110) (2870 772 1138) (2836 772 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -215.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" - "rotation" "0" + "id" "62035" + "plane" "(720 -2320 64) (258 -2320 64) (258 -2320 80)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 0 1 192] 0.25" + "vaxis" "[1 0 0 -8] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84226" - "plane" "(2836 744 1110) (2836 744 1138) (2870 744 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -24.217] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "62034" + "plane" "(250 -2319 64) (244 -2316 64) (244 -2316 80)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 0 1 192] 0.25" + "vaxis" "[0.894427 -0.447214 0 -467.032] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84225" - "plane" "(2870 744 1138) (2870 772 1138) (2836 772 1110)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -8.21698] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "id" "62033" + "plane" "(244 -2316 64) (241 -2310 64) (241 -2310 80)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 0 1 192] 0.25" + "vaxis" "[0.447214 -0.894427 0 -77.5352] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84224" - "plane" "(2836 744 1110) (2836 772 1110) (2836 772 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32.6533] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "62032" + "plane" "(258 -2320 64) (250 -2319 64) (250 -2319 80)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 0 1 192] 0.25" + "vaxis" "[0.992278 -0.124036 0 -127.084] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84223" - "plane" "(2836 744 1138) (2836 772 1138) (2870 772 1138)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 88.217] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "id" "62031" + "plane" "(241 -2310 64) (240 -2302 64) (240 -2302 80)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 0 1 192] 0.25" + "vaxis" "[0.124035 -0.992278 0 -158.132] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 216 145" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218220" + "id" "177630" side { - "id" "84233" - "plane" "(2904 744 1006) (2836 744 1006) (2836 772 1006)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16.217] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "id" "62070" + "plane" "(608 -2304 176) (608 -2296 176) (592 -2296 182)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84232" - "plane" "(2836 744 992) (2904 744 992) (2904 772 992)" + "id" "62069" + "plane" "(608 -2304 176) (608 -2304 192) (608 -2296 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16.217] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84231" - "plane" "(2836 772 992) (2836 772 1006) (2836 744 1006)" + "id" "62068" + "plane" "(592 -2296 182) (608 -2296 176) (608 -2296 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32.6533] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84230" - "plane" "(2904 744 992) (2904 744 1006) (2904 772 1006)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32.6533] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62067" + "plane" "(592 -2304 182) (592 -2304 198) (608 -2304 192)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0.920292 0.184289 -0.345109 183.241] 0.25" + "vaxis" "[0.351123 0 0.936329 22.8906] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84229" - "plane" "(2904 772 992) (2904 772 1006) (2836 772 1006)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -215.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "62066" + "plane" "(592 -2296 182) (592 -2296 198) (592 -2304 198)" + "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" "84228" - "plane" "(2836 744 992) (2836 744 1006) (2904 744 1006)" + "id" "62065" + "plane" "(608 -2296 192) (608 -2304 192) (592 -2304 198)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16.217] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218221" + "id" "177631" side { - "id" "84238" - "plane" "(2980 744 992) (2980 772 992) (2904 772 992)" + "id" "62076" + "plane" "(608 -2296 208) (608 -2304 208) (592 -2304 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.21698] 0.25" - "vaxis" "[0 -1 0 -48.6533] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84237" - "plane" "(2980 772 992) (2904 772 1144) (2904 772 992)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -215.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "62075" + "plane" "(608 -2304 208) (608 -2296 208) (608 -2296 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84236" - "plane" "(2980 744 992) (2904 744 992) (2904 744 1144)" + "id" "62074" + "plane" "(592 -2296 208) (592 -2296 198) (608 -2296 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.21698] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62073" + "plane" "(592 -2304 208) (608 -2304 208) (608 -2304 192)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -39816,296 +39899,318 @@ world } side { - "id" "84235" - "plane" "(2980 772 992) (2980 744 992) (2904 744 1144)" + "id" "62072" + "plane" "(592 -2296 208) (592 -2304 208) (592 -2304 198)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16.217] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84234" - "plane" "(2904 744 992) (2904 772 992) (2904 772 1144)" + "id" "62071" + "plane" "(608 -2304 192) (608 -2296 192) (592 -2296 198)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32.6533] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218222" + "id" "177654" side { - "id" "84243" - "plane" "(2870 772 1138) (2860.29 772 1130) (2870 772 1130)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -215.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "62082" + "plane" "(592 -2296 182) (576 -2296 184) (576 -2304 184)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84242" - "plane" "(2870 744 1138) (2870 744 1130) (2860.29 744 1130)" + "id" "62081" + "plane" "(576 -2296 200) (576 -2296 184) (592 -2296 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.21698] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62080" + "plane" "(592 -2304 182) (576 -2304 184) (576 -2304 200)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0.990345 0.0623783 -0.123793 245.135] 0.25" + "vaxis" "[0.124035 0 0.992278 7.9082] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84241" - "plane" "(2860.29 744 1130) (2860.29 772 1130) (2870 772 1138)" + "id" "62079" + "plane" "(576 -2304 184) (576 -2296 184) (576 -2296 200)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16.217] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84240" - "plane" "(2870 772 1130) (2870 744 1130) (2870 744 1138)" + "id" "62078" + "plane" "(592 -2296 182) (592 -2304 182) (592 -2304 198)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32.6533] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84239" - "plane" "(2870 744 1130) (2870 772 1130) (2860.29 772 1130)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -0.21698] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "id" "62077" + "plane" "(592 -2304 198) (576 -2304 200) (576 -2296 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218223" + "id" "177655" side { - "id" "84248" - "plane" "(2870 772 1138) (2870 772 1130) (2879.72 772 1130)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -215.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "62088" + "plane" "(592 -2304 208) (576 -2304 208) (576 -2296 208)" + "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" "84247" - "plane" "(2870 744 1138) (2879.71 744 1130) (2870 744 1130)" + "id" "62087" + "plane" "(592 -2296 208) (576 -2296 208) (576 -2296 200)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16.217] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62086" + "plane" "(576 -2304 200) (576 -2304 208) (592 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84246" - "plane" "(2870 744 1138) (2870 772 1138) (2879.72 772 1130)" + "id" "62085" + "plane" "(576 -2296 200) (576 -2296 208) (576 -2304 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.21698] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84245" - "plane" "(2870 744 1130) (2870 772 1130) (2870 772 1138)" + "id" "62084" + "plane" "(592 -2304 198) (592 -2304 208) (592 -2296 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32.6533] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84244" - "plane" "(2879.71 744 1130) (2879.72 772 1130) (2870 772 1130)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 80.217] 0.25" - "vaxis" "[0 -1 0 -32.6533] 0.25" + "id" "62083" + "plane" "(592 -2296 198) (576 -2296 200) (576 -2304 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218224" + "id" "177656" side { - "id" "84254" - "plane" "(2760 776 1008) (2870 776 1228) (2870 428 1228)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[-1 0 0 -57.4817] 0.108" - "rotation" "90" + "id" "62118" + "plane" "(560 -2304 182) (576 -2304 184) (576 -2296 184)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84253" - "plane" "(2760 428 992) (2870 428 1212) (2870 776 1212)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[-1 0 0 -57.4817] 0.108" - "rotation" "90" + "id" "62117" + "plane" "(560 -2296 198) (560 -2296 182) (576 -2296 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84252" - "plane" "(2870 428 1212) (2870 428 1228) (2870 776 1228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40.6533] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62116" + "plane" "(560 -2304 198) (576 -2304 200) (576 -2304 184)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[-0.990345 0.0623783 -0.123793 174.243] 0.25" + "vaxis" "[-0.124035 0 0.992278 67.4609] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84251" - "plane" "(2760 776 992) (2760 776 1008) (2760 428 1008)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 0 1 -293.064] 0.188" - "vaxis" "[0 -1 0 -57.9273] 0.108" - "rotation" "90" + "id" "62115" + "plane" "(576 -2304 200) (576 -2296 200) (576 -2296 184)" + "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" "84250" - "plane" "(2760 428 992) (2760 428 1008) (2870 428 1228)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 0 1 -293.064] 0.188" - "vaxis" "[-1 0 0 -57.4817] 0.108" - "rotation" "90" + "id" "62114" + "plane" "(560 -2296 198) (560 -2304 198) (560 -2304 182)" + "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" "84249" - "plane" "(2760 776 1008) (2760 776 992) (2870 776 1212)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 0 1 -293.064] 0.188" - "vaxis" "[-1 0 0 -57.4817] 0.108" - "rotation" "90" + "id" "62113" + "plane" "(560 -2296 198) (576 -2296 200) (576 -2304 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218225" + "id" "177657" side { - "id" "84260" - "plane" "(2760 504 160) (2664 504 160) (2664 700 160)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[0 1 0 2.12802] 0.188" - "vaxis" "[1 0 0 26.8928] 0.188" + "id" "62124" + "plane" "(560 -2304 182) (560 -2296 182) (544 -2296 176)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84259" - "plane" "(2664 504 144) (2760 504 144) (2760 700 144)" + "id" "62123" + "plane" "(544 -2296 176) (544 -2296 192) (544 -2304 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84258" - "plane" "(2664 700 144) (2664 700 160) (2664 504 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 257.873] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "62122" + "plane" "(560 -2296 198) (544 -2296 192) (544 -2296 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84257" - "plane" "(2760 504 144) (2760 504 160) (2760 700 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62121" + "plane" "(544 -2304 176) (544 -2304 192) (560 -2304 198)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[-0.920292 0.184289 -0.345109 127.132] 0.25" + "vaxis" "[-0.351123 0 0.936329 104.867] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84256" - "plane" "(2760 700 144) (2760 700 160) (2664 700 160)" + "id" "62120" + "plane" "(560 -2304 182) (560 -2304 198) (560 -2296 198)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -40113,65 +40218,65 @@ world } side { - "id" "84255" - "plane" "(2664 504 144) (2664 504 160) (2760 504 160)" + "id" "62119" + "plane" "(560 -2296 198) (560 -2304 198) (544 -2304 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218226" + "id" "177658" side { - "id" "84266" - "plane" "(2760 240 160) (2792 240 160) (2792 284 160)" + "id" "62130" + "plane" "(560 -2296 208) (560 -2304 208) (544 -2304 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84265" - "plane" "(2792 240 160) (2760 240 160) (2760 240 608)" + "id" "62129" + "plane" "(544 -2304 192) (544 -2296 192) (544 -2296 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84264" - "plane" "(2760 240 160) (2760 284 160) (2760 284 637.336)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "62128" + "plane" "(544 -2296 208) (544 -2296 192) (560 -2296 198)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84263" - "plane" "(2792 240 160) (2792 240 608) (2792 284 637.332)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "62127" + "plane" "(560 -2304 198) (544 -2304 192) (544 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -40179,76 +40284,76 @@ world } side { - "id" "84262" - "plane" "(2792 240 608) (2760 240 608) (2760 284 637.336)" + "id" "62126" + "plane" "(560 -2296 198) (560 -2304 198) (560 -2304 208)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84261" - "plane" "(2760 284 160) (2792 284 160) (2792 284 637.332)" + "id" "62125" + "plane" "(560 -2304 198) (560 -2296 198) (544 -2296 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218251" + "id" "177659" side { - "id" "84272" - "plane" "(3040 204 352) (3020 204 352) (3020 240 352)" + "id" "62136" + "plane" "(560 -2296 208) (576 -2296 208) (576 -2304 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84271" - "plane" "(3020 204 208) (3040 204 208) (3040 240 208)" + "id" "62135" + "plane" "(560 -2296 198) (576 -2296 200) (576 -2296 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84270" - "plane" "(3040 204 208) (3040 204 352) (3040 240 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -488.002] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "62134" + "plane" "(560 -2304 198) (560 -2304 208) (576 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84269" - "plane" "(3020 240 208) (3020 240 352) (3020 204 352)" + "id" "62133" + "plane" "(576 -2304 200) (576 -2304 208) (576 -2296 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -40256,98 +40361,98 @@ world } side { - "id" "84268" - "plane" "(3020 204 208) (3020 204 352) (3040 204 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -264.002] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "62132" + "plane" "(560 -2296 198) (560 -2296 208) (560 -2304 208)" + "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" "84267" - "plane" "(3040 240 208) (3040 240 352) (3020 240 352)" + "id" "62131" + "plane" "(560 -2304 198) (576 -2304 200) (576 -2296 200)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218252" + "id" "177762" side { - "id" "84278" - "plane" "(3020 192 352) (2988 192 352) (2988 232 352)" + "id" "62142" + "plane" "(544 -2288 240) (608 -2288 240) (608 -2296 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84277" - "plane" "(2988 192 208) (3020 192 208) (3020 232 208)" + "id" "62141" + "plane" "(608 -2296 116) (608 -2296 240) (608 -2288 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84276" - "plane" "(3020 192 208) (3020 192 352) (3020 232 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "62140" + "plane" "(608 -2288 116) (608 -2288 240) (544 -2288 240)" + "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" "84275" - "plane" "(2988 232 208) (2988 232 352) (2988 192 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "62139" + "plane" "(544 -2296 240) (608 -2296 240) (608 -2296 116)" + "material" "TEROUST/ARPEGGIO/WOOD/SHUTTERS" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 455] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84274" - "plane" "(2988 192 208) (2988 192 352) (3020 192 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -64.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "62138" + "plane" "(544 -2296 116) (608 -2296 116) (608 -2288 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84273" - "plane" "(3020 232 208) (3020 232 352) (2988 232 352)" + "id" "62137" + "plane" "(544 -2288 116) (544 -2288 240) (544 -2296 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -40355,43 +40460,43 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 246 183" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218253" + "id" "177974" side { - "id" "84284" - "plane" "(3020 184 352) (3018 186 352) (3018 192 352)" + "id" "62196" + "plane" "(452 -2304 208) (452 -2288 208) (466 -2288 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84283" - "plane" "(3018 186 208) (3020 184 208) (3020 192 208)" + "id" "62195" + "plane" "(452 -2288 192) (452 -2288 208) (452 -2304 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84282" - "plane" "(3018 192 208) (3018 192 352) (3018 186 352)" + "id" "62194" + "plane" "(466 -2288 198) (466 -2288 208) (452 -2288 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -40399,21 +40504,21 @@ world } side { - "id" "84281" - "plane" "(3020 184 208) (3020 184 352) (3020 192 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "62193" + "plane" "(452 -2304 208) (466 -2304 208) (466 -2304 198)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84280" - "plane" "(3018 186 208) (3018 186 352) (3020 184 352)" + "id" "62192" + "plane" "(466 -2304 198) (466 -2304 208) (466 -2288 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -40421,54 +40526,54 @@ world } side { - "id" "84279" - "plane" "(3020 192 208) (3020 192 352) (3018 192 352)" + "id" "62191" + "plane" "(452 -2288 192) (452 -2304 192) (466 -2304 198)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 172 137" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218254" + "id" "177975" side { - "id" "84290" - "plane" "(2990 186 352) (2988 184 352) (2988 192 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "id" "62202" + "plane" "(452 -2296 176) (452 -2304 176) (466 -2304 182)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 127] 0.25" + "vaxis" "[0 -1 0 105] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84289" - "plane" "(2988 184 208) (2990 186 208) (2990 192 208)" + "id" "62201" + "plane" "(452 -2304 176) (452 -2296 176) (452 -2296 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84288" - "plane" "(2990 186 208) (2990 186 352) (2990 192 352)" + "id" "62200" + "plane" "(452 -2296 176) (466 -2296 182) (466 -2296 198)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -40476,21 +40581,21 @@ world } side { - "id" "84287" - "plane" "(2988 192 208) (2988 192 352) (2988 184 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "62199" + "plane" "(466 -2304 198) (466 -2304 182) (452 -2304 176)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0.962651 -0.124035 0.240663 -127.973] 0.25" + "vaxis" "[-0.242536 0 0.970142 81.5986] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84286" - "plane" "(2988 184 208) (2988 184 352) (2990 186 352)" + "id" "62198" + "plane" "(466 -2296 182) (466 -2304 182) (466 -2304 198)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -40498,230 +40603,230 @@ world } side { - "id" "84285" - "plane" "(2990 192 208) (2990 192 352) (2988 192 352)" + "id" "62197" + "plane" "(452 -2304 192) (452 -2296 192) (466 -2296 198)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 172 137" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218255" + "id" "177988" side { - "id" "84296" - "plane" "(3024 180 192) (2984 180 192) (2984 232 192)" + "id" "62208" + "plane" "(466 -2288 208) (480 -2288 208) (480 -2304 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84295" - "plane" "(2984 180 160) (3024 180 160) (3024 232 160)" + "id" "62207" + "plane" "(480 -2288 200) (480 -2288 208) (466 -2288 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84294" - "plane" "(3024 180 160) (3024 180 192) (3024 232 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -2.7247] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "62206" + "plane" "(466 -2304 208) (480 -2304 208) (480 -2304 200)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84293" - "plane" "(2984 232 160) (2984 232 192) (2984 180 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 34.7247] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "62205" + "plane" "(480 -2304 200) (480 -2304 208) (480 -2288 208)" + "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" "84292" - "plane" "(2984 180 160) (2984 180 192) (3024 180 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -93.6154] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "62204" + "plane" "(466 -2288 198) (466 -2288 208) (466 -2304 208)" + "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" "84291" - "plane" "(3024 232 160) (3024 232 192) (2984 232 192)" + "id" "62203" + "plane" "(466 -2304 198) (480 -2304 200) (480 -2288 200)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 172 137" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218256" + "id" "177989" side { - "id" "84302" - "plane" "(3044 200 192) (3024 200 192) (3024 240 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "id" "62214" + "plane" "(466 -2304 182) (480 -2304 184) (480 -2296 184)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 127] 0.25" + "vaxis" "[0 -1 0 105] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84301" - "plane" "(3024 200 160) (3044 200 160) (3044 240 160)" + "id" "62213" + "plane" "(466 -2296 182) (480 -2296 184) (480 -2296 200)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84300" - "plane" "(3044 200 160) (3044 200 192) (3044 240 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -109.447] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "62212" + "plane" "(480 -2304 200) (480 -2304 184) (466 -2304 182)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0.995682 -0.0416305 0.0829735 -174.458] 0.25" + "vaxis" "[-0.0830455 0 0.996546 37.6729] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84299" - "plane" "(3024 240 160) (3024 240 192) (3024 200 192)" + "id" "62211" + "plane" "(480 -2296 184) (480 -2304 184) (480 -2304 200)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84298" - "plane" "(3024 200 160) (3024 200 192) (3044 200 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -8.84979] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "62210" + "plane" "(466 -2304 182) (466 -2296 182) (466 -2296 198)" + "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" "84297" - "plane" "(3044 240 160) (3044 240 192) (3024 240 192)" + "id" "62209" + "plane" "(466 -2296 198) (480 -2296 200) (480 -2304 200)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 172 137" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218257" + "id" "177994" side { - "id" "84308" - "plane" "(3024 200 368) (3044 200 368) (3044 240 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "id" "62244" + "plane" "(494 -2296 182) (480 -2296 184) (480 -2304 184)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[-1 0 0 255] 0.25" + "vaxis" "[0 -1 0 105] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84307" - "plane" "(3044 200 368) (3024 200 368) (3024 200 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62243" + "plane" "(494 -2296 198) (480 -2296 200) (480 -2296 184)" + "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" "84306" - "plane" "(3044 200 368) (3036 200 384) (3036 240 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62242" + "plane" "(494 -2304 198) (494 -2304 182) (480 -2304 184)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[-0.995682 -0.0416305 0.0829735 183.942] 0.25" + "vaxis" "[0.0830455 0 0.996546 -14.5919] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84305" - "plane" "(3036 200 384) (3024 200 384) (3024 240 384)" + "id" "62241" + "plane" "(480 -2296 200) (480 -2304 200) (480 -2304 184)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84304" - "plane" "(3024 200 368) (3024 240 368) (3024 240 384)" + "id" "62240" + "plane" "(494 -2304 198) (494 -2296 198) (494 -2296 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -40729,252 +40834,230 @@ world } side { - "id" "84303" - "plane" "(3044 240 368) (3036 240 384) (3024 240 384)" + "id" "62239" + "plane" "(494 -2304 198) (480 -2304 200) (480 -2296 200)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 172 137" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218258" + "id" "177995" side { - "id" "84314" - "plane" "(2984 180 368) (3024 180 368) (3024 232 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "62250" + "plane" "(494 -2296 182) (494 -2304 182) (508 -2304 176)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[-1 0 0 255] 0.25" + "vaxis" "[0 -1 0 105] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84313" - "plane" "(2984 180 368) (2984 232 368) (2984 232 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62249" + "plane" "(508 -2304 192) (508 -2296 192) (508 -2296 176)" + "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" "84312" - "plane" "(3024 180 368) (3024 188 384) (3024 232 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 260.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62248" + "plane" "(508 -2296 192) (494 -2296 198) (494 -2296 182)" + "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" "84311" - "plane" "(3024 180 368) (2984 180 368) (2984 188 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62247" + "plane" "(508 -2304 192) (508 -2304 176) (494 -2304 182)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[-0.962651 -0.124035 0.240663 37.6738] 0.25" + "vaxis" "[0.242536 0 0.970142 -50.6936] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84310" - "plane" "(3024 188 384) (2984 188 384) (2984 232 384)" + "id" "62246" + "plane" "(494 -2296 198) (494 -2304 198) (494 -2304 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84309" - "plane" "(2984 232 368) (3024 232 368) (3024 232 384)" + "id" "62245" + "plane" "(494 -2304 198) (494 -2296 198) (508 -2296 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 172 137" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218259" + "id" "177996" side { - "id" "84321" - "plane" "(2984 185.331 386.673) (2984 188 384) (2984 232 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 344.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62256" + "plane" "(494 -2304 208) (494 -2288 208) (508 -2288 208)" + "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" "84320" - "plane" "(3024 188 384) (3024 185.333 386.671) (3024 192 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 280.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62255" + "plane" "(508 -2304 192) (508 -2304 208) (508 -2288 208)" + "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" "84319" - "plane" "(3024 185.333 386.671) (2984 185.331 386.673) (2984 192 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62254" + "plane" "(508 -2288 192) (508 -2288 208) (494 -2288 208)" + "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" "84318" - "plane" "(2984 188 384) (3024 188 384) (3024 232 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 1 0 503.002] 0.2" + "id" "62253" + "plane" "(508 -2304 192) (494 -2304 198) (494 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[-1 0 0 128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84317" - "plane" "(3024 192 400) (2984 192 400) (2984 232 400)" + "id" "62252" + "plane" "(494 -2288 198) (494 -2288 208) (494 -2304 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84316" - "plane" "(3024 188 384) (2984 188 384) (2984 185.331 386.673)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0.707107 -0.707107 93.4888] 0.2" + "id" "62251" + "plane" "(494 -2288 198) (494 -2304 198) (508 -2304 192)" + "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 + editor { - "id" "84315" - "plane" "(2984 232 384) (3024 232 384) (3024 232 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "163 140 0" - "groupid" "219643" + "color" "0 172 137" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218260" + "id" "177997" side { - "id" "84328" - "plane" "(3038.67 200 386.667) (3036 200 384) (3024 200 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 80.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62262" + "plane" "(494 -2304 208) (480 -2304 208) (480 -2288 208)" + "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" "84327" - "plane" "(3038.67 200 386.667) (3032 200 400) (3032 240 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62261" + "plane" "(494 -2288 198) (494 -2288 208) (480 -2288 208)" + "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" "84326" - "plane" "(3024 200 384) (3036 200 384) (3036 240 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[-1 0 0 239.002] 0.2" + "id" "62260" + "plane" "(494 -2304 198) (480 -2304 200) (480 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[-1 0 0 128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84325" - "plane" "(3032 200 400) (3024 200 400) (3024 240 400)" + "id" "62259" + "plane" "(480 -2288 200) (480 -2288 208) (480 -2304 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "84324" - "plane" "(3036 200 384) (3038.67 200 386.667) (3038.67 240 386.667)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[-0.707107 0 -0.707107 228.053] 0.2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84323" - "plane" "(3024 200 384) (3024 240 384) (3024 240 400)" + "id" "62258" + "plane" "(494 -2304 198) (494 -2304 208) (494 -2288 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -40982,87 +41065,87 @@ world } side { - "id" "84322" - "plane" "(3036 240 384) (3038.67 240 386.667) (3032 240 400)" + "id" "62257" + "plane" "(494 -2288 198) (480 -2288 200) (480 -2304 200)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 172 137" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218261" + "id" "178018" side { - "id" "84334" - "plane" "(3034.67 200 402.673) (3032 200 400) (3024 200 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62340" + "plane" "(416 -2296 240) (352 -2296 240) (352 -2288 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84333" - "plane" "(3034.67 200 402.673) (3024 200 424) (3024 240 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62339" + "plane" "(352 -2288 116) (352 -2288 240) (352 -2296 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84332" - "plane" "(3024 200 400) (3032 200 400) (3032 240 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[-1 0 0 139.002] 0.2" + "id" "62338" + "plane" "(416 -2288 116) (416 -2288 240) (352 -2288 240)" + "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" "84331" - "plane" "(3024 200 400) (3024 240 400) (3024 240 424)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "62337" + "plane" "(416 -2296 116) (352 -2296 116) (352 -2296 240)" + "material" "TEROUST/ARPEGGIO/WOOD/SHUTTERS" + "uaxis" "[-1 0 0 128] 0.25" + "vaxis" "[0 0 -1 455] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84330" - "plane" "(3032 200 400) (3034.67 200 402.673) (3034.67 240 402.672)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[-0.707107 0 -0.707107 184.957] 0.2" + "id" "62336" + "plane" "(416 -2288 116) (352 -2288 116) (352 -2296 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84329" - "plane" "(3032 240 400) (3034.67 240 402.672) (3024 240 424)" + "id" "62335" + "plane" "(416 -2296 116) (416 -2296 240) (416 -2288 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -41070,65 +41153,65 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 246 183" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218262" + "id" "178019" side { - "id" "84340" - "plane" "(2984 189.333 402.671) (2984 192 400) (2984 200 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62346" + "plane" "(416 -2304 176) (416 -2296 176) (400 -2296 182)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84339" - "plane" "(3024 192 400) (3024 189.333 402.671) (3024 200 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 260.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62345" + "plane" "(416 -2304 176) (416 -2304 192) (416 -2296 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84338" - "plane" "(3024 189.333 402.671) (2984 189.333 402.671) (2984 200 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "62344" + "plane" "(400 -2296 182) (416 -2296 176) (416 -2296 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84337" - "plane" "(2984 192 400) (3024 192 400) (3024 200 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 1 0 403.002] 0.2" + "id" "62343" + "plane" "(400 -2304 182) (400 -2304 198) (416 -2304 192)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0.920292 0.184289 -0.345109 -78.7883] 0.25" + "vaxis" "[0.351123 0 0.936329 -219.447] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84336" - "plane" "(2984 200 400) (3024 200 400) (3024 200 424)" + "id" "62342" + "plane" "(400 -2296 182) (400 -2296 198) (400 -2304 198)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -41136,472 +41219,516 @@ world } side { - "id" "84335" - "plane" "(3024 192 400) (2984 192 400) (2984 189.333 402.671)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0.707107 -0.707107 50.3921] 0.2" + "id" "62341" + "plane" "(416 -2296 192) (416 -2304 192) (400 -2304 198)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218263" + "id" "178020" side { - "id" "84345" - "plane" "(3004 200 632) (3004 220 632) (3024 200 612)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "62352" + "plane" "(400 -2296 182) (384 -2296 184) (384 -2304 184)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84344" - "plane" "(3004 200 424) (3024 200 424) (3004 220 424)" + "id" "62351" + "plane" "(384 -2296 200) (384 -2296 184) (400 -2296 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84343" - "plane" "(3024 200 612) (3024 200 424) (3004 200 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "62350" + "plane" "(400 -2304 182) (384 -2304 184) (384 -2304 200)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0.990345 0.0623783 -0.123793 -44.6833] 0.25" + "vaxis" "[0.124035 0 0.992278 -152.832] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84342" - "plane" "(3004 220 424) (3004 220 632) (3004 200 632)" + "id" "62349" + "plane" "(384 -2304 184) (384 -2296 184) (384 -2296 200)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84341" - "plane" "(3024 200 424) (3024 200 612) (3004 220 632)" + "id" "62348" + "plane" "(400 -2296 182) (400 -2304 182) (400 -2304 198)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62347" + "plane" "(400 -2304 198) (384 -2304 200) (384 -2296 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218264" + "id" "178021" side { - "id" "84350" - "plane" "(2984 200 612) (3004 220 632) (3004 200 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "id" "62358" + "plane" "(368 -2304 182) (384 -2304 184) (384 -2296 184)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84349" - "plane" "(3004 200 424) (3004 220 424) (2984 200 424)" + "id" "62357" + "plane" "(368 -2296 198) (368 -2296 182) (384 -2296 184)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84348" - "plane" "(2984 200 424) (2984 200 612) (3004 200 632)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 155.998] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "62356" + "plane" "(368 -2304 198) (384 -2304 200) (384 -2304 184)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[-0.990345 0.0623783 -0.123793 208.061] 0.25" + "vaxis" "[-0.124035 0 0.992278 228.202] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84347" - "plane" "(3004 200 424) (3004 200 632) (3004 220 632)" + "id" "62355" + "plane" "(384 -2304 200) (384 -2296 200) (384 -2296 184)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84346" - "plane" "(2984 200 612) (2984 200 424) (3004 220 424)" + "id" "62354" + "plane" "(368 -2296 198) (368 -2304 198) (368 -2304 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62353" + "plane" "(368 -2296 198) (384 -2296 200) (384 -2304 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218265" + "id" "178022" side { - "id" "84355" - "plane" "(3024 200 612) (3004 220 632) (3024 220 632)" - "material" "TOOLS/TOOLSNODRAW" + "id" "62364" + "plane" "(368 -2304 182) (368 -2296 182) (352 -2296 176)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84354" - "plane" "(3024 220 424) (3004 220 424) (3024 200 424)" + "id" "62363" + "plane" "(352 -2296 176) (352 -2296 192) (352 -2304 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62362" + "plane" "(368 -2296 198) (352 -2296 192) (352 -2296 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84353" - "plane" "(3024 200 424) (3024 200 612) (3024 220 632)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 260.002] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "62361" + "plane" "(352 -2304 176) (352 -2304 192) (368 -2304 198)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[-0.920292 0.184289 -0.345109 133.161] 0.25" + "vaxis" "[-0.351123 0 0.936329 91.2046] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84352" - "plane" "(3024 220 424) (3024 220 632) (3004 220 632)" + "id" "62360" + "plane" "(368 -2304 182) (368 -2304 198) (368 -2296 198)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84351" - "plane" "(3024 200 612) (3024 200 424) (3004 220 424)" + "id" "62359" + "plane" "(368 -2296 198) (368 -2304 198) (352 -2304 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218266" + "id" "178023" side { - "id" "84361" - "plane" "(3026 220 632) (3024 220 632) (3024 220 636)" + "id" "62370" + "plane" "(368 -2296 208) (368 -2304 208) (352 -2304 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84360" - "plane" "(3024 240 612) (3026 240 612) (3026 240 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0.338074] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "62369" + "plane" "(352 -2304 192) (352 -2296 192) (352 -2296 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84359" - "plane" "(3026 240 612) (3026 220 632) (3026 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 37.4474] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "62368" + "plane" "(352 -2296 208) (352 -2296 192) (368 -2296 198)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84358" - "plane" "(3024 220 632) (3024 240 612) (3024 240 616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "62367" + "plane" "(368 -2304 198) (352 -2304 192) (352 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[-1 0 0 256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84357" - "plane" "(3024 240 612) (3024 220 632) (3026 220 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0.338074] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "62366" + "plane" "(368 -2296 198) (368 -2304 198) (368 -2304 208)" + "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" "84356" - "plane" "(3026 240 616) (3026 220 636) (3024 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0.338074] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "62365" + "plane" "(368 -2304 198) (368 -2296 198) (352 -2296 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218267" + "id" "178024" side { - "id" "84367" - "plane" "(3024 220 632) (3026 220 632) (3026 220 636)" + "id" "62376" + "plane" "(368 -2296 208) (384 -2296 208) (384 -2304 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84366" - "plane" "(3026 200 612) (3024 200 612) (3024 200 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0.338074] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "62375" + "plane" "(368 -2296 198) (384 -2296 200) (384 -2296 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84365" - "plane" "(3026 220 632) (3026 200 612) (3026 200 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -54.128] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "62374" + "plane" "(368 -2304 198) (368 -2304 208) (384 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[-1 0 0 256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84364" - "plane" "(3024 200 612) (3024 220 632) (3024 220 636)" + "id" "62373" + "plane" "(384 -2304 200) (384 -2304 208) (384 -2296 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84363" - "plane" "(3026 200 612) (3026 220 632) (3024 220 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0.338074] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "62372" + "plane" "(368 -2296 198) (368 -2296 208) (368 -2304 208)" + "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" "84362" - "plane" "(3024 200 616) (3024 220 636) (3026 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0.338074] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "62371" + "plane" "(368 -2304 198) (384 -2304 200) (384 -2296 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218268" + "id" "178025" side { - "id" "84372" - "plane" "(3024 240 616) (3024 220 636) (3004 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 37.4474] 0.188" - "vaxis" "[-1 0 0 -48.3381] 0.188" + "id" "62382" + "plane" "(400 -2304 208) (384 -2304 208) (384 -2296 208)" + "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" "84371" - "plane" "(3024 240 612) (3004 220 632) (3024 220 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 33.9161] 0.188" - "vaxis" "[-1 0 0 -127.936] 0.188" + "id" "62381" + "plane" "(400 -2296 208) (384 -2296 208) (384 -2296 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62380" + "plane" "(384 -2304 200) (384 -2304 208) (400 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84370" - "plane" "(3024 240 616) (3024 240 612) (3024 220 632)" + "id" "62379" + "plane" "(384 -2296 200) (384 -2296 208) (384 -2304 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84369" - "plane" "(3024 240 612) (3024 240 616) (3004 220 636)" + "id" "62378" + "plane" "(400 -2304 198) (400 -2304 208) (400 -2296 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84368" - "plane" "(3004 220 632) (3004 220 636) (3024 220 636)" + "id" "62377" + "plane" "(400 -2296 198) (384 -2296 200) (384 -2304 200)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218269" + "id" "178026" side { - "id" "84377" - "plane" "(3024 200 616) (3004 220 636) (3024 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -54.128] 0.188" - "vaxis" "[-1 0 0 -48.3381] 0.188" + "id" "62388" + "plane" "(416 -2296 208) (416 -2304 208) (400 -2304 208)" + "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" "84376" - "plane" "(3024 200 612) (3024 220 632) (3004 220 632)" + "id" "62387" + "plane" "(416 -2304 208) (416 -2296 208) (416 -2296 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84375" - "plane" "(3024 200 612) (3024 200 616) (3024 220 636)" + "id" "62386" + "plane" "(400 -2296 208) (400 -2296 198) (416 -2296 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -41609,65 +41736,76 @@ world } side { - "id" "84374" - "plane" "(3004 220 632) (3004 220 636) (3024 200 616)" + "id" "62385" + "plane" "(400 -2304 208) (416 -2304 208) (416 -2304 192)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62384" + "plane" "(400 -2296 208) (400 -2304 208) (400 -2304 198)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84373" - "plane" "(3024 220 632) (3024 220 636) (3004 220 636)" + "id" "62383" + "plane" "(416 -2304 192) (416 -2296 192) (400 -2296 198)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 111" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218270" + "id" "178027" side { - "id" "84383" - "plane" "(2980 428 1008) (2870 428 1228) (2870 776 1228)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[1 0 0 57.4817] 0.108" - "rotation" "90" + "id" "62394" + "plane" "(256 -2304 208) (256 -2296 208) (352 -2296 208)" + "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" "84382" - "plane" "(2980 776 992) (2870 776 1212) (2870 428 1212)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[1 0 0 57.4817] 0.108" - "rotation" "90" + "id" "62393" + "plane" "(352 -2304 112) (352 -2304 208) (352 -2296 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 -1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84381" - "plane" "(2870 776 1212) (2870 776 1228) (2870 428 1228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40.6533] 0.25" + "id" "62392" + "plane" "(256 -2296 112) (256 -2296 208) (256 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -41675,153 +41813,163 @@ world } side { - "id" "84380" - "plane" "(2980 428 992) (2980 428 1008) (2980 776 1008)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 0 1 -293.064] 0.188" - "vaxis" "[0 -1 0 -57.9273] 0.108" - "rotation" "90" + "id" "62391" + "plane" "(352 -2296 112) (352 -2296 208) (256 -2296 208)" + "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" "84379" - "plane" "(2980 428 1008) (2980 428 992) (2870 428 1212)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 0 1 -293.064] 0.188" - "vaxis" "[1 0 0 57.4817] 0.108" - "rotation" "90" + "id" "62390" + "plane" "(256 -2304 112) (256 -2304 208) (352 -2304 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[-1 0 0 256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84378" - "plane" "(2980 776 992) (2980 776 1008) (2870 776 1228)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 0 1 -293.064] 0.188" - "vaxis" "[1 0 0 57.4817] 0.108" - "rotation" "90" + "id" "62389" + "plane" "(256 -2296 112) (256 -2304 112) (352 -2304 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 102 255" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218271" + "id" "178055" side { - "id" "84388" - "plane" "(2836 432 1110) (2836 432 1138) (2870 432 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "62406" + "plane" "(352 -2308 116) (352 -2296 116) (416 -2296 116)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 -116.314] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84387" - "plane" "(2836 454 1110) (2870 454 1138) (2836 454 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -24.217] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "62405" + "plane" "(352 -2296 112) (352 -2308 112) (416 -2308 112)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 1 0 36.1348] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84386" - "plane" "(2870 432 1138) (2870 454 1138) (2836 454 1110)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -8.21698] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "id" "62404" + "plane" "(352 -2308 112) (352 -2296 112) (352 -2296 116)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[0 -1 0 -384] 0.25" + "vaxis" "[0 0 -1 135] 0.123" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62403" + "plane" "(416 -2296 112) (416 -2308 112) (416 -2308 116)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[0 1 0 384] 0.25" + "vaxis" "[0 0 -1 135] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84385" - "plane" "(2836 432 1110) (2836 454 1110) (2836 454 1138)" + "id" "62402" + "plane" "(352 -2296 112) (416 -2296 112) (416 -2296 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40.6533] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84384" - "plane" "(2836 432 1138) (2836 454 1138) (2870 454 1138)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 88.217] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "id" "62401" + "plane" "(416 -2308 112) (352 -2308 112) (352 -2308 116)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 135] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 176 237" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218272" + "id" "178176" side { - "id" "84394" - "plane" "(2836 432 1144) (2870 432 1212) (2870 432 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "62407" + "plane" "(128 -952 96) (192 -952 96) (192 -960 96)" + "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" "84393" - "plane" "(2836 454 1144) (2836 454 1138) (2870 454 1138)" + "id" "62408" + "plane" "(128 -960 72) (192 -960 72) (192 -952 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.21698] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84392" - "plane" "(2836 432 1144) (2836 454 1144) (2870 454 1212)" + "id" "62409" + "plane" "(128 -952 96) (128 -960 96) (128 -960 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16.217] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84391" - "plane" "(2836 432 1138) (2836 454 1138) (2836 454 1144)" + "id" "62410" + "plane" "(192 -952 72) (192 -960 72) (192 -960 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40.6533] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -41829,10 +41977,10 @@ world } side { - "id" "84390" - "plane" "(2870 454 1138) (2870 432 1138) (2870 432 1212)" + "id" "62411" + "plane" "(192 -952 96) (128 -952 96) (128 -952 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40.6533] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -41840,571 +41988,646 @@ world } side { - "id" "84389" - "plane" "(2870 432 1138) (2870 454 1138) (2836 454 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.21698] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "id" "62412" + "plane" "(192 -960 72) (128 -960 72) (128 -960 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 148 153" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218273" + "id" "178178" side { - "id" "84400" - "plane" "(2904 432 1144) (2904 432 1138) (2870 432 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "62424" + "plane" "(128 -952 248) (192 -952 248) (192 -960 248)" + "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" "84399" - "plane" "(2904 454 1144) (2870 454 1212) (2870 454 1138)" + "id" "62423" + "plane" "(128 -960 240) (192 -960 240) (192 -952 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16.217] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84398" - "plane" "(2904 454 1144) (2904 432 1144) (2870 432 1212)" + "id" "62422" + "plane" "(128 -952 248) (128 -960 248) (128 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.21698] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84397" - "plane" "(2904 454 1138) (2904 432 1138) (2904 432 1144)" + "id" "62421" + "plane" "(192 -952 240) (192 -960 240) (192 -960 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40.6533] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84396" - "plane" "(2870 432 1138) (2870 454 1138) (2870 454 1212)" + "id" "62420" + "plane" "(192 -952 248) (128 -952 248) (128 -952 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40.6533] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84395" - "plane" "(2904 432 1138) (2904 454 1138) (2870 454 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16.217] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "id" "62419" + "plane" "(192 -960 240) (128 -960 240) (128 -960 248)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 160] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 148 153" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218290" + "id" "174544" side { - "id" "84405" - "plane" "(2984 240 616) (3004 220 636) (2984 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 37.4474] 0.188" - "vaxis" "[1 0 0 122.211] 0.188" + "id" "60963" + "plane" "(328 -692 372) (328 -940 372) (440 -940 372)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 144] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84404" - "plane" "(2984 240 612) (2984 220 632) (3004 220 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" + "id" "60962" + "plane" "(328 -940 372) (328 -692 372) (384 -816 434.333)" + "material" "WOOD/MILROOF001" + "uaxis" "[0 1 0 -193] 0.25" + "vaxis" "[1 0 0 -293] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84403" - "plane" "(2984 240 612) (2984 240 616) (2984 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 33.9161] 0.188" - "vaxis" "[0 0 -1 80.0638] 0.188" - "rotation" "0" + "id" "60961" + "plane" "(384 -816 434.333) (440 -692 372) (440 -940 372)" + "material" "WOOD/MILROOF001" + "uaxis" "[0 1 0 -193] 0.25" + "vaxis" "[1 0 0 -293] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84402" - "plane" "(3004 220 632) (3004 220 636) (2984 240 616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "60960" + "plane" "(440 -940 372) (328 -940 372) (384 -816 434.333)" + "material" "WOOD/MILROOF001" + "uaxis" "[1 0 0 -145] 0.25" + "vaxis" "[0 -1 0 -245] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84401" - "plane" "(2984 220 632) (2984 220 636) (3004 220 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "60959" + "plane" "(384 -816 434.333) (328 -692 372) (440 -692 372)" + "material" "WOOD/MILROOF001" + "uaxis" "[1 0 0 -145] 0.25" + "vaxis" "[0 -1 0 -245] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "201 138 0" + "groupid" "245243" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218291" + "id" "174676" side { - "id" "84410" - "plane" "(2984 200 616) (2984 220 636) (3004 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -54.128] 0.188" - "vaxis" "[1 0 0 122.211] 0.188" + "id" "61080" + "plane" "(332 -940 372) (328 -940 372) (328 -940 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84409" - "plane" "(2984 200 612) (3004 220 632) (2984 220 632)" + "id" "61079" + "plane" "(384 -816 434.333) (328 -940 372) (332 -940 372)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84408" - "plane" "(2984 200 616) (2984 200 612) (2984 220 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -53.9161] 0.188" - "vaxis" "[0 0 -1 80.0638] 0.188" + "id" "61078" + "plane" "(332 -940 377.667) (328 -940 377.667) (384 -816 440)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84407" - "plane" "(2984 200 612) (2984 200 616) (3004 220 636)" + "id" "61077" + "plane" "(328 -940 377.667) (328 -940 372) (384 -816 434.333)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84406" - "plane" "(3004 220 632) (3004 220 636) (2984 220 636)" + "id" "61076" + "plane" "(384 -824.857 429.881) (332 -940 372) (332 -940 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61075" + "plane" "(384 -816 434.333) (384 -824.857 429.881) (384 -824.857 435.548)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "201 138 0" + "groupid" "245243" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218292" + "id" "174679" side { - "id" "84415" - "plane" "(2984 220 632) (3004 220 632) (2984 200 612)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "61086" + "plane" "(328 -940 372) (328 -931.143 372) (328 -931.143 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84414" - "plane" "(2984 200 424) (3004 220 424) (2984 220 424)" + "id" "61085" + "plane" "(380 -816 429.884) (328 -931.143 372) (328 -940 372)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84413" - "plane" "(2984 200 612) (2984 200 424) (2984 220 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 260.002] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "61084" + "plane" "(384 -816 440) (328 -940 377.667) (328 -931.143 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84412" - "plane" "(3004 220 424) (3004 220 632) (2984 220 632)" + "id" "61083" + "plane" "(384 -816 434.333) (328 -940 372) (328 -940 377.667)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61082" + "plane" "(328 -931.143 377.667) (328 -931.143 372) (380 -816 429.882)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84411" - "plane" "(2984 200 424) (2984 200 612) (3004 220 632)" + "id" "61081" + "plane" "(380 -816 429.882) (384 -816 434.333) (384 -816 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "201 138 0" + "groupid" "245243" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218293" + "id" "174682" side { - "id" "84420" - "plane" "(2984 240 612) (3004 220 632) (2984 220 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "id" "61104" + "plane" "(440 -692 372) (440 -700.857 372) (440 -700.857 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84419" - "plane" "(2984 220 424) (3004 220 424) (2984 240 424)" + "id" "61103" + "plane" "(388 -816 429.879) (440 -700.857 372) (440 -692 372)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84418" - "plane" "(2984 240 424) (2984 240 612) (2984 220 632)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -100.002] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "61102" + "plane" "(384 -816 440) (440 -692 377.667) (440 -700.857 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84417" - "plane" "(2984 220 424) (2984 220 632) (3004 220 632)" + "id" "61101" + "plane" "(384 -816 434.333) (440 -692 372) (440 -692 377.667)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61100" + "plane" "(440 -700.857 377.667) (440 -700.857 372) (388 -816 429.882)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84416" - "plane" "(2984 240 612) (2984 240 424) (3004 220 424)" + "id" "61099" + "plane" "(388 -816 429.882) (384 -816 434.333) (384 -816 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "201 138 0" + "groupid" "245243" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218294" + "id" "174683" side { - "id" "84425" - "plane" "(3024 220 632) (3004 220 632) (3024 240 612)" - "material" "TOOLS/TOOLSNODRAW" + "id" "61110" + "plane" "(436 -692 372) (440 -692 372) (440 -692 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84424" - "plane" "(3024 220 424) (3024 240 424) (3004 220 424)" + "id" "61109" + "plane" "(440 -692 372) (436 -692 372) (384 -807.143 429.882)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84423" - "plane" "(3024 240 612) (3024 240 424) (3024 220 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -100.002] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "61108" + "plane" "(384 -807.143 435.54) (436 -692 377.667) (440 -692 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84422" - "plane" "(3004 220 424) (3004 220 632) (3024 220 632)" + "id" "61107" + "plane" "(440 -692 377.667) (440 -692 372) (384 -816 434.333)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61106" + "plane" "(384 -807.143 429.879) (436 -692 372) (436 -692 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84421" - "plane" "(3024 240 424) (3024 240 612) (3004 220 632)" + "id" "61105" + "plane" "(384 -816 434.333) (384 -807.143 429.885) (384 -807.143 435.548)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "201 138 0" + "groupid" "245243" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218295" + "id" "174690" side { - "id" "84430" - "plane" "(3024 240 612) (3004 220 632) (3004 240 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "61140" + "plane" "(440 -940 372) (436 -940 372) (436 -940 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84429" - "plane" "(3004 240 424) (3004 220 424) (3024 240 424)" + "id" "61139" + "plane" "(384 -824.857 429.884) (436 -940 372) (440 -940 372)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84428" - "plane" "(3024 240 424) (3024 240 612) (3004 240 632)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "61138" + "plane" "(440 -940 377.667) (436 -940 377.667) (384 -824.857 435.545)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84427" - "plane" "(3004 240 424) (3004 240 632) (3004 220 632)" + "id" "61137" + "plane" "(384 -816 434.333) (440 -940 372) (440 -940 377.667)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61136" + "plane" "(436 -940 377.667) (436 -940 372) (384 -824.857 429.882)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84426" - "plane" "(3024 240 612) (3024 240 424) (3004 220 424)" + "id" "61135" + "plane" "(384 -824.857 429.882) (384 -816 434.333) (384 -816 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "201 138 0" + "groupid" "245243" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218296" + "id" "174691" side { - "id" "84435" - "plane" "(3004 240 632) (3004 220 632) (2984 240 612)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "id" "61146" + "plane" "(440 -931.143 372) (440 -940 372) (440 -940 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84434" - "plane" "(3004 240 424) (2984 240 424) (3004 220 424)" + "id" "61145" + "plane" "(384 -816 434.333) (440 -940 372) (440 -931.143 372)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84433" - "plane" "(2984 240 612) (2984 240 424) (3004 240 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 155.998] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "61144" + "plane" "(388 -816 435.551) (440 -931.143 377.667) (440 -940 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84432" - "plane" "(3004 220 424) (3004 220 632) (3004 240 632)" + "id" "61143" + "plane" "(440 -940 377.667) (440 -940 372) (384 -816 434.333)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61142" + "plane" "(388 -816 429.881) (440 -931.143 372) (440 -931.143 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84431" - "plane" "(2984 240 424) (2984 240 612) (3004 220 632)" + "id" "61141" + "plane" "(384 -816 434.333) (388 -816 429.881) (388 -816 435.548)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "201 138 0" + "groupid" "245243" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218305" + "id" "174692" + side + { + "id" "61152" + "plane" "(328 -692 372) (332 -692 372) (332 -692 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } side { - "id" "84440" - "plane" "(2984 240 608) (3976 240 608) (3976 602 608)" + "id" "61151" + "plane" "(332 -692 372) (328 -692 372) (384 -816 434.333)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 48] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -42412,43 +42635,43 @@ world } side { - "id" "84439" - "plane" "(3976 240 608) (3976 602 849.332) (3976 602 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 2.66162] 0.25" + "id" "61150" + "plane" "(384 -816 440) (328 -692 377.667) (332 -692 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84438" - "plane" "(2984 602 608) (2984 602 849.332) (2984 240 608)" + "id" "61149" + "plane" "(384 -816 434.333) (328 -692 372) (328 -692 377.667)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 2.66162] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84437" - "plane" "(3976 240 608) (2984 240 608) (2984 602 849.332)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[-1 0 0 307.107] 0.188" - "vaxis" "[0 1 0 57.9273] 0.108" - "rotation" "90" + "id" "61148" + "plane" "(332 -692 377.667) (332 -692 372) (384 -807.143 429.885)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84436" - "plane" "(2984 602 608) (3976 602 608) (3976 602 849.332)" + "id" "61147" + "plane" "(384 -807.143 429.879) (384 -816 434.333) (384 -816 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 -1 0 48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -42456,43 +42679,54 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "201 138 0" + "groupid" "245243" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218306" + "id" "174693" + side + { + "id" "61158" + "plane" "(328 -700.857 372) (328 -692 372) (328 -692 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } side { - "id" "84445" - "plane" "(2980 432 992) (2980 454 992) (2904 454 992)" + "id" "61157" + "plane" "(384 -816 434.333) (328 -692 372) (328 -700.857 372)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16.217] 0.25" - "vaxis" "[0 1 0 24.6533] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84444" - "plane" "(2980 432 992) (2904 432 992) (2904 432 1144)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61156" + "plane" "(380 -816 435.54) (328 -700.857 377.667) (328 -692 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84443" - "plane" "(2980 454 992) (2904 454 1144) (2904 454 992)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16.217] 0.25" + "id" "61155" + "plane" "(328 -692 377.667) (328 -692 372) (384 -816 434.333)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -42500,21 +42734,21 @@ world } side { - "id" "84442" - "plane" "(2980 454 992) (2980 432 992) (2904 432 1144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.21698] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "id" "61154" + "plane" "(380 -816 429.876) (328 -700.857 372) (328 -700.857 377.667)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84441" - "plane" "(2904 432 992) (2904 454 992) (2904 454 1144)" + "id" "61153" + "plane" "(384 -816 434.333) (380 -816 429.881) (380 -816 435.548)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40.6533] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -42522,109 +42756,119 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "201 138 0" + "groupid" "245243" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218307" + "id" "174721" side { - "id" "84450" - "plane" "(2904 432 1110) (2870 432 1138) (2904 432 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61170" + "plane" "(408 -956 368) (408 -928 368) (416 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84449" - "plane" "(2904 454 1110) (2904 454 1138) (2870 454 1138)" + "id" "61169" + "plane" "(408 -928 336) (408 -928 368) (408 -956 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56.217] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84448" - "plane" "(2904 432 1110) (2904 454 1110) (2870 454 1138)" + "id" "61168" + "plane" "(416 -956 336) (416 -956 368) (416 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 8.21698] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84447" - "plane" "(2904 454 1110) (2904 432 1110) (2904 432 1138)" + "id" "61167" + "plane" "(416 -928 336) (416 -928 368) (408 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40.6533] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84446" - "plane" "(2870 432 1138) (2870 454 1138) (2904 454 1138)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -120.217] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "id" "61166" + "plane" "(408 -956 336) (408 -956 368) (416 -956 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61165" + "plane" "(408 -928 336) (408 -956 336) (416 -956 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218308" + "id" "174722" side { - "id" "84456" - "plane" "(2904 432 1006) (2836 432 1006) (2836 454 1006)" + "id" "61182" + "plane" "(352 -960 368) (352 -928 368) (360 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.21698] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84455" - "plane" "(2836 432 992) (2904 432 992) (2904 454 992)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.21698] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "id" "61181" + "plane" "(352 -928 336) (352 -928 368) (352 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84454" - "plane" "(2904 432 992) (2904 432 1006) (2904 454 1006)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40.6533] 0.25" + "id" "61180" + "plane" "(360 -960 336) (360 -960 368) (360 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -42632,10 +42876,10 @@ world } side { - "id" "84453" - "plane" "(2836 454 992) (2836 454 1006) (2836 432 1006)" + "id" "61179" + "plane" "(360 -928 336) (360 -928 368) (352 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40.6533] 0.25" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -42643,252 +42887,281 @@ world } side { - "id" "84452" - "plane" "(2836 432 992) (2836 432 1006) (2904 432 1006)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61178" + "plane" "(352 -960 336) (352 -960 368) (360 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84451" - "plane" "(2904 454 992) (2904 454 1006) (2836 454 1006)" + "id" "61177" + "plane" "(352 -928 336) (352 -960 336) (360 -960 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.21698] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218309" + "id" "174724" side { - "id" "84461" - "plane" "(2836 432 992) (2836 454 992) (2760 454 992)" + "id" "61194" + "plane" "(368 -960 368) (368 -928 368) (376 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16.217] 0.25" - "vaxis" "[0 1 0 24.6533] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84460" - "plane" "(2760 432 992) (2836 432 1144) (2836 432 992)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61193" + "plane" "(368 -928 336) (368 -928 368) (368 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84459" - "plane" "(2760 454 992) (2836 454 992) (2836 454 1144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16.217] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "61192" + "plane" "(376 -960 336) (376 -960 368) (376 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84458" - "plane" "(2760 432 992) (2760 454 992) (2836 454 1144)" + "id" "61191" + "plane" "(376 -928 336) (376 -928 368) (368 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.21698] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84457" - "plane" "(2836 454 992) (2836 432 992) (2836 432 1144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40.6533] 0.25" + "id" "61190" + "plane" "(368 -960 336) (368 -960 368) (376 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "61189" + "plane" "(368 -928 336) (368 -960 336) (376 -960 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218310" + "id" "174725" + side + { + "id" "61206" + "plane" "(384 -960 368) (384 -928 368) (392 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } side { - "id" "84466" - "plane" "(2870 432 1138) (2879.71 432 1130) (2870 432 1130)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61205" + "plane" "(384 -928 336) (384 -928 368) (384 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84465" - "plane" "(2870 454 1138) (2870 454 1130) (2879.71 454 1130)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16.217] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "61204" + "plane" "(392 -960 336) (392 -960 368) (392 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84464" - "plane" "(2870 432 1138) (2870 454 1138) (2879.71 454 1130)" + "id" "61203" + "plane" "(392 -928 336) (392 -928 368) (384 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.21698] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84463" - "plane" "(2870 432 1130) (2870 454 1130) (2870 454 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40.6533] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "61202" + "plane" "(384 -960 336) (384 -960 368) (392 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84462" - "plane" "(2879.71 432 1130) (2879.71 454 1130) (2870 454 1130)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 80.217] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "id" "61201" + "plane" "(384 -928 336) (384 -960 336) (392 -960 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218311" + "id" "174726" side { - "id" "84471" - "plane" "(2870 432 1138) (2870 432 1130) (2860.28 432 1130)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "61218" + "plane" "(400 -960 368) (400 -928 368) (408 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84470" - "plane" "(2870 454 1138) (2860.28 454 1130) (2870 454 1130)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.21698] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "61217" + "plane" "(400 -928 336) (400 -928 368) (400 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84469" - "plane" "(2860.28 432 1130) (2860.28 454 1130) (2870 454 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16.217] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "id" "61216" + "plane" "(408 -960 336) (408 -960 368) (408 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84468" - "plane" "(2870 454 1130) (2870 432 1130) (2870 432 1138)" + "id" "61215" + "plane" "(408 -928 336) (408 -928 368) (400 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40.6533] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84467" - "plane" "(2870 432 1130) (2870 454 1130) (2860.28 454 1130)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -0.21698] 0.25" - "vaxis" "[0 1 0 40.6533] 0.25" + "id" "61214" + "plane" "(400 -960 336) (400 -960 368) (408 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61213" + "plane" "(400 -928 336) (400 -960 336) (408 -960 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218313" + "id" "174727" side { - "id" "84476" - "plane" "(2700 432 616) (2700 772 616) (2692 772 616)" + "id" "61230" + "plane" "(392 -956 368) (392 -928 368) (400 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84475" - "plane" "(2692 424 616) (2700 432 624) (2700 432 616)" + "id" "61229" + "plane" "(392 -928 336) (392 -928 368) (392 -956 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -42896,65 +43169,75 @@ world } side { - "id" "84474" - "plane" "(2700 772 616) (2700 772 624) (2692 772 616)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 257.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "61228" + "plane" "(400 -956 336) (400 -956 368) (400 -928 368)" + "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" "61227" + "plane" "(400 -928 336) (400 -928 368) (392 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84473" - "plane" "(2692 424 616) (2692 772 616) (2700 772 624)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0.707107 0 0.707107 9.56036] 0.25" - "vaxis" "[0 1 0 67] 0.25" + "id" "61226" + "plane" "(392 -956 336) (392 -956 368) (400 -956 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84472" - "plane" "(2700 772 616) (2700 432 616) (2700 432 624)" + "id" "61225" + "plane" "(392 -928 336) (392 -956 336) (400 -956 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218312" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218314" + "id" "174728" side { - "id" "84481" - "plane" "(2692 424 616) (2692 772 616) (2700 772 616)" + "id" "61242" + "plane" "(376 -956 368) (376 -928 368) (384 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84480" - "plane" "(2700 432 616) (2700 432 608) (2692 424 616)" + "id" "61241" + "plane" "(376 -928 336) (376 -928 368) (376 -956 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -42962,76 +43245,86 @@ world } side { - "id" "84479" - "plane" "(2692 772 616) (2700 772 608) (2700 772 616)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 257.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "61240" + "plane" "(384 -956 336) (384 -956 368) (384 -928 368)" + "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" "84478" - "plane" "(2692 424 616) (2700 432 608) (2700 772 608)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -10] 0.25" - "vaxis" "[0 1 0 67] 0.25" - "rotation" "90" + "id" "61239" + "plane" "(384 -928 336) (384 -928 368) (376 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61238" + "plane" "(376 -956 336) (376 -956 368) (384 -956 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84477" - "plane" "(2700 432 616) (2700 772 616) (2700 772 608)" + "id" "61237" + "plane" "(376 -928 336) (376 -956 336) (384 -956 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218312" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218316" + "id" "174729" side { - "id" "84486" - "plane" "(2668 712 464) (2688 732 484) (2688 712 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -110.467] 0.188" - "vaxis" "[0 1 0 47.3204] 0.188" + "id" "61254" + "plane" "(360 -956 368) (360 -928 368) (368 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84485" - "plane" "(2668 712 460) (2688 712 480) (2688 732 480)" + "id" "61253" + "plane" "(360 -928 336) (360 -928 368) (360 -956 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84484" - "plane" "(2668 712 460) (2668 712 464) (2688 712 484)" + "id" "61252" + "plane" "(368 -956 336) (368 -956 368) (368 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43039,10 +43332,10 @@ world } side { - "id" "84483" - "plane" "(2688 732 480) (2688 732 484) (2668 712 464)" + "id" "61251" + "plane" "(368 -928 336) (368 -928 368) (360 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43050,54 +43343,64 @@ world } side { - "id" "84482" - "plane" "(2688 712 480) (2688 712 484) (2688 732 484)" + "id" "61250" + "plane" "(360 -956 336) (360 -956 368) (368 -956 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61249" + "plane" "(360 -928 336) (360 -956 336) (368 -956 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218315" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218317" + "id" "174813" side { - "id" "84492" - "plane" "(2700 720 472) (2700 712 472) (2688 712 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 14.467] 0.188" - "vaxis" "[0 1 0 47.3204] 0.188" + "id" "61266" + "plane" "(424 -956 368) (424 -928 368) (432 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84491" - "plane" "(2700 712 468) (2700 720 468) (2688 732 480)" + "id" "61265" + "plane" "(424 -928 336) (424 -928 368) (424 -956 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84490" - "plane" "(2700 712 472) (2700 712 468) (2688 712 480)" + "id" "61264" + "plane" "(432 -956 336) (432 -956 368) (432 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43105,10 +43408,10 @@ world } side { - "id" "84489" - "plane" "(2700 720 468) (2700 720 472) (2688 732 484)" + "id" "61263" + "plane" "(432 -928 336) (432 -928 368) (424 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43116,65 +43419,64 @@ world } side { - "id" "84488" - "plane" "(2688 732 480) (2688 732 484) (2688 712 484)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "61262" + "plane" "(424 -956 336) (424 -956 368) (432 -956 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84487" - "plane" "(2700 712 468) (2700 712 472) (2700 720 472)" + "id" "61261" + "plane" "(424 -928 336) (424 -956 336) (432 -956 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218315" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218318" + "id" "174815" side { - "id" "84498" - "plane" "(2688 710 480) (2688 712 480) (2688 712 484)" + "id" "61278" + "plane" "(328 -956 368) (328 -928 368) (336 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84497" - "plane" "(2688 710 480) (2688 710 484) (2700 710 472)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 14.467] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "61277" + "plane" "(328 -928 336) (328 -928 368) (328 -956 368)" + "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" "84496" - "plane" "(2688 712 480) (2700 712 468) (2700 712 472)" + "id" "61276" + "plane" "(336 -956 336) (336 -956 368) (336 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43182,87 +43484,86 @@ world } side { - "id" "84495" - "plane" "(2688 712 480) (2688 710 480) (2700 710 468)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -95.3204] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "61275" + "plane" "(336 -928 336) (336 -928 368) (328 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84494" - "plane" "(2688 710 484) (2688 712 484) (2700 712 472)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -95.3204] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "61274" + "plane" "(328 -956 336) (328 -956 368) (336 -956 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 128] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84493" - "plane" "(2700 712 468) (2700 710 468) (2700 710 472)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 45.128] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "61273" + "plane" "(328 -928 336) (328 -956 336) (336 -956 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218315" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218319" + "id" "174816" side { - "id" "84504" - "plane" "(2688 712 480) (2688 710 480) (2688 710 484)" + "id" "61290" + "plane" "(448 -964 368) (448 -928 368) (464 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84503" - "plane" "(2668 710 460) (2668 712 460) (2668 712 464)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -95.3204] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "61289" + "plane" "(448 -928 64) (448 -928 368) (448 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84502" - "plane" "(2688 710 480) (2668 710 460) (2668 710 464)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -110.467] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "61288" + "plane" "(464 -964 64) (464 -964 368) (464 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84501" - "plane" "(2668 712 460) (2688 712 480) (2688 712 484)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "id" "61287" + "plane" "(464 -928 64) (464 -928 368) (448 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 -96] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43270,87 +43571,108 @@ world } side { - "id" "84500" - "plane" "(2668 710 460) (2688 710 480) (2688 712 480)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -95.3204] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "61286" + "plane" "(448 -964 64) (448 -964 368) (464 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 -64] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84499" - "plane" "(2668 712 464) (2688 712 484) (2688 710 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -95.3204] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "61285" + "plane" "(448 -928 64) (448 -964 64) (464 -964 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" } editor { - "color" "163 140 0" - "groupid" "218315" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218321" + "id" "174909" side { - "id" "84509" - "plane" "(2688 732 484) (2700 732 484) (2700 720 472)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -18.7247] 0.188" - "vaxis" "[-1 0 0 -65.1896] 0.188" + "id" "61318" + "plane" "(200 -960 64) (200 -980 64) (200 -984 68)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 320] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84508" - "plane" "(2700 720 468) (2700 732 480) (2688 732 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" + "id" "61317" + "plane" "(200 -984 72) (200 -984 68) (120 -984 68)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84507" - "plane" "(2688 732 480) (2688 732 484) (2700 720 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "61316" + "plane" "(120 -980 64) (200 -980 64) (200 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84506" - "plane" "(2700 732 480) (2700 732 484) (2688 732 484)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "61315" + "plane" "(200 -984 68) (200 -980 64) (120 -980 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84505" - "plane" "(2700 720 468) (2700 720 472) (2700 732 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 64] 0.25" + "id" "61314" + "plane" "(120 -984 72) (120 -984 68) (120 -980 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61313" + "plane" "(200 -960 72) (200 -984 72) (120 -984 72)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61312" + "plane" "(120 -960 72) (120 -960 64) (200 -960 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43358,43 +43680,53 @@ world } editor { - "color" "163 140 0" - "groupid" "218320" + "color" "0 221 114" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218322" + "id" "170733" side { - "id" "84514" - "plane" "(2700 744 472) (2700 732 484) (2688 732 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 50.7247] 0.188" - "vaxis" "[-1 0 0 -65.1896] 0.188" + "id" "58800" + "plane" "(48 -1776 80) (-48 -1776 64) (-48 -1760 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84513" - "plane" "(2688 732 480) (2700 732 480) (2700 744 468)" + "id" "58799" + "plane" "(48 -1760 0) (-48 -1760 0) (-48 -1776 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84512" - "plane" "(2700 744 468) (2700 744 472) (2688 732 484)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "id" "58798" + "plane" "(48 -1776 0) (-48 -1776 0) (-48 -1776 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58797" + "plane" "(48 -1760 80) (-48 -1760 64) (-48 -1760 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43402,10 +43734,10 @@ world } side { - "id" "84511" - "plane" "(2688 732 480) (2688 732 484) (2700 732 484)" + "id" "58796" + "plane" "(-48 -1776 0) (-48 -1760 0) (-48 -1760 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43413,10 +43745,10 @@ world } side { - "id" "84510" - "plane" "(2700 744 472) (2700 744 468) (2700 732 480)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 64] 0.25" + "id" "58795" + "plane" "(48 -1760 0) (48 -1776 0) (48 -1776 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43424,43 +43756,44 @@ world } editor { - "color" "163 140 0" - "groupid" "218320" + "color" "0 176 105" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218324" + "id" "170746" side { - "id" "84520" - "plane" "(2700 752 472) (2700 744 472) (2688 732 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 93.7853] 0.188" - "vaxis" "[0 -1 0 -101.447] 0.188" + "id" "58812" + "plane" "(-56 -1760 56) (-56 -1640 56) (-32 -1640 56)" + "material" "TEROUST/ARPEGGIO/COURTYARD/COURTYARD_MINITILES_LIGHT" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84519" - "plane" "(2700 744 468) (2700 752 468) (2688 752 480)" + "id" "58811" + "plane" "(-56 -1640 48) (-56 -1640 56) (-56 -1760 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84518" - "plane" "(2700 752 468) (2700 752 472) (2688 752 484)" + "id" "58810" + "plane" "(-32 -1760 48) (-32 -1760 56) (-32 -1640 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43468,10 +43801,10 @@ world } side { - "id" "84517" - "plane" "(2688 732 480) (2688 732 484) (2700 744 472)" + "id" "58809" + "plane" "(-32 -1640 48) (-32 -1640 56) (-56 -1640 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43479,10 +43812,10 @@ world } side { - "id" "84516" - "plane" "(2688 752 480) (2688 752 484) (2688 732 484)" + "id" "58808" + "plane" "(-56 -1760 48) (-56 -1760 56) (-32 -1760 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43490,131 +43823,142 @@ world } side { - "id" "84515" - "plane" "(2700 744 468) (2700 744 472) (2700 752 472)" + "id" "58807" + "plane" "(-56 -1640 48) (-56 -1760 48) (-32 -1760 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218323" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218325" + "id" "170755" side { - "id" "84525" - "plane" "(2668 752 464) (2688 752 484) (2688 732 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -61.7853] 0.188" - "vaxis" "[0 -1 0 -101.447] 0.188" + "id" "58824" + "plane" "(-24 -1752 64) (-24 -1648 64) (72 -1648 64)" + "material" "TEROUST/ARPEGGIO/COURTYARD/COURTYARD_MINITILES_LIGHT" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84524" - "plane" "(2668 752 460) (2688 732 480) (2688 752 480)" + "id" "58823" + "plane" "(-24 -1648 56) (-24 -1648 64) (-24 -1752 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84523" - "plane" "(2668 752 464) (2668 752 460) (2688 752 480)" + "id" "58822" + "plane" "(72 -1752 56) (72 -1752 64) (72 -1648 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84522" - "plane" "(2668 752 460) (2668 752 464) (2688 732 484)" + "id" "58821" + "plane" "(72 -1648 56) (72 -1648 64) (-24 -1648 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84521" - "plane" "(2688 732 480) (2688 732 484) (2688 752 484)" + "id" "58820" + "plane" "(-24 -1752 56) (-24 -1752 64) (72 -1752 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58819" + "plane" "(-24 -1648 56) (-24 -1752 56) (72 -1752 56)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218323" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218326" + "id" "170771" side { - "id" "84531" - "plane" "(2688 754 480) (2688 752 480) (2688 752 484)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "58842" + "plane" "(-208 -1640 72) (-192 -1640 72) (-192 -1744 72)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84530" - "plane" "(2668 752 460) (2668 754 460) (2668 754 464)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 53.4474] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58841" + "plane" "(-208 -1640 32) (-208 -1640 72) (-208 -1744 72)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84529" - "plane" "(2668 754 460) (2688 754 480) (2688 754 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -61.7853] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58840" + "plane" "(-192 -1640 72) (-192 -1640 32) (-192 -1744 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84528" - "plane" "(2688 752 480) (2668 752 460) (2668 752 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "id" "58839" + "plane" "(-192 -1640 72) (-208 -1640 72) (-208 -1640 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43622,65 +43966,65 @@ world } side { - "id" "84527" - "plane" "(2668 752 460) (2688 752 480) (2688 754 480)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 53.4474] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58838" + "plane" "(-208 -1744 32) (-192 -1744 32) (-192 -1640 32)" + "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" "84526" - "plane" "(2668 754 464) (2688 754 484) (2688 752 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 53.4474] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58837" + "plane" "(-208 -1744 72) (-192 -1744 72) (-192 -1744 32)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218323" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218327" + "id" "170772" side { - "id" "84537" - "plane" "(2688 752 480) (2688 754 480) (2688 754 484)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "58848" + "plane" "(-208 -1744 72) (-192 -1744 72) (-192 -1776 56)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -320] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84536" - "plane" "(2688 754 480) (2700 754 468) (2700 754 472)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 93.7853] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58847" + "plane" "(-208 -1776 56) (-208 -1776 32) (-208 -1744 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84535" - "plane" "(2688 752 480) (2688 752 484) (2700 752 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "58846" + "plane" "(-192 -1776 32) (-192 -1776 56) (-192 -1744 72)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43688,32 +44032,32 @@ world } side { - "id" "84534" - "plane" "(2688 754 480) (2688 752 480) (2700 752 468)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 53.4474] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58845" + "plane" "(-208 -1776 56) (-192 -1776 56) (-192 -1776 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84533" - "plane" "(2688 752 484) (2688 754 484) (2700 754 472)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 53.4474] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58844" + "plane" "(-208 -1776 32) (-192 -1776 32) (-192 -1744 32)" + "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" "84532" - "plane" "(2700 754 468) (2700 752 468) (2700 752 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "58843" + "plane" "(-192 -1744 72) (-208 -1744 72) (-208 -1744 32)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43721,43 +44065,43 @@ world } editor { - "color" "163 140 0" - "groupid" "218323" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218329" + "id" "170828" side { - "id" "84542" - "plane" "(2668 752 464) (2688 732 484) (2668 732 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 2.04306] 0.188" - "vaxis" "[1 0 0 11.0627] 0.188" + "id" "58890" + "plane" "(128 896 0) (320 672 0) (384 736 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" + "vaxis" "[0.707107 -0.707107 0 -26.7431] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84541" - "plane" "(2668 752 460) (2668 732 480) (2688 732 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "58889" + "plane" "(320 672 64) (128 896 64) (138.981 943.529 64)" + "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0.707107 -0.707107 0 251.606] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84540" - "plane" "(2668 752 460) (2668 752 464) (2668 732 484)" + "id" "58888" + "plane" "(320 672 0) (128 896 0) (128 896 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43765,10 +44109,10 @@ world } side { - "id" "84539" - "plane" "(2688 732 480) (2688 732 484) (2668 752 464)" + "id" "58887" + "plane" "(138.981 943.529 0) (384 736 0) (384 736 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43776,10 +44120,21 @@ world } side { - "id" "84538" - "plane" "(2668 732 480) (2668 732 484) (2688 732 484)" + "id" "58886" + "plane" "(384 736 0) (320 672 0) (320 672 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58885" + "plane" "(128 896 0) (138.981 943.529 0) (138.981 943.529 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43787,43 +44142,44 @@ world } editor { - "color" "163 140 0" - "groupid" "218328" + "color" "220 220 220" + "groupid" "170827" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218330" + "id" "170829" side { - "id" "84547" - "plane" "(2668 712 464) (2668 732 484) (2688 732 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -98.0431] 0.188" - "vaxis" "[1 0 0 11.0627] 0.188" + "id" "58896" + "plane" "(138.981 943.529 0) (384 736 0) (436 820 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" + "vaxis" "[0.707107 -0.707107 0 -26.7431] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84546" - "plane" "(2668 712 460) (2688 732 480) (2668 732 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "58895" + "plane" "(384 736 64) (138.981 943.529 64) (150.294 977.47 64)" + "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" + "uaxis" "[0.512362 0.827662 0.229039 -114.424] 0.25" + "vaxis" "[0.850265 -0.526355 0 -500.419] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84545" - "plane" "(2668 712 464) (2668 712 460) (2668 732 480)" + "id" "58894" + "plane" "(384 736 0) (138.981 943.529 0) (138.981 943.529 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43831,10 +44187,10 @@ world } side { - "id" "84544" - "plane" "(2668 712 460) (2668 712 464) (2688 732 484)" + "id" "58893" + "plane" "(150.294 977.47 0) (436 820 0) (436 820 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43842,10 +44198,21 @@ world } side { - "id" "84543" - "plane" "(2688 732 480) (2688 732 484) (2668 732 484)" + "id" "58892" + "plane" "(436 820 0) (384 736 0) (384 736 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58891" + "plane" "(138.981 943.529 0) (150.294 977.47 0) (150.294 977.47 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43853,54 +44220,55 @@ world } editor { - "color" "163 140 0" - "groupid" "218328" + "color" "220 220 220" + "groupid" "170827" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218331" + "id" "170830" side { - "id" "84553" - "plane" "(2666 732 480) (2668 732 480) (2668 732 484)" + "id" "58902" + "plane" "(150.294 977.47 0) (436 820 0) (472.735 903.931 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" + "vaxis" "[0.707107 -0.707107 0 -26.7431] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84552" - "plane" "(2668 712 460) (2666 712 460) (2666 712 464)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -59.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58901" + "plane" "(436 820 64) (150.294 977.47 64) (172.922 1045.35 64)" + "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" + "uaxis" "[0.373412 0.853159 0.364257 9.66244] 0.25" + "vaxis" "[0.916096 -0.400959 0 -2.52637] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84551" - "plane" "(2666 712 460) (2666 732 480) (2666 732 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -98.0431] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58900" + "plane" "(436 820 0) (150.294 977.47 0) (150.294 977.47 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84550" - "plane" "(2668 732 480) (2668 712 460) (2668 712 464)" + "id" "58899" + "plane" "(172.922 1045.35 0) (472.735 903.931 0) (472.735 903.931 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43908,76 +44276,77 @@ world } side { - "id" "84549" - "plane" "(2668 712 460) (2668 732 480) (2666 732 480)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -59.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58898" + "plane" "(472.735 903.931 0) (436 820 0) (436 820 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84548" - "plane" "(2666 712 464) (2666 732 484) (2668 732 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -59.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58897" + "plane" "(150.294 977.47 0) (172.922 1045.35 0) (172.922 1045.35 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218328" + "color" "220 220 220" + "groupid" "170827" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218332" + "id" "170831" side { - "id" "84559" - "plane" "(2668 732 480) (2666 732 480) (2666 732 484)" + "id" "58908" + "plane" "(172.922 1045.35 0) (472.735 903.931 0) (498.191 997.269 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" + "vaxis" "[0.707107 -0.707107 0 -26.7431] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84558" - "plane" "(2666 752 460) (2668 752 460) (2668 752 464)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -59.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58907" + "plane" "(472.735 903.931 64) (172.922 1045.35 64) (184.236 1079.29 64)" + "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" + "uaxis" "[0.228449 0.837649 0.496139 306.095] 0.25" + "vaxis" "[0.964764 -0.263117 0 -592.953] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84557" - "plane" "(2666 732 480) (2666 752 460) (2666 752 464)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 2.04306] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58906" + "plane" "(472.735 903.931 0) (172.922 1045.35 0) (172.922 1045.35 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84556" - "plane" "(2668 752 460) (2668 732 480) (2668 732 484)" + "id" "58905" + "plane" "(184.236 1079.29 0) (498.191 997.269 0) (498.191 997.269 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43985,65 +44354,66 @@ world } side { - "id" "84555" - "plane" "(2666 752 460) (2666 732 480) (2668 732 480)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -59.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58904" + "plane" "(498.191 997.269 0) (472.735 903.931 0) (472.735 903.931 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84554" - "plane" "(2668 752 464) (2668 732 484) (2666 732 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -59.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58903" + "plane" "(172.922 1045.35 0) (184.236 1079.29 0) (184.236 1079.29 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218328" + "color" "220 220 220" + "groupid" "170827" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218334" + "id" "170832" side { - "id" "84565" - "plane" "(2700 492 472) (2700 484 472) (2688 472 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 93.7853] 0.188" - "vaxis" "[0 -1 0 -76.4259] 0.188" + "id" "58914" + "plane" "(184 1088 0) (184.236 1079.29 0) (498.191 997.269 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" + "vaxis" "[0.707107 -0.707107 0 -26.7431] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84564" - "plane" "(2700 484 468) (2700 492 468) (2688 492 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "58913" + "plane" "(512 1088 64) (498.191 997.269 64) (184.236 1079.29 64)" + "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" + "uaxis" "[0.121193 0.796282 0.592661 660.14] 0.25" + "vaxis" "[0.988615 -0.150466 0 -65.8572] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84563" - "plane" "(2700 492 468) (2700 492 472) (2688 492 484)" + "id" "58912" + "plane" "(498.191 997.269 64) (498.191 997.269 0) (184.236 1079.29 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44051,10 +44421,10 @@ world } side { - "id" "84562" - "plane" "(2688 472 480) (2688 472 484) (2700 484 472)" + "id" "58911" + "plane" "(184 1088 64) (184 1088 0) (512 1088 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44062,21 +44432,21 @@ world } side { - "id" "84561" - "plane" "(2688 492 480) (2688 492 484) (2688 472 484)" + "id" "58910" + "plane" "(512 1088 64) (512 1088 0) (498.191 997.269 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84560" - "plane" "(2700 484 468) (2700 484 472) (2700 492 472)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 64] 0.25" + "id" "58909" + "plane" "(184.236 1079.29 64) (184.236 1079.29 0) (184 1088 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44084,43 +44454,44 @@ world } editor { - "color" "163 140 0" - "groupid" "218333" + "color" "220 220 220" + "groupid" "170827" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218335" + "id" "170833" side { - "id" "84570" - "plane" "(2668 492 464) (2688 492 484) (2688 472 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -61.7853] 0.188" - "vaxis" "[0 -1 0 -76.4259] 0.188" + "id" "58920" + "plane" "(512 1440 0) (128 1440 0) (128 1088 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" + "vaxis" "[0.707107 -0.707107 0 -26.7431] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84569" - "plane" "(2668 492 460) (2688 472 480) (2688 492 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "58919" + "plane" "(128 1440 64) (512 1440 64) (512 1088 64)" + "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" + "uaxis" "[0 0.707107 0.707107 243.135] 0.25" + "vaxis" "[1 0 0 -744] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84568" - "plane" "(2668 492 464) (2668 492 460) (2688 492 480)" + "id" "58918" + "plane" "(128 1088 64) (512 1088 64) (512 1088 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44128,10 +44499,10 @@ world } side { - "id" "84567" - "plane" "(2668 492 460) (2668 492 464) (2688 472 484)" + "id" "58917" + "plane" "(512 1440 64) (128 1440 64) (128 1440 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44139,10 +44510,21 @@ world } side { - "id" "84566" - "plane" "(2688 472 480) (2688 472 484) (2688 492 484)" + "id" "58916" + "plane" "(512 1088 64) (512 1440 64) (512 1440 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58915" + "plane" "(128 1440 64) (128 1088 64) (128 1088 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44150,54 +44532,55 @@ world } editor { - "color" "163 140 0" - "groupid" "218333" + "color" "220 220 220" + "groupid" "170827" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218336" + "id" "170952" side { - "id" "84576" - "plane" "(2688 494 480) (2688 492 480) (2688 492 484)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "58932" + "plane" "(512 1280 68) (720 1072 68) (432 784 68)" + "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" "84575" - "plane" "(2668 492 460) (2668 494 460) (2668 494 464)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 28.4259] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58931" + "plane" "(416 800 0) (432 784 0) (720 1072 0)" + "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" "84574" - "plane" "(2668 494 460) (2688 494 480) (2688 494 484)" + "id" "58930" + "plane" "(512 1280 0) (512 1280 68) (416 800 68)" "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -61.7853] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84573" - "plane" "(2688 492 480) (2668 492 460) (2668 492 464)" + "id" "58929" + "plane" "(432 784 0) (432 784 68) (720 1072 68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44205,65 +44588,65 @@ world } side { - "id" "84572" - "plane" "(2668 492 460) (2688 492 480) (2688 494 480)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 28.4259] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58928" + "plane" "(720 1072 0) (720 1072 68) (512 1280 68)" + "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" "84571" - "plane" "(2668 494 464) (2688 494 484) (2688 492 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 28.4259] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58927" + "plane" "(416 800 0) (416 800 68) (432 784 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218333" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218337" + "id" "170994" side { - "id" "84582" - "plane" "(2688 492 480) (2688 494 480) (2688 494 484)" + "id" "58950" + "plane" "(-128 -960 -128) (448 -960 -128) (448 -928 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84581" - "plane" "(2688 494 480) (2700 494 468) (2700 494 472)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 93.7853] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58949" + "plane" "(-128 -928 -128) (-128 -928 -64) (-128 -960 -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" "84580" - "plane" "(2688 492 480) (2688 492 484) (2700 492 472)" + "id" "58948" + "plane" "(448 -960 -128) (448 -960 -64) (448 -928 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44271,76 +44654,75 @@ world } side { - "id" "84579" - "plane" "(2688 494 480) (2688 492 480) (2700 492 468)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 28.4259] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58947" + "plane" "(448 -928 -128) (448 -928 -64) (-128 -928 -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" "84578" - "plane" "(2688 492 484) (2688 494 484) (2700 494 472)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 28.4259] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58946" + "plane" "(-128 -960 -128) (-128 -960 -64) (448 -960 -64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84577" - "plane" "(2700 494 468) (2700 492 468) (2700 492 472)" + "id" "58945" + "plane" "(-128 -928 -64) (448 -928 -64) (448 -960 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218333" + "color" "0 243 128" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218339" + "id" "170996" side { - "id" "84587" - "plane" "(2668 492 464) (2688 472 484) (2668 472 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 105.023] 0.188" - "vaxis" "[1 0 0 11.0627] 0.188" + "id" "58962" + "plane" "(-128 -964 -32) (-128 -928 -32) (448 -928 -32)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84586" - "plane" "(2668 492 460) (2668 472 480) (2688 472 480)" + "id" "58961" + "plane" "(-128 -928 -64) (-128 -928 -32) (-128 -964 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84585" - "plane" "(2668 492 460) (2668 492 464) (2668 472 484)" + "id" "58960" + "plane" "(448 -964 -64) (448 -964 -32) (448 -928 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44348,10 +44730,10 @@ world } side { - "id" "84584" - "plane" "(2688 472 480) (2688 472 484) (2668 492 464)" + "id" "58959" + "plane" "(448 -928 -64) (448 -928 -32) (-128 -928 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44359,54 +44741,64 @@ world } side { - "id" "84583" - "plane" "(2668 472 480) (2668 472 484) (2688 472 484)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "id" "58958" + "plane" "(-128 -964 -64) (-128 -964 -32) (448 -964 -32)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "58957" + "plane" "(-128 -928 -64) (-128 -964 -64) (448 -964 -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" + } editor { - "color" "163 140 0" - "groupid" "218338" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218340" + "id" "171002" side { - "id" "84592" - "plane" "(2668 452 464) (2668 472 484) (2688 472 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -73.0216] 0.188" - "vaxis" "[1 0 0 11.0627] 0.188" + "id" "58974" + "plane" "(120 -960 64) (120 -928 64) (128 -928 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" "84591" - "plane" "(2668 452 460) (2688 472 480) (2668 472 480)" + "id" "58973" + "plane" "(120 -928 -32) (120 -928 64) (120 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84590" - "plane" "(2668 452 464) (2668 452 460) (2668 472 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "id" "58972" + "plane" "(128 -960 -32) (128 -960 64) (128 -928 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44414,10 +44806,10 @@ world } side { - "id" "84589" - "plane" "(2668 452 460) (2668 452 464) (2688 472 484)" + "id" "58971" + "plane" "(128 -928 -32) (128 -928 64) (120 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44425,65 +44817,75 @@ world } side { - "id" "84588" - "plane" "(2688 472 480) (2688 472 484) (2668 472 484)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "id" "58970" + "plane" "(120 -960 -32) (120 -960 64) (128 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "58969" + "plane" "(120 -928 -32) (120 -960 -32) (128 -960 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218338" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218341" + "id" "171005" side { - "id" "84598" - "plane" "(2666 472 480) (2668 472 480) (2668 472 484)" + "id" "58986" + "plane" "(192 -960 64) (192 -928 64) (200 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84597" - "plane" "(2668 452 460) (2666 452 460) (2666 452 464)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -59.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58985" + "plane" "(192 -928 -32) (192 -928 64) (192 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84596" - "plane" "(2666 452 460) (2666 472 480) (2666 472 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -73.0216] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58984" + "plane" "(200 -960 -32) (200 -960 64) (200 -928 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" "84595" - "plane" "(2668 472 480) (2668 452 460) (2668 452 464)" + "id" "58983" + "plane" "(200 -928 -32) (200 -928 64) (192 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44491,76 +44893,75 @@ world } side { - "id" "84594" - "plane" "(2668 452 460) (2668 472 480) (2666 472 480)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -59.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58982" + "plane" "(192 -960 -32) (192 -960 64) (200 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84593" - "plane" "(2666 452 464) (2666 472 484) (2668 472 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -59.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" - "rotation" "0" + "id" "58981" + "plane" "(192 -928 -32) (192 -960 -32) (200 -960 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218338" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218342" + "id" "171012" side { - "id" "84604" - "plane" "(2668 472 480) (2666 472 480) (2666 472 484)" + "id" "58998" + "plane" "(128 -960 64) (128 -928 64) (192 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84603" - "plane" "(2666 492 460) (2668 492 460) (2668 492 464)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -59.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58997" + "plane" "(128 -928 56) (128 -928 64) (128 -960 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" "84602" - "plane" "(2666 472 480) (2666 492 460) (2666 492 464)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 105.023] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58996" + "plane" "(192 -960 56) (192 -960 64) (192 -928 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" "84601" - "plane" "(2668 492 460) (2668 472 480) (2668 472 484)" + "id" "58995" + "plane" "(192 -928 56) (192 -928 64) (128 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44568,131 +44969,140 @@ world } side { - "id" "84600" - "plane" "(2666 492 460) (2666 472 480) (2668 472 480)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -59.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58994" + "plane" "(128 -960 56) (128 -960 64) (192 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84599" - "plane" "(2668 492 464) (2668 472 484) (2666 472 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -59.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "58993" + "plane" "(128 -928 56) (128 -960 56) (192 -960 56)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218338" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218344" + "id" "171017" side { - "id" "84609" - "plane" "(2688 472 484) (2700 472 484) (2700 460 472)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -121.703] 0.188" - "vaxis" "[-1 0 0 -65.1896] 0.188" + "id" "59010" + "plane" "(128 -952 56) (128 -928 56) (192 -928 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84608" - "plane" "(2700 460 468) (2700 472 480) (2688 472 480)" + "id" "59009" + "plane" "(128 -928 -32) (128 -928 56) (128 -952 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84607" - "plane" "(2688 472 480) (2688 472 484) (2700 460 472)" + "id" "59008" + "plane" "(192 -952 -32) (192 -952 56) (192 -928 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84606" - "plane" "(2700 472 480) (2700 472 484) (2688 472 484)" + "id" "59007" + "plane" "(192 -928 -32) (192 -928 56) (128 -928 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84605" - "plane" "(2700 460 468) (2700 460 472) (2700 472 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "59006" + "plane" "(128 -952 -32) (128 -952 56) (192 -952 56)" + "material" "METAL/METALDOOR001A" + "uaxis" "[1 0 0 -264.258] 0.155" + "vaxis" "[0 0 -1 353.584] 0.202" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59005" + "plane" "(128 -928 -32) (128 -952 -32) (192 -952 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218343" + "color" "0 131 176" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218345" + "id" "171025" side { - "id" "84614" - "plane" "(2700 484 472) (2700 472 484) (2688 472 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 25.7032] 0.188" - "vaxis" "[-1 0 0 -65.1896] 0.188" + "id" "59022" + "plane" "(200 -960 64) (200 -928 64) (216 -928 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84613" - "plane" "(2688 472 480) (2700 472 480) (2700 484 468)" + "id" "59021" + "plane" "(200 -928 -32) (200 -928 64) (200 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84612" - "plane" "(2700 484 468) (2700 484 472) (2688 472 484)" + "id" "59020" + "plane" "(216 -960 -32) (216 -960 64) (216 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44700,10 +45110,10 @@ world } side { - "id" "84611" - "plane" "(2688 472 480) (2688 472 484) (2700 472 484)" + "id" "59019" + "plane" "(216 -928 -32) (216 -928 64) (200 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44711,54 +45121,64 @@ world } side { - "id" "84610" - "plane" "(2700 484 472) (2700 484 468) (2700 472 480)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 64] 0.25" + "id" "59018" + "plane" "(200 -960 -32) (200 -960 64) (216 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "59017" + "plane" "(200 -928 -32) (200 -960 -32) (216 -960 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218343" + "color" "0 183 140" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218347" + "id" "171032" side { - "id" "84619" - "plane" "(2668 452 464) (2688 472 484) (2688 452 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -110.467] 0.188" - "vaxis" "[0 1 0 22.2989] 0.188" + "id" "59034" + "plane" "(104 -960 64) (104 -928 64) (120 -928 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" "84618" - "plane" "(2668 452 460) (2688 452 480) (2688 472 480)" + "id" "59033" + "plane" "(104 -928 -32) (104 -928 64) (104 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84617" - "plane" "(2668 452 460) (2668 452 464) (2688 452 484)" + "id" "59032" + "plane" "(120 -960 -32) (120 -960 64) (120 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44766,10 +45186,10 @@ world } side { - "id" "84616" - "plane" "(2688 472 480) (2688 472 484) (2668 452 464)" + "id" "59031" + "plane" "(120 -928 -32) (120 -928 64) (104 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44777,54 +45197,64 @@ world } side { - "id" "84615" - "plane" "(2688 452 480) (2688 452 484) (2688 472 484)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "59030" + "plane" "(104 -960 -32) (104 -960 64) (120 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "59029" + "plane" "(104 -928 -32) (104 -960 -32) (120 -960 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218346" + "color" "0 183 140" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218348" + "id" "171035" side { - "id" "84625" - "plane" "(2700 460 472) (2700 452 472) (2688 452 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 14.467] 0.188" - "vaxis" "[0 1 0 22.2989] 0.188" + "id" "59046" + "plane" "(216 -960 64) (216 -928 64) (224 -928 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84624" - "plane" "(2700 452 468) (2700 460 468) (2688 472 480)" + "id" "59045" + "plane" "(216 -928 -32) (216 -928 64) (216 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84623" - "plane" "(2700 452 472) (2700 452 468) (2688 452 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "59044" + "plane" "(224 -960 -32) (224 -960 64) (224 -928 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44832,10 +45262,10 @@ world } side { - "id" "84622" - "plane" "(2700 460 468) (2700 460 472) (2688 472 484)" + "id" "59043" + "plane" "(224 -928 -32) (224 -928 64) (216 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44843,10 +45273,10 @@ world } side { - "id" "84621" - "plane" "(2688 472 480) (2688 472 484) (2688 452 484)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "59042" + "plane" "(216 -960 -32) (216 -960 64) (224 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44854,54 +45284,53 @@ world } side { - "id" "84620" - "plane" "(2700 452 468) (2700 452 472) (2700 460 472)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "59041" + "plane" "(216 -928 -32) (216 -960 -32) (224 -960 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218346" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218349" + "id" "171036" side { - "id" "84631" - "plane" "(2688 450 480) (2688 452 480) (2688 452 484)" + "id" "59058" + "plane" "(288 -960 64) (288 -928 64) (296 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84630" - "plane" "(2688 450 480) (2688 450 484) (2700 450 472)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 14.467] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "59057" + "plane" "(288 -928 -32) (288 -928 64) (288 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84629" - "plane" "(2688 452 480) (2700 452 468) (2700 452 472)" + "id" "59056" + "plane" "(296 -960 -32) (296 -960 64) (296 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44909,87 +45338,86 @@ world } side { - "id" "84628" - "plane" "(2688 452 480) (2688 450 480) (2700 450 468)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -70.2989] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "59055" + "plane" "(296 -928 -32) (296 -928 64) (288 -928 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" "84627" - "plane" "(2688 450 484) (2688 452 484) (2700 452 472)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -70.2989] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "59054" + "plane" "(288 -960 -32) (288 -960 64) (296 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84626" - "plane" "(2700 452 468) (2700 450 468) (2700 450 472)" + "id" "59053" + "plane" "(288 -928 -32) (288 -960 -32) (296 -960 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218346" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218350" + "id" "171037" side { - "id" "84637" - "plane" "(2688 452 480) (2688 450 480) (2688 450 484)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "59070" + "plane" "(224 -960 -24) (224 -928 -24) (288 -928 -24)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84636" - "plane" "(2668 450 460) (2668 452 460) (2668 452 464)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -70.2989] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "59069" + "plane" "(224 -928 -32) (224 -928 -24) (224 -960 -24)" + "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" "84635" - "plane" "(2688 450 480) (2668 450 460) (2668 450 464)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -110.467] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "59068" + "plane" "(288 -960 -32) (288 -960 -24) (288 -928 -24)" + "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" "84634" - "plane" "(2668 452 460) (2688 452 480) (2688 452 484)" + "id" "59067" + "plane" "(288 -928 -32) (288 -928 -24) (224 -928 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -44997,120 +45425,129 @@ world } side { - "id" "84633" - "plane" "(2668 450 460) (2688 450 480) (2688 452 480)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -70.2989] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "59066" + "plane" "(224 -960 -32) (224 -960 -24) (288 -960 -24)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84632" - "plane" "(2668 452 464) (2688 452 484) (2688 450 484)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -70.2989] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "59065" + "plane" "(224 -928 -32) (224 -960 -32) (288 -960 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218346" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218352" + "id" "171040" side { - "id" "84642" - "plane" "(3040 772 984) (3040 432 984) (3048 424 984)" + "id" "59082" + "plane" "(224 -960 64) (224 -928 64) (288 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84641" - "plane" "(3048 780 984) (3040 772 992) (3040 772 984)" + "id" "59081" + "plane" "(224 -928 56) (224 -928 64) (224 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84640" - "plane" "(3040 432 984) (3040 432 992) (3048 424 984)" + "id" "59080" + "plane" "(288 -960 56) (288 -960 64) (288 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84639" - "plane" "(3048 780 984) (3048 424 984) (3040 432 992)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[-0.707107 0 0.707107 -2.12382] 0.25" - "vaxis" "[0 -1 0 -237] 0.25" + "id" "59079" + "plane" "(288 -928 56) (288 -928 64) (224 -928 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84638" - "plane" "(3040 432 984) (3040 772 984) (3040 772 992)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "59078" + "plane" "(224 -960 56) (224 -960 64) (288 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "59077" + "plane" "(224 -928 56) (224 -960 56) (288 -960 56)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218351" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218353" + "id" "171041" side { - "id" "84647" - "plane" "(3040 432 984) (3040 772 984) (3048 780 984)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" + "id" "59106" + "plane" "(96 -928 -24) (96 -960 -24) (32 -960 -24)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84646" - "plane" "(3040 772 984) (3040 772 976) (3048 780 984)" + "id" "59105" + "plane" "(96 -960 -32) (96 -960 -24) (96 -928 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -45118,10 +45555,10 @@ world } side { - "id" "84645" - "plane" "(3048 424 984) (3040 432 976) (3040 432 984)" + "id" "59104" + "plane" "(32 -928 -32) (32 -928 -24) (32 -960 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -45129,63 +45566,73 @@ world } side { - "id" "84644" - "plane" "(3048 780 984) (3040 772 976) (3040 432 976)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -48] 0.25" - "vaxis" "[0 -1 0 -237] 0.25" - "rotation" "90" + "id" "59103" + "plane" "(32 -960 -32) (32 -960 -24) (96 -960 -24)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84643" - "plane" "(3040 772 984) (3040 432 984) (3040 432 976)" + "id" "59102" + "plane" "(96 -928 -32) (96 -928 -24) (32 -928 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[-1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "59101" + "plane" "(96 -960 -32) (96 -928 -32) (32 -928 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218351" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218355" + "id" "171042" side { - "id" "84652" - "plane" "(2760 432 616) (2700 432 616) (2692 424 616)" + "id" "59112" + "plane" "(32 -928 64) (32 -960 64) (24 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84651" - "plane" "(2760 424 616) (2760 432 624) (2760 432 616)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -30.7237] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "59111" + "plane" "(32 -960 -32) (32 -960 64) (32 -928 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84650" - "plane" "(2700 432 616) (2700 432 624) (2692 424 616)" + "id" "59110" + "plane" "(24 -928 -32) (24 -928 64) (24 -960 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -45195,19 +45642,19 @@ world } side { - "id" "84649" - "plane" "(2760 424 616) (2692 424 616) (2700 432 624)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0.707107 0.707107 24.4356] 0.25" - "vaxis" "[-1 0 0 267] 0.25" + "id" "59109" + "plane" "(24 -960 -32) (24 -960 64) (32 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84648" - "plane" "(2700 432 616) (2760 432 616) (2760 432 624)" + "id" "59108" + "plane" "(32 -928 -32) (32 -928 64) (24 -928 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -45215,111 +45662,131 @@ world "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "59107" + "plane" "(32 -960 -32) (32 -928 -32) (24 -928 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218354" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218356" + "id" "171043" side { - "id" "84657" - "plane" "(2760 424 616) (2692 424 616) (2700 432 616)" + "id" "59118" + "plane" "(96 -928 64) (96 -960 64) (32 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84656" - "plane" "(2760 432 616) (2760 432 608) (2760 424 616)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -30.7237] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "59117" + "plane" "(96 -960 56) (96 -960 64) (96 -928 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84655" - "plane" "(2692 424 616) (2700 432 608) (2700 432 616)" + "id" "59116" + "plane" "(32 -928 56) (32 -928 64) (32 -960 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84654" - "plane" "(2760 424 616) (2760 432 608) (2700 432 608)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -10] 0.25" - "vaxis" "[-1 0 0 267] 0.25" - "rotation" "90" + "id" "59115" + "plane" "(32 -960 56) (32 -960 64) (96 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84653" - "plane" "(2760 432 616) (2700 432 616) (2700 432 608)" + "id" "59114" + "plane" "(96 -928 56) (96 -928 64) (32 -928 64)" "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59113" + "plane" "(96 -960 56) (96 -928 56) (32 -928 56)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218354" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218358" + "id" "171047" side { - "id" "84662" - "plane" "(2752 424 360) (2760 432 360) (2700 432 360)" + "id" "59130" + "plane" "(224 -956 56) (224 -928 56) (288 -928 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84661" - "plane" "(2708 424 360) (2700 432 368) (2760 432 368)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0.707107 0.707107 6.51325] 0.25" - "vaxis" "[-1 0 0 267] 0.25" + "id" "59129" + "plane" "(224 -928 -24) (224 -928 56) (224 -956 56)" + "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" "84660" - "plane" "(2760 432 360) (2760 432 368) (2700 432 368)" + "id" "59128" + "plane" "(288 -956 -24) (288 -956 56) (288 -928 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -45327,10 +45794,21 @@ world } side { - "id" "84659" - "plane" "(2752 424 360) (2760 432 368) (2760 432 360)" + "id" "59127" + "plane" "(288 -928 -24) (288 -928 56) (224 -928 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59126" + "plane" "(224 -956 -24) (224 -956 56) (288 -956 56)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -45338,54 +45816,53 @@ world } side { - "id" "84658" - "plane" "(2700 432 360) (2700 432 368) (2708 424 360)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -48] 0.25" - "vaxis" "[-1 0 0 267] 0.25" + "id" "59125" + "plane" "(224 -928 -24) (224 -956 -24) (288 -956 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218357" + "color" "0 183 140" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218359" + "id" "171051" side { - "id" "84667" - "plane" "(2708 424 360) (2700 432 360) (2760 432 360)" + "id" "59142" + "plane" "(32 -956 56) (32 -928 56) (96 -928 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84666" - "plane" "(2700 432 352) (2708 424 360) (2752 424 360)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -48] 0.25" - "vaxis" "[-1 0 0 267] 0.25" - "rotation" "90" + "id" "59141" + "plane" "(32 -928 -24) (32 -928 56) (32 -956 56)" + "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" "84665" - "plane" "(2760 432 352) (2760 432 360) (2700 432 360)" + "id" "59140" + "plane" "(96 -956 -24) (96 -956 56) (96 -928 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -45393,10 +45870,10 @@ world } side { - "id" "84664" - "plane" "(2752 424 360) (2760 432 360) (2760 432 352)" + "id" "59139" + "plane" "(96 -928 -24) (96 -928 56) (32 -928 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -45404,65 +45881,75 @@ world } side { - "id" "84663" - "plane" "(2708 424 360) (2700 432 352) (2700 432 360)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -48] 0.25" - "vaxis" "[-1 0 0 267] 0.25" - "rotation" "90" + "id" "59138" + "plane" "(32 -956 -24) (32 -956 56) (96 -956 56)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59137" + "plane" "(32 -928 -24) (32 -956 -24) (96 -956 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218357" + "color" "0 183 140" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218361" + "id" "171052" side { - "id" "84672" - "plane" "(2752 208 360) (2760 208 360) (2760 432 360)" + "id" "59154" + "plane" "(96 -960 64) (96 -928 64) (104 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84671" - "plane" "(2752 208 360) (2760 208 368) (2760 208 360)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "59153" + "plane" "(96 -928 -32) (96 -928 64) (96 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84670" - "plane" "(2752 208 360) (2752 424 360) (2760 432 368)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0.707107 0 0.707107 13.9314] 0.25" - "vaxis" "[0 1 0 67] 0.25" + "id" "59152" + "plane" "(104 -960 -32) (104 -960 64) (104 -928 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" "84669" - "plane" "(2760 208 360) (2760 208 368) (2760 432 368)" + "id" "59151" + "plane" "(104 -928 -32) (104 -928 64) (96 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -45470,65 +45957,75 @@ world } side { - "id" "84668" - "plane" "(2760 432 360) (2760 432 368) (2752 424 360)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "59150" + "plane" "(96 -960 -32) (96 -960 64) (104 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "59149" + "plane" "(96 -928 -32) (96 -960 -32) (104 -960 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218360" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218362" + "id" "171057" side { - "id" "84677" - "plane" "(2760 208 360) (2752 208 360) (2752 424 360)" + "id" "59166" + "plane" "(296 -928 64) (312 -928 64) (312 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84676" - "plane" "(2752 208 360) (2760 208 360) (2760 208 352)" + "id" "59165" + "plane" "(296 -928 64) (296 -960 64) (296 -960 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84675" - "plane" "(2752 208 360) (2760 208 352) (2760 432 352)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -48] 0.25" - "vaxis" "[0 1 0 67] 0.25" - "rotation" "90" + "id" "59164" + "plane" "(312 -960 64) (312 -928 64) (312 -928 -32)" + "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" "84674" - "plane" "(2760 208 352) (2760 208 360) (2760 432 360)" + "id" "59163" + "plane" "(312 -928 64) (296 -928 64) (296 -928 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -45536,340 +46033,368 @@ world } side { - "id" "84673" - "plane" "(2752 424 360) (2760 432 352) (2760 432 360)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "59162" + "plane" "(296 -960 64) (312 -960 64) (312 -960 -32)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "59161" + "plane" "(296 -960 -32) (312 -960 -32) (312 -928 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218360" + "color" "0 183 140" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218364" + "id" "171058" side { - "id" "84682" - "plane" "(2800 240 616) (2800 220 636) (2780 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 37.4474] 0.188" - "vaxis" "[-1 0 0 -87.8283] 0.188" + "id" "59178" + "plane" "(8 -960 64) (8 -928 64) (24 -928 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84681" - "plane" "(2800 240 612) (2780 220 632) (2800 220 632)" + "id" "59177" + "plane" "(8 -928 -32) (8 -928 64) (8 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84680" - "plane" "(2800 240 616) (2800 240 612) (2800 220 632)" + "id" "59176" + "plane" "(24 -960 -32) (24 -960 64) (24 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84679" - "plane" "(2800 240 612) (2800 240 616) (2780 220 636)" + "id" "59175" + "plane" "(24 -928 -32) (24 -928 64) (8 -928 64)" "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59174" + "plane" "(8 -960 -32) (8 -960 64) (24 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84678" - "plane" "(2780 220 632) (2780 220 636) (2800 220 636)" + "id" "59173" + "plane" "(8 -928 -32) (8 -960 -32) (24 -960 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218363" + "color" "0 183 140" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218365" + "id" "171059" side { - "id" "84687" - "plane" "(2800 200 616) (2780 220 636) (2800 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -5.44735] 0.188" - "vaxis" "[-1 0 0 -87.8283] 0.188" + "id" "59190" + "plane" "(312 -964 368) (312 -928 368) (328 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84686" - "plane" "(2800 200 612) (2800 220 632) (2780 220 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "59189" + "plane" "(312 -928 -32) (312 -928 368) (312 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84685" - "plane" "(2800 200 612) (2800 200 616) (2800 220 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "59188" + "plane" "(328 -964 -32) (328 -964 368) (328 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84684" - "plane" "(2780 220 632) (2780 220 636) (2800 200 616)" - "material" "TOOLS/TOOLSNODRAW" + "id" "59187" + "plane" "(328 -928 -32) (328 -928 368) (312 -928 368)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59186" + "plane" "(312 -964 -32) (312 -964 368) (328 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84683" - "plane" "(2800 220 632) (2800 220 636) (2780 220 636)" + "id" "59185" + "plane" "(312 -928 -32) (312 -964 -32) (328 -964 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218363" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218366" + "id" "171061" side { - "id" "84693" - "plane" "(2800 220 632) (2802 220 632) (2802 220 636)" + "id" "59202" + "plane" "(328 -960 64) (328 -928 64) (348 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84692" - "plane" "(2802 200 612) (2800 200 612) (2800 200 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 39.8283] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59201" + "plane" "(328 -928 -32) (328 -928 64) (328 -960 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" "84691" - "plane" "(2802 220 632) (2802 200 612) (2802 200 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -5.44735] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59200" + "plane" "(348 -960 -32) (348 -960 64) (348 -928 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" "84690" - "plane" "(2800 200 612) (2800 220 632) (2800 220 636)" + "id" "59199" + "plane" "(348 -928 -32) (348 -928 64) (328 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84689" - "plane" "(2802 200 612) (2802 220 632) (2800 220 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 39.8283] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59198" + "plane" "(328 -960 -32) (328 -960 64) (348 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84688" - "plane" "(2800 200 616) (2800 220 636) (2802 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 39.8283] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59197" + "plane" "(328 -928 -32) (328 -960 -32) (348 -960 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218363" + "color" "0 183 140" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218367" + "id" "171065" side { - "id" "84699" - "plane" "(2802 220 632) (2800 220 632) (2800 220 636)" + "id" "59232" + "plane" "(448 -928 64) (448 -960 64) (428 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84698" - "plane" "(2800 240 612) (2802 240 612) (2802 240 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 39.8283] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59231" + "plane" "(448 -960 -32) (448 -960 64) (448 -928 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" "84697" - "plane" "(2802 240 612) (2802 220 632) (2802 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 37.4474] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59230" + "plane" "(428 -928 -32) (428 -928 64) (428 -960 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" "84696" - "plane" "(2800 220 632) (2800 240 612) (2800 240 616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "59229" + "plane" "(428 -960 -32) (428 -960 64) (448 -960 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84695" - "plane" "(2800 240 612) (2800 220 632) (2802 220 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 39.8283] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59228" + "plane" "(448 -928 -32) (448 -928 64) (428 -928 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" "84694" - "plane" "(2802 240 616) (2802 220 636) (2800 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 39.8283] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59227" + "plane" "(448 -960 -32) (448 -928 -32) (428 -928 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218363" + "color" "0 183 140" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218369" + "id" "171079" side { - "id" "84704" - "plane" "(2780 220 612) (2792 220 612) (2792 208 600)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -54.128] 0.188" - "vaxis" "[-1 0 0 -87.8283] 0.188" + "id" "59280" + "plane" "(420 -960 64) (420 -928 64) (428 -928 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84703" - "plane" "(2792 208 596) (2792 220 608) (2780 220 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "59279" + "plane" "(420 -928 -32) (420 -928 64) (420 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84702" - "plane" "(2780 220 608) (2780 220 612) (2792 208 600)" + "id" "59278" + "plane" "(428 -960 -32) (428 -960 64) (428 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -45877,10 +46402,10 @@ world } side { - "id" "84701" - "plane" "(2792 220 608) (2792 220 612) (2780 220 612)" + "id" "59277" + "plane" "(428 -928 -32) (428 -928 64) (420 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -45888,461 +46413,509 @@ world } side { - "id" "84700" - "plane" "(2792 208 596) (2792 208 600) (2792 220 612)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 48] 0.25" + "id" "59276" + "plane" "(420 -960 -32) (420 -960 64) (428 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "59275" + "plane" "(420 -928 -32) (420 -960 -32) (428 -960 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218368" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218370" + "id" "171080" side { - "id" "84709" - "plane" "(2792 232 600) (2792 220 612) (2780 220 612)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 86.128] 0.188" - "vaxis" "[-1 0 0 -87.8283] 0.188" + "id" "59286" + "plane" "(356 -952 56) (356 -928 56) (420 -928 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84708" - "plane" "(2780 220 608) (2792 220 608) (2792 232 596)" + "id" "59285" + "plane" "(356 -928 -32) (356 -928 56) (356 -952 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84707" - "plane" "(2792 232 596) (2792 232 600) (2780 220 612)" + "id" "59284" + "plane" "(420 -952 -32) (420 -952 56) (420 -928 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84706" - "plane" "(2780 220 608) (2780 220 612) (2792 220 612)" + "id" "59283" + "plane" "(420 -928 -32) (420 -928 56) (356 -928 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84705" - "plane" "(2792 232 600) (2792 232 596) (2792 220 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "59282" + "plane" "(356 -952 -32) (356 -952 56) (420 -952 56)" + "material" "METAL/METALDOOR001A" + "uaxis" "[1 0 0 -199.226] 0.155" + "vaxis" "[0 0 -1 353.584] 0.202" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59281" + "plane" "(356 -928 -32) (356 -952 -32) (420 -952 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218368" + "color" "0 131 176" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218372" + "id" "171081" side { - "id" "84714" - "plane" "(2760 240 616) (2780 220 636) (2760 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 37.4474] 0.188" - "vaxis" "[1 0 0 33.7014] 0.188" + "id" "59292" + "plane" "(348 -960 64) (348 -928 64) (356 -928 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84713" - "plane" "(2760 240 612) (2760 220 632) (2780 220 632)" + "id" "59291" + "plane" "(348 -928 -32) (348 -928 64) (348 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84712" - "plane" "(2760 240 612) (2760 240 616) (2760 220 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "59290" + "plane" "(356 -960 -32) (356 -960 64) (356 -928 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84711" - "plane" "(2780 220 632) (2780 220 636) (2760 240 616)" + "id" "59289" + "plane" "(356 -928 -32) (356 -928 64) (348 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59288" + "plane" "(348 -960 -32) (348 -960 64) (356 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84710" - "plane" "(2760 220 632) (2760 220 636) (2780 220 636)" + "id" "59287" + "plane" "(348 -928 -32) (348 -960 -32) (356 -960 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218371" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218373" + "id" "171082" side { - "id" "84719" - "plane" "(2760 200 616) (2760 220 636) (2780 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -5.44735] 0.188" - "vaxis" "[1 0 0 33.7014] 0.188" + "id" "59298" + "plane" "(356 -960 64) (356 -928 64) (420 -928 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84718" - "plane" "(2760 200 612) (2780 220 632) (2760 220 632)" + "id" "59297" + "plane" "(356 -928 56) (356 -928 64) (356 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84717" - "plane" "(2760 200 616) (2760 200 612) (2760 220 632)" + "id" "59296" + "plane" "(420 -960 56) (420 -960 64) (420 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84716" - "plane" "(2760 200 612) (2760 200 616) (2780 220 636)" + "id" "59295" + "plane" "(420 -928 56) (420 -928 64) (356 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84715" - "plane" "(2780 220 632) (2780 220 636) (2760 220 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "59294" + "plane" "(356 -960 56) (356 -960 64) (420 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59293" + "plane" "(356 -928 56) (356 -960 56) (420 -960 56)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218371" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218374" + "id" "171096" side { - "id" "84725" - "plane" "(2758 220 632) (2760 220 632) (2760 220 636)" + "id" "59364" + "plane" "(-8 -964 368) (-8 -928 368) (8 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84724" - "plane" "(2760 200 612) (2758 200 612) (2758 200 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -81.7014] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59363" + "plane" "(8 -964 -32) (8 -964 368) (8 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84723" - "plane" "(2758 200 612) (2758 220 632) (2758 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -5.44735] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59362" + "plane" "(-8 -928 -32) (-8 -928 368) (-8 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84722" - "plane" "(2760 220 632) (2760 200 612) (2760 200 616)" + "id" "59361" + "plane" "(8 -928 -32) (8 -928 368) (-8 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84721" - "plane" "(2760 200 612) (2760 220 632) (2758 220 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -81.7014] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59360" + "plane" "(-8 -964 -32) (-8 -964 368) (8 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84720" - "plane" "(2758 200 616) (2758 220 636) (2760 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -81.7014] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59359" + "plane" "(-8 -928 -32) (-8 -964 -32) (8 -964 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218371" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218375" + "id" "171097" side { - "id" "84731" - "plane" "(2760 220 632) (2758 220 632) (2758 220 636)" + "id" "59370" + "plane" "(-28 -960 64) (-28 -928 64) (-8 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84730" - "plane" "(2758 240 612) (2760 240 612) (2760 240 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -81.7014] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59369" + "plane" "(-8 -960 -32) (-8 -960 64) (-8 -928 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" "84729" - "plane" "(2758 220 632) (2758 240 612) (2758 240 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 37.4474] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59368" + "plane" "(-28 -928 -32) (-28 -928 64) (-28 -960 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" "84728" - "plane" "(2760 240 612) (2760 220 632) (2760 220 636)" + "id" "59367" + "plane" "(-8 -928 -32) (-8 -928 64) (-28 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84727" - "plane" "(2758 240 612) (2758 220 632) (2760 220 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -81.7014] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59366" + "plane" "(-28 -960 -32) (-28 -960 64) (-8 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84726" - "plane" "(2760 240 616) (2760 220 636) (2758 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -81.7014] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59365" + "plane" "(-28 -928 -32) (-28 -960 -32) (-8 -960 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218371" + "color" "0 183 140" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218377" + "id" "171098" side { - "id" "84736" - "plane" "(3039.89 568 1110) (3039.89 568 1138) (3039.89 602 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59376" + "plane" "(-36 -960 64) (-36 -928 64) (-28 -928 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84735" - "plane" "(3011.89 568 1110) (3011.89 602 1138) (3011.89 568 1138)" + "id" "59375" + "plane" "(-28 -960 -32) (-28 -960 64) (-28 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -8] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84734" - "plane" "(3011.89 568 1110) (3039.89 568 1110) (3039.89 602 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -56] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "id" "59374" + "plane" "(-36 -928 -32) (-36 -928 64) (-36 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84733" - "plane" "(3039.89 568 1110) (3011.89 568 1110) (3011.89 568 1138)" + "id" "59373" + "plane" "(-28 -928 -32) (-28 -928 64) (-36 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48.4338] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84732" - "plane" "(3039.89 568 1138) (3011.89 568 1138) (3011.89 602 1138)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 72] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "id" "59372" + "plane" "(-36 -960 -32) (-36 -960 64) (-28 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59371" + "plane" "(-36 -928 -32) (-36 -960 -32) (-28 -960 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218376" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218378" + "id" "171099" side { - "id" "84742" - "plane" "(3039.89 568 1144) (3039.89 602 1212) (3039.89 602 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59382" + "plane" "(-100 -960 64) (-100 -928 64) (-36 -928 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84741" - "plane" "(3011.89 568 1144) (3011.89 568 1138) (3011.89 602 1138)" + "id" "59381" + "plane" "(-36 -960 56) (-36 -960 64) (-36 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -46350,21 +46923,21 @@ world } side { - "id" "84740" - "plane" "(3039.89 568 1144) (3011.89 568 1144) (3011.89 602 1212)" + "id" "59380" + "plane" "(-100 -928 56) (-100 -928 64) (-100 -960 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84739" - "plane" "(3039.89 568 1138) (3011.89 568 1138) (3011.89 568 1144)" + "id" "59379" + "plane" "(-36 -928 56) (-36 -928 64) (-100 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48.4338] 0.25" + "uaxis" "[-1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -46372,10 +46945,10 @@ world } side { - "id" "84738" - "plane" "(3011.89 602 1138) (3039.89 602 1138) (3039.89 602 1212)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48.4338] 0.25" + "id" "59378" + "plane" "(-100 -960 56) (-100 -960 64) (-36 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -46383,131 +46956,129 @@ world } side { - "id" "84737" - "plane" "(3011.89 568 1138) (3039.89 568 1138) (3039.89 602 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "id" "59377" + "plane" "(-100 -928 56) (-100 -960 56) (-36 -960 56)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218376" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218379" + "id" "171100" side { - "id" "84748" - "plane" "(3039.89 636 1144) (3039.89 636 1138) (3039.89 602 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59388" + "plane" "(-100 -952 56) (-100 -928 56) (-36 -928 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84747" - "plane" "(3011.89 636 1144) (3011.89 602 1212) (3011.89 602 1138)" + "id" "59387" + "plane" "(-36 -952 -32) (-36 -952 56) (-36 -928 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84746" - "plane" "(3011.89 636 1144) (3039.89 636 1144) (3039.89 602 1212)" + "id" "59386" + "plane" "(-100 -928 -32) (-100 -928 56) (-100 -952 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84745" - "plane" "(3011.89 636 1138) (3039.89 636 1138) (3039.89 636 1144)" + "id" "59385" + "plane" "(-36 -928 -32) (-36 -928 56) (-100 -928 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48.4338] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84744" - "plane" "(3039.89 602 1138) (3011.89 602 1138) (3011.89 602 1212)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48.4338] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "59384" + "plane" "(-100 -952 -32) (-100 -952 56) (-36 -952 56)" + "material" "METAL/METALDOOR001A" + "uaxis" "[-1 0 0 -182.71] 0.155" + "vaxis" "[0 0 -1 353.584] 0.202" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84743" - "plane" "(3011.89 602 1138) (3039.89 602 1138) (3039.89 636 1138)" + "id" "59383" + "plane" "(-100 -928 -32) (-100 -952 -32) (-36 -952 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218376" + "color" "0 131 176" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218380" + "id" "171101" side { - "id" "84753" - "plane" "(3011.89 636 992) (3039.89 636 992) (3039.89 712 992)" + "id" "59394" + "plane" "(-108 -960 64) (-108 -928 64) (-100 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -0.433777] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84752" - "plane" "(3039.89 712 992) (3039.89 636 992) (3039.89 636 1144)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59393" + "plane" "(-100 -960 -32) (-100 -960 64) (-100 -928 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84751" - "plane" "(3011.89 712 992) (3011.89 636 1144) (3011.89 636 992)" + "id" "59392" + "plane" "(-108 -928 -32) (-108 -928 64) (-108 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -46515,131 +47086,151 @@ world } side { - "id" "84750" - "plane" "(3011.89 712 992) (3039.89 712 992) (3039.89 636 1144)" + "id" "59391" + "plane" "(-100 -928 -32) (-100 -928 64) (-108 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84749" - "plane" "(3039.89 636 992) (3011.89 636 992) (3011.89 636 1144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48.4338] 0.25" + "id" "59390" + "plane" "(-108 -960 -32) (-108 -960 64) (-100 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "59389" + "plane" "(-108 -928 -32) (-108 -960 -32) (-100 -960 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218376" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218381" + "id" "171102" side { - "id" "84758" - "plane" "(3039.89 636 1110) (3039.89 602 1138) (3039.89 636 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59400" + "plane" "(-108 -928 64) (-108 -960 64) (-128 -960 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" "84757" - "plane" "(3011.89 636 1110) (3011.89 636 1138) (3011.89 602 1138)" + "id" "59399" + "plane" "(-128 -928 -32) (-128 -928 64) (-128 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 40] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84756" - "plane" "(3011.89 602 1138) (3039.89 602 1138) (3039.89 636 1110)" + "id" "59398" + "plane" "(-108 -960 -32) (-108 -960 64) (-108 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 56] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59397" + "plane" "(-128 -960 -32) (-128 -960 64) (-108 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84755" - "plane" "(3011.89 636 1110) (3039.89 636 1110) (3039.89 636 1138)" + "id" "59396" + "plane" "(-108 -928 -32) (-108 -928 64) (-128 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48.4338] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84754" - "plane" "(3039.89 602 1138) (3011.89 602 1138) (3011.89 636 1138)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -104] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "id" "59395" + "plane" "(-108 -960 -32) (-108 -928 -32) (-128 -928 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218376" + "color" "0 183 140" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218382" + "id" "171205" side { - "id" "84764" - "plane" "(3011.89 568 1006) (3011.89 636 1006) (3039.89 636 1006)" + "id" "59467" + "plane" "(216 -960 216) (216 -928 216) (224 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84763" - "plane" "(3039.89 568 992) (3039.89 636 992) (3011.89 636 992)" + "id" "59466" + "plane" "(216 -928 88) (216 -928 216) (216 -960 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84762" - "plane" "(3039.89 636 992) (3039.89 636 1006) (3011.89 636 1006)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48.4338] 0.25" + "id" "59465" + "plane" "(224 -960 88) (224 -960 216) (224 -928 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -46647,76 +47238,75 @@ world } side { - "id" "84761" - "plane" "(3011.89 568 992) (3011.89 568 1006) (3039.89 568 1006)" + "id" "59464" + "plane" "(224 -928 88) (224 -928 216) (216 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48.4338] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84760" - "plane" "(3039.89 568 992) (3039.89 568 1006) (3039.89 636 1006)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59463" + "plane" "(216 -960 88) (216 -960 216) (224 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84759" - "plane" "(3011.89 636 992) (3011.89 636 1006) (3011.89 568 1006)" + "id" "59462" + "plane" "(216 -928 88) (216 -960 88) (224 -960 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218376" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218383" + "id" "171207" side { - "id" "84769" - "plane" "(3011.89 492 992) (3039.89 492 992) (3039.89 568 992)" + "id" "59479" + "plane" "(224 -960 216) (224 -928 216) (288 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -0.433777] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84768" - "plane" "(3039.89 492 992) (3039.89 568 1144) (3039.89 568 992)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59478" + "plane" "(224 -928 208) (224 -928 216) (224 -960 216)" + "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" "84767" - "plane" "(3011.89 492 992) (3011.89 568 992) (3011.89 568 1144)" + "id" "59477" + "plane" "(288 -960 208) (288 -960 216) (288 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -46724,285 +47314,271 @@ world } side { - "id" "84766" - "plane" "(3039.89 492 992) (3011.89 492 992) (3011.89 568 1144)" + "id" "59476" + "plane" "(288 -928 208) (288 -928 216) (224 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84765" - "plane" "(3011.89 568 992) (3039.89 568 992) (3039.89 568 1144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48.4338] 0.25" + "id" "59475" + "plane" "(224 -960 208) (224 -960 216) (288 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "59474" + "plane" "(224 -928 208) (224 -960 208) (288 -960 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218376" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218384" + "id" "171208" side { - "id" "84774" - "plane" "(3039.89 602 1138) (3039.89 611.711 1130) (3039.89 602 1130)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59485" + "plane" "(288 -960 216) (288 -928 216) (296 -928 216)" + "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" "84773" - "plane" "(3011.89 602 1138) (3011.89 602 1130) (3011.89 611.711 1130)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "59484" + "plane" "(288 -928 88) (288 -928 216) (288 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84772" - "plane" "(3039.89 602 1138) (3011.89 602 1138) (3011.89 611.711 1130)" + "id" "59483" + "plane" "(296 -960 88) (296 -960 216) (296 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84771" - "plane" "(3039.89 602 1130) (3011.89 602 1130) (3011.89 602 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48.4338] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "59482" + "plane" "(296 -928 88) (296 -928 216) (288 -928 216)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84770" - "plane" "(3011.89 602 1130) (3039.89 602 1130) (3039.89 611.711 1130)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "id" "59481" + "plane" "(288 -960 88) (288 -960 216) (296 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59480" + "plane" "(288 -928 88) (288 -960 88) (296 -960 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218376" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218385" + "id" "171209" side { - "id" "84779" - "plane" "(3039.89 602 1138) (3039.89 602 1130) (3039.89 592.285 1130)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59491" + "plane" "(224 -960 96) (224 -928 96) (288 -928 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84778" - "plane" "(3011.89 602 1138) (3011.89 592.28 1130) (3011.89 602 1130)" + "id" "59490" + "plane" "(224 -928 88) (224 -928 96) (224 -960 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84777" - "plane" "(3039.89 592.285 1130) (3011.89 592.28 1130) (3011.89 602 1138)" + "id" "59489" + "plane" "(288 -960 88) (288 -960 96) (288 -928 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84776" - "plane" "(3011.89 602 1130) (3039.89 602 1130) (3039.89 602 1138)" + "id" "59488" + "plane" "(288 -928 88) (288 -928 96) (224 -928 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48.4338] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84775" - "plane" "(3011.89 592.28 1130) (3039.89 592.285 1130) (3039.89 602 1130)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -112] 0.25" - "vaxis" "[-1 0 0 -48.4338] 0.25" + "id" "59487" + "plane" "(224 -960 88) (224 -960 96) (288 -960 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "163 140 0" - "groupid" "218376" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "218391" side { - "id" "84784" - "plane" "(2700 636 992) (2728 636 992) (2728 712 992)" + "id" "59486" + "plane" "(224 -928 88) (224 -960 88) (288 -960 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - side + editor { - "id" "84783" - "plane" "(2700 712 992) (2700 636 1144) (2700 636 992)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 427.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 133 222" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + solid + { + "id" "171257" side { - "id" "84782" - "plane" "(2728 712 992) (2728 636 992) (2728 636 1144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "59519" + "plane" "(192 -928 88) (312 -928 88) (312 -964 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84781" - "plane" "(2700 712 992) (2728 712 992) (2728 636 1144)" + "id" "59518" + "plane" "(312 -964 68) (312 -964 88) (312 -928 88)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "84780" - "plane" "(2728 636 992) (2700 636 992) (2700 636 1144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "163 140 0" - "groupid" "218390" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "218392" side { - "id" "84789" - "plane" "(2700 492 992) (2728 492 992) (2728 568 992)" + "id" "59517" + "plane" "(192 -928 64) (312 -928 64) (312 -928 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84788" - "plane" "(2700 492 992) (2700 568 992) (2700 568 1144)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 427.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59516" + "plane" "(192 -964 88) (312 -964 88) (312 -964 68)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84787" - "plane" "(2728 492 992) (2728 568 1144) (2728 568 992)" + "id" "59515" + "plane" "(192 -960 64) (312 -960 64) (312 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84786" - "plane" "(2728 492 992) (2700 492 992) (2700 568 1144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "59514" + "plane" "(192 -964 68) (312 -964 68) (312 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84785" - "plane" "(2700 568 992) (2728 568 992) (2728 568 1144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "59513" + "plane" "(192 -928 64) (192 -928 88) (192 -964 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -47010,65 +47586,75 @@ world } editor { - "color" "163 140 0" - "groupid" "218390" + "color" "0 221 114" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218393" + "id" "171258" side { - "id" "84795" - "plane" "(2700 636 1144) (2700 602 1212) (2700 602 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 427.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59526" + "plane" "(8 -964 88) (8 -928 88) (128 -928 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84794" - "plane" "(2728 636 1144) (2728 636 1138) (2728 602 1138)" + "id" "59525" + "plane" "(8 -928 64) (8 -928 88) (8 -964 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84793" - "plane" "(2700 636 1144) (2728 636 1144) (2728 602 1212)" + "id" "59524" + "plane" "(128 -928 88) (8 -928 88) (8 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84792" - "plane" "(2700 636 1138) (2728 636 1138) (2728 636 1144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "59523" + "plane" "(8 -964 68) (8 -964 88) (128 -964 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84791" - "plane" "(2728 602 1138) (2700 602 1138) (2700 602 1212)" + "id" "59522" + "plane" "(8 -928 64) (8 -960 64) (128 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59521" + "plane" "(8 -960 64) (8 -964 68) (128 -964 68)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -47076,340 +47662,379 @@ world } side { - "id" "84790" - "plane" "(2700 602 1138) (2728 602 1138) (2728 636 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "59520" + "plane" "(128 -964 68) (128 -964 88) (128 -928 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218390" + "color" "0 221 114" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218394" + "id" "171260" side { - "id" "84800" - "plane" "(2700 636 1110) (2700 636 1138) (2700 602 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 427.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59538" + "plane" "(192 -964 216) (192 -928 216) (200 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84799" - "plane" "(2728 636 1110) (2728 602 1138) (2728 636 1138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 40] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "59537" + "plane" "(192 -928 88) (192 -928 216) (192 -964 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84798" - "plane" "(2700 602 1138) (2728 602 1138) (2728 636 1110)" + "id" "59536" + "plane" "(200 -964 88) (200 -964 216) (200 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 56] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84797" - "plane" "(2700 636 1110) (2728 636 1110) (2728 636 1138)" + "id" "59535" + "plane" "(200 -928 88) (200 -928 216) (192 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84796" - "plane" "(2728 602 1138) (2700 602 1138) (2700 636 1138)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -104] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "59534" + "plane" "(192 -964 88) (192 -964 216) (200 -964 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59533" + "plane" "(192 -928 88) (192 -964 88) (200 -964 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218390" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218395" + "id" "171262" side { - "id" "84805" - "plane" "(2700 602 1138) (2700 602 1130) (2700 611.719 1130)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 427.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59550" + "plane" "(120 -964 216) (120 -928 216) (128 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84804" - "plane" "(2728 602 1138) (2728 611.719 1130) (2728 602 1130)" + "id" "59549" + "plane" "(120 -928 88) (120 -928 216) (120 -964 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84803" - "plane" "(2728 602 1138) (2700 602 1138) (2700 611.719 1130)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "59548" + "plane" "(128 -964 88) (128 -964 216) (128 -928 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84802" - "plane" "(2728 602 1130) (2700 602 1130) (2700 602 1138)" + "id" "59547" + "plane" "(128 -928 88) (128 -928 216) (120 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84801" - "plane" "(2700 602 1130) (2728 602 1130) (2728 611.719 1130)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "59546" + "plane" "(120 -964 88) (120 -964 216) (128 -964 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59545" + "plane" "(120 -928 88) (120 -964 88) (128 -964 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218390" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218396" + "id" "171263" side { - "id" "84810" - "plane" "(2700 568 1110) (2700 602 1138) (2700 568 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 427.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59562" + "plane" "(128 -964 216) (128 -928 216) (192 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84809" - "plane" "(2728 568 1110) (2728 568 1138) (2728 602 1138)" + "id" "59561" + "plane" "(128 -928 208) (128 -928 216) (128 -964 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -8] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84808" - "plane" "(2700 568 1110) (2728 568 1110) (2728 602 1138)" + "id" "59560" + "plane" "(192 -964 208) (192 -964 216) (192 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -56] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84807" - "plane" "(2728 568 1110) (2700 568 1110) (2700 568 1138)" + "id" "59559" + "plane" "(192 -928 208) (192 -928 216) (128 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84806" - "plane" "(2728 568 1138) (2700 568 1138) (2700 602 1138)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 72] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "59558" + "plane" "(128 -964 208) (128 -964 216) (192 -964 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59557" + "plane" "(128 -928 208) (128 -964 208) (192 -964 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218390" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218397" + "id" "171268" side { - "id" "84815" - "plane" "(2700 602 1138) (2700 592.286 1130) (2700 602 1130)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 427.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59610" + "plane" "(24 -960 216) (24 -928 216) (32 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84814" - "plane" "(2728 602 1138) (2728 602 1130) (2728 592.281 1130)" + "id" "59609" + "plane" "(24 -928 88) (24 -928 216) (24 -960 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84813" - "plane" "(2728 592.281 1130) (2700 592.286 1130) (2700 602 1138)" - "material" "TOOLS/TOOLSNODRAW" + "id" "59608" + "plane" "(32 -960 88) (32 -960 216) (32 -928 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84812" - "plane" "(2700 602 1130) (2728 602 1130) (2728 602 1138)" + "id" "59607" + "plane" "(32 -928 88) (32 -928 216) (24 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84811" - "plane" "(2700 592.286 1130) (2728 592.281 1130) (2728 602 1130)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -112] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "59606" + "plane" "(24 -960 88) (24 -960 216) (32 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59605" + "plane" "(24 -928 88) (24 -960 88) (32 -960 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218390" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218398" + "id" "171269" side { - "id" "84821" - "plane" "(2700 568 1144) (2700 568 1138) (2700 602 1138)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 427.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59616" + "plane" "(32 -960 96) (32 -928 96) (96 -928 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84820" - "plane" "(2728 568 1144) (2728 602 1212) (2728 602 1138)" + "id" "59615" + "plane" "(32 -928 88) (32 -928 96) (32 -960 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84819" - "plane" "(2728 568 1144) (2700 568 1144) (2700 602 1212)" + "id" "59614" + "plane" "(96 -960 88) (96 -960 96) (96 -928 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84818" - "plane" "(2728 568 1138) (2700 568 1138) (2700 568 1144)" + "id" "59613" + "plane" "(96 -928 88) (96 -928 96) (32 -928 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84817" - "plane" "(2700 602 1138) (2728 602 1138) (2728 602 1212)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "59612" + "plane" "(32 -960 88) (32 -960 96) (96 -960 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -47417,131 +48042,129 @@ world } side { - "id" "84816" - "plane" "(2700 568 1138) (2728 568 1138) (2728 602 1138)" + "id" "59611" + "plane" "(32 -928 88) (32 -960 88) (96 -960 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218390" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218399" + "id" "171271" side { - "id" "84827" - "plane" "(2700 568 1006) (2700 636 1006) (2728 636 1006)" + "id" "59628" + "plane" "(96 -960 216) (96 -928 216) (104 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84826" - "plane" "(2728 568 992) (2728 636 992) (2700 636 992)" - "material" "TOOLS/TOOLSNODRAW" + "id" "59627" + "plane" "(96 -928 88) (96 -928 216) (96 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84825" - "plane" "(2700 568 992) (2700 568 1006) (2728 568 1006)" + "id" "59626" + "plane" "(104 -960 88) (104 -960 216) (104 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84824" - "plane" "(2728 636 992) (2728 636 1006) (2700 636 1006)" + "id" "59625" + "plane" "(104 -928 88) (104 -928 216) (96 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84823" - "plane" "(2700 636 992) (2700 636 1006) (2700 568 1006)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59624" + "plane" "(96 -960 88) (96 -960 216) (104 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84822" - "plane" "(2728 568 992) (2728 568 1006) (2728 636 1006)" + "id" "59623" + "plane" "(96 -928 88) (96 -960 88) (104 -960 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218390" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218405" + "id" "171272" side { - "id" "84832" - "plane" "(2760 772 360) (2752 780 360) (2708 780 360)" + "id" "59634" + "plane" "(32 -960 216) (32 -928 216) (96 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84831" - "plane" "(2752 780 360) (2760 772 368) (2700 772 368)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 -0.707107 0.707107 -44.0606] 0.25" - "vaxis" "[-1 0 0 267] 0.25" + "id" "59633" + "plane" "(32 -928 208) (32 -928 216) (32 -960 216)" + "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" "84830" - "plane" "(2700 772 360) (2700 772 368) (2760 772 368)" + "id" "59632" + "plane" "(96 -960 208) (96 -960 216) (96 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -47549,10 +48172,21 @@ world } side { - "id" "84829" - "plane" "(2760 772 360) (2760 772 368) (2752 780 360)" + "id" "59631" + "plane" "(96 -928 208) (96 -928 216) (32 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59630" + "plane" "(32 -960 208) (32 -960 216) (96 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -47560,65 +48194,75 @@ world } side { - "id" "84828" - "plane" "(2708 780 360) (2700 772 368) (2700 772 360)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0.333333 -0.244017 0.910684 -16.715] 0.25" - "vaxis" "[-0.910684 -0.333333 0.244017 -11.8562] 0.25" + "id" "59629" + "plane" "(32 -928 208) (32 -960 208) (96 -960 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218404" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218406" + "id" "171278" side { - "id" "84837" - "plane" "(2700 772 360) (2708 780 360) (2752 780 360)" + "id" "59646" + "plane" "(200 -928 216) (216 -928 216) (216 -960 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84836" - "plane" "(2760 772 352) (2752 780 360) (2708 780 360)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -48] 0.25" - "vaxis" "[-1 0 0 267] 0.25" - "rotation" "90" + "id" "59645" + "plane" "(200 -928 216) (200 -964 216) (200 -964 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84835" - "plane" "(2700 772 352) (2700 772 360) (2760 772 360)" + "id" "59644" + "plane" "(216 -960 216) (216 -928 216) (216 -928 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84834" - "plane" "(2752 780 360) (2760 772 352) (2760 772 360)" + "id" "59643" + "plane" "(216 -928 216) (200 -928 216) (200 -928 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59642" + "plane" "(200 -964 216) (216 -960 216) (216 -960 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -47626,54 +48270,53 @@ world } side { - "id" "84833" - "plane" "(2708 780 360) (2700 772 360) (2700 772 352)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0.333333 -0.244017 0.910684 -16.715] 0.25" - "vaxis" "[-0.910684 -0.333333 0.244017 -11.8562] 0.25" + "id" "59641" + "plane" "(200 -964 88) (216 -960 88) (216 -928 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218404" + "color" "0 187 100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218408" + "id" "171284" side { - "id" "84842" - "plane" "(2760 964 616) (2760 984 636) (2780 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -86.2989] 0.188" - "vaxis" "[1 0 0 33.7014] 0.188" + "id" "59658" + "plane" "(104 -928 216) (120 -928 216) (120 -964 216)" + "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" "84841" - "plane" "(2760 964 612) (2780 984 632) (2760 984 632)" + "id" "59657" + "plane" "(104 -928 216) (104 -960 216) (104 -960 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84840" - "plane" "(2760 964 616) (2760 964 612) (2760 984 632)" + "id" "59656" + "plane" "(120 -964 216) (120 -928 216) (120 -928 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -47681,10 +48324,10 @@ world } side { - "id" "84839" - "plane" "(2760 964 612) (2760 964 616) (2780 984 636)" + "id" "59655" + "plane" "(120 -928 216) (104 -928 216) (104 -928 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -47692,54 +48335,64 @@ world } side { - "id" "84838" - "plane" "(2780 984 632) (2780 984 636) (2760 984 636)" + "id" "59654" + "plane" "(104 -960 216) (120 -964 216) (120 -964 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59653" + "plane" "(104 -960 88) (120 -964 88) (120 -928 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218407" + "color" "0 187 100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218409" + "id" "171287" side { - "id" "84847" - "plane" "(2760 1004 616) (2780 984 636) (2760 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 118.299] 0.188" - "vaxis" "[1 0 0 33.7014] 0.188" + "id" "59670" + "plane" "(296 -928 216) (312 -928 216) (312 -964 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84846" - "plane" "(2760 1004 612) (2760 984 632) (2780 984 632)" + "id" "59669" + "plane" "(296 -928 216) (296 -960 216) (296 -960 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84845" - "plane" "(2760 1004 612) (2760 1004 616) (2760 984 636)" + "id" "59668" + "plane" "(312 -964 216) (312 -928 216) (312 -928 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -47747,76 +48400,86 @@ world } side { - "id" "84844" - "plane" "(2780 984 632) (2780 984 636) (2760 1004 616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "59667" + "plane" "(312 -928 216) (296 -928 216) (296 -928 88)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59666" + "plane" "(296 -960 216) (312 -964 216) (312 -964 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84843" - "plane" "(2760 984 632) (2760 984 636) (2780 984 636)" + "id" "59665" + "plane" "(296 -960 88) (312 -964 88) (312 -928 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218407" + "color" "0 239 136" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218410" + "id" "171294" side { - "id" "84853" - "plane" "(2760 984 632) (2758 984 632) (2758 984 636)" + "id" "59682" + "plane" "(24 -960 216) (8 -964 216) (8 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84852" - "plane" "(2758 1004 612) (2760 1004 612) (2760 1004 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -81.7014] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59681" + "plane" "(24 -928 88) (24 -960 88) (24 -960 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84851" - "plane" "(2758 984 632) (2758 1004 612) (2758 1004 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 118.299] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59680" + "plane" "(8 -964 88) (8 -928 88) (8 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84850" - "plane" "(2760 1004 612) (2760 984 632) (2760 984 636)" + "id" "59679" + "plane" "(8 -928 88) (24 -928 88) (24 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[-1 0 0 32] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -47824,43 +48487,53 @@ world } side { - "id" "84849" - "plane" "(2758 1004 612) (2758 984 632) (2760 984 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -81.7014] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59678" + "plane" "(24 -960 88) (8 -964 88) (8 -964 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84848" - "plane" "(2760 1004 616) (2760 984 636) (2758 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -81.7014] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59677" + "plane" "(24 -928 88) (8 -928 88) (8 -964 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218407" + "color" "0 239 136" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218411" + "id" "171296" + side + { + "id" "59696" + "plane" "(328 -928 88) (448 -928 88) (448 -964 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } side { - "id" "84859" - "plane" "(2758 984 632) (2760 984 632) (2760 984 636)" + "id" "59695" + "plane" "(448 -964 68) (448 -964 88) (448 -928 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -47868,98 +48541,97 @@ world } side { - "id" "84858" - "plane" "(2760 964 612) (2758 964 612) (2758 964 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -81.7014] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59694" + "plane" "(328 -928 64) (448 -928 64) (448 -928 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84857" - "plane" "(2758 964 612) (2758 984 632) (2758 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -86.2989] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59693" + "plane" "(328 -964 88) (448 -964 88) (448 -964 68)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84856" - "plane" "(2760 984 632) (2760 964 612) (2760 964 616)" + "id" "59692" + "plane" "(328 -960 64) (448 -960 64) (448 -928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84855" - "plane" "(2760 964 612) (2760 984 632) (2758 984 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -81.7014] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59691" + "plane" "(328 -964 68) (448 -964 68) (448 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84854" - "plane" "(2758 964 616) (2758 984 636) (2760 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -81.7014] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59690" + "plane" "(328 -928 64) (328 -928 88) (328 -964 88)" + "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" "163 140 0" - "groupid" "218407" + "color" "0 221 114" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218413" + "id" "171299" side { - "id" "84864" - "plane" "(2800 964 616) (2780 984 636) (2800 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -86.2989] 0.188" - "vaxis" "[-1 0 0 -87.8283] 0.188" + "id" "59710" + "plane" "(-128 -928 88) (-8 -928 88) (-8 -964 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84863" - "plane" "(2800 964 612) (2800 984 632) (2780 984 632)" + "id" "59709" + "plane" "(-8 -964 68) (-8 -964 88) (-8 -928 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84862" - "plane" "(2800 964 612) (2800 964 616) (2800 984 636)" + "id" "59708" + "plane" "(-128 -928 64) (-8 -928 64) (-8 -928 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -47967,65 +48639,86 @@ world } side { - "id" "84861" - "plane" "(2780 984 632) (2780 984 636) (2800 964 616)" + "id" "59707" + "plane" "(-128 -964 88) (-8 -964 88) (-8 -964 68)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59706" + "plane" "(-128 -960 64) (-8 -960 64) (-8 -928 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59705" + "plane" "(-128 -964 68) (-8 -964 68) (-8 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84860" - "plane" "(2800 984 632) (2800 984 636) (2780 984 636)" + "id" "59704" + "plane" "(-128 -928 64) (-128 -928 88) (-128 -964 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218412" + "color" "0 221 114" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218414" + "id" "171313" side { - "id" "84869" - "plane" "(2800 1004 616) (2800 984 636) (2780 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 118.299] 0.188" - "vaxis" "[-1 0 0 -87.8283] 0.188" + "id" "59746" + "plane" "(356 -960 96) (356 -928 96) (420 -928 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84868" - "plane" "(2800 1004 612) (2780 984 632) (2800 984 632)" + "id" "59745" + "plane" "(356 -928 88) (356 -928 96) (356 -960 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84867" - "plane" "(2800 1004 616) (2800 1004 612) (2800 984 632)" + "id" "59744" + "plane" "(420 -960 88) (420 -960 96) (420 -928 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -48033,230 +48726,238 @@ world } side { - "id" "84866" - "plane" "(2800 1004 612) (2800 1004 616) (2780 984 636)" - "material" "TOOLS/TOOLSNODRAW" + "id" "59743" + "plane" "(420 -928 88) (420 -928 96) (356 -928 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84865" - "plane" "(2780 984 632) (2780 984 636) (2800 984 636)" - "material" "TOOLS/TOOLSNODRAW" + "id" "59742" + "plane" "(356 -960 88) (356 -960 96) (420 -960 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor + side { - "color" "163 140 0" - "groupid" "218412" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "59741" + "plane" "(356 -928 88) (356 -960 88) (420 -960 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 133 222" + "visgroupshown" "1" + "visgroupautoshown" "1" } } solid { - "id" "218415" + "id" "171314" side { - "id" "84875" - "plane" "(2802 984 632) (2800 984 632) (2800 984 636)" + "id" "59752" + "plane" "(420 -960 216) (420 -928 216) (428 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84874" - "plane" "(2800 1004 612) (2802 1004 612) (2802 1004 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 39.8283] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59751" + "plane" "(420 -928 88) (420 -928 216) (420 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84873" - "plane" "(2802 1004 612) (2802 984 632) (2802 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 118.299] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59750" + "plane" "(428 -960 88) (428 -960 216) (428 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84872" - "plane" "(2800 984 632) (2800 1004 612) (2800 1004 616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "59749" + "plane" "(428 -928 88) (428 -928 216) (420 -928 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84871" - "plane" "(2800 1004 612) (2800 984 632) (2802 984 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 39.8283] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59748" + "plane" "(420 -960 88) (420 -960 216) (428 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84870" - "plane" "(2802 1004 616) (2802 984 636) (2800 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 39.8283] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59747" + "plane" "(420 -928 88) (420 -960 88) (428 -960 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218412" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218416" + "id" "171316" side { - "id" "84881" - "plane" "(2800 984 632) (2802 984 632) (2802 984 636)" + "id" "59764" + "plane" "(348 -960 216) (348 -928 216) (356 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84880" - "plane" "(2802 964 612) (2800 964 612) (2800 964 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 39.8283] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59763" + "plane" "(348 -928 88) (348 -928 216) (348 -960 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84879" - "plane" "(2802 984 632) (2802 964 612) (2802 964 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -86.2989] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59762" + "plane" "(356 -960 88) (356 -960 216) (356 -928 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84878" - "plane" "(2800 964 612) (2800 984 632) (2800 984 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "59761" + "plane" "(356 -928 88) (356 -928 216) (348 -928 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84877" - "plane" "(2802 964 612) (2802 984 632) (2800 984 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 39.8283] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59760" + "plane" "(348 -960 88) (348 -960 216) (356 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84876" - "plane" "(2800 964 616) (2800 984 636) (2802 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 39.8283] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59759" + "plane" "(348 -928 88) (348 -960 88) (356 -960 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218412" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218418" + "id" "171317" side { - "id" "84886" - "plane" "(2760 996 360) (2752 996 360) (2752 780 360)" + "id" "59770" + "plane" "(356 -960 216) (356 -928 216) (420 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84885" - "plane" "(2752 996 360) (2760 996 360) (2760 996 368)" + "id" "59769" + "plane" "(356 -928 208) (356 -928 216) (356 -960 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84884" - "plane" "(2752 996 360) (2760 996 368) (2760 772 368)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0.707107 0 0.707107 13.9314] 0.25" - "vaxis" "[0 -1 0 -237] 0.25" + "id" "59768" + "plane" "(420 -960 208) (420 -960 216) (420 -928 216)" + "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" "84883" - "plane" "(2760 996 360) (2760 772 360) (2760 772 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "id" "59767" + "plane" "(420 -928 208) (420 -928 216) (356 -928 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -48264,43 +48965,53 @@ world } side { - "id" "84882" - "plane" "(2752 780 360) (2760 772 368) (2760 772 360)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "59766" + "plane" "(356 -960 208) (356 -960 216) (420 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "59765" + "plane" "(356 -928 208) (356 -960 208) (420 -960 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218417" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218419" + "id" "171328" side { - "id" "84891" - "plane" "(2752 996 360) (2760 996 360) (2760 772 360)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 48] 0.25" + "id" "59806" + "plane" "(-100 -960 96) (-100 -928 96) (-36 -928 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84890" - "plane" "(2752 996 360) (2760 996 352) (2760 996 360)" + "id" "59805" + "plane" "(-100 -928 88) (-100 -928 96) (-100 -960 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -48308,21 +49019,32 @@ world } side { - "id" "84889" - "plane" "(2760 996 352) (2752 996 360) (2752 780 360)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -48] 0.25" - "vaxis" "[0 -1 0 -237] 0.25" - "rotation" "90" + "id" "59804" + "plane" "(-36 -960 88) (-36 -960 96) (-36 -928 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84888" - "plane" "(2760 996 360) (2760 996 352) (2760 772 352)" + "id" "59803" + "plane" "(-36 -928 88) (-36 -928 96) (-100 -928 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59802" + "plane" "(-100 -960 88) (-100 -960 96) (-36 -960 96)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -48330,42 +49052,41 @@ world } side { - "id" "84887" - "plane" "(2752 780 360) (2760 772 360) (2760 772 352)" + "id" "59801" + "plane" "(-100 -928 88) (-100 -960 88) (-36 -960 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218417" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218420" + "id" "171329" side { - "id" "84896" - "plane" "(2760 284 288) (2760 328 324) (2760 284 324)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59812" + "plane" "(-36 -960 216) (-36 -928 216) (-28 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84895" - "plane" "(2792 284 288) (2792 284 324) (2792 328 324)" - "material" "TOOLS/TOOLSNODRAW" + "id" "59811" + "plane" "(-36 -928 88) (-36 -928 216) (-36 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -48374,21 +49095,32 @@ world } side { - "id" "84894" - "plane" "(2792 284 288) (2760 284 288) (2760 284 324)" + "id" "59810" + "plane" "(-28 -960 88) (-28 -960 216) (-28 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84893" - "plane" "(2760 284 288) (2792 284 288) (2792 328 324)" + "id" "59809" + "plane" "(-28 -928 88) (-28 -928 216) (-36 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59808" + "plane" "(-36 -960 88) (-36 -960 216) (-28 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -48396,54 +49128,53 @@ world } side { - "id" "84892" - "plane" "(2792 284 324) (2760 284 324) (2760 328 324)" + "id" "59807" + "plane" "(-36 -928 88) (-36 -960 88) (-28 -960 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218421" + "id" "171331" side { - "id" "84901" - "plane" "(2760 388 288) (2760 388 324) (2760 344 324)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59824" + "plane" "(-108 -960 216) (-108 -928 216) (-100 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84900" - "plane" "(2792 388 288) (2792 344 324) (2792 388 324)" + "id" "59823" + "plane" "(-108 -928 88) (-108 -928 216) (-108 -960 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84899" - "plane" "(2760 388 288) (2792 388 288) (2792 388 324)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "59822" + "plane" "(-100 -960 88) (-100 -960 216) (-100 -928 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -48451,10 +49182,21 @@ world } side { - "id" "84898" - "plane" "(2760 344 324) (2792 344 324) (2792 388 288)" + "id" "59821" + "plane" "(-100 -928 88) (-100 -928 216) (-108 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59820" + "plane" "(-108 -960 88) (-108 -960 216) (-100 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -48462,54 +49204,53 @@ world } side { - "id" "84897" - "plane" "(2792 344 324) (2760 344 324) (2760 388 324)" + "id" "59819" + "plane" "(-108 -928 88) (-108 -960 88) (-100 -960 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218422" + "id" "171332" side { - "id" "84907" - "plane" "(2648 504 152) (2648 700 152) (2664 700 152)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[0 1 0 2.12802] 0.188" - "vaxis" "[1 0 0 26.8928] 0.188" + "id" "59830" + "plane" "(-100 -960 216) (-100 -928 216) (-36 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84906" - "plane" "(2664 504 144) (2664 700 144) (2648 700 144)" + "id" "59829" + "plane" "(-100 -928 208) (-100 -928 216) (-100 -960 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84905" - "plane" "(2648 504 144) (2648 504 152) (2664 504 152)" + "id" "59828" + "plane" "(-36 -960 208) (-36 -960 216) (-36 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -48517,10 +49258,10 @@ world } side { - "id" "84904" - "plane" "(2664 700 144) (2664 700 152) (2648 700 152)" + "id" "59827" + "plane" "(-36 -928 208) (-36 -928 216) (-100 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -48528,153 +49269,162 @@ world } side { - "id" "84903" - "plane" "(2648 700 144) (2648 700 152) (2648 504 152)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 258.128] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "59826" + "plane" "(-100 -960 208) (-100 -960 216) (-36 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84902" - "plane" "(2664 504 144) (2664 504 152) (2664 700 152)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "59825" + "plane" "(-100 -928 208) (-100 -960 208) (-36 -960 208)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218423" + "id" "171338" side { - "id" "84913" - "plane" "(2616 488 136) (2616 716 136) (2632 716 136)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[0 1 0 2.12802] 0.188" - "vaxis" "[1 0 0 26.8928] 0.188" + "id" "59842" + "plane" "(328 -960 216) (328 -928 216) (348 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84912" - "plane" "(2632 488 128) (2632 716 128) (2616 716 128)" + "id" "59841" + "plane" "(328 -928 88) (328 -928 216) (328 -960 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84911" - "plane" "(2616 488 128) (2616 488 136) (2632 488 136)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 257.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "59840" + "plane" "(348 -960 88) (348 -960 216) (348 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84910" - "plane" "(2632 716 128) (2632 716 136) (2616 716 136)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 257.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "59839" + "plane" "(348 -928 88) (348 -928 216) (328 -928 216)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84909" - "plane" "(2616 716 128) (2616 716 136) (2616 488 136)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 258.128] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "59838" + "plane" "(328 -960 88) (328 -960 216) (348 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84908" - "plane" "(2632 488 128) (2632 488 136) (2632 716 136)" + "id" "59837" + "plane" "(328 -928 88) (328 -960 88) (348 -960 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218424" + "id" "171348" side { - "id" "84918" - "plane" "(2980 602 1008) (2980 712 1008) (2870 712 1008)" + "id" "59854" + "plane" "(-28 -960 216) (-28 -928 216) (-8 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84917" - "plane" "(2870 602 1008) (2870 602 1600) (2980 602 1008)" + "id" "59853" + "plane" "(-28 -928 88) (-28 -928 216) (-28 -960 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84916" - "plane" "(2980 712 1008) (2870 602 1600) (2870 712 1008)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[-1 0 0 307.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "59852" + "plane" "(-8 -960 88) (-8 -960 216) (-8 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84915" - "plane" "(2870 602 1008) (2870 712 1008) (2870 602 1600)" + "id" "59851" + "plane" "(-8 -928 88) (-8 -928 216) (-28 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59850" + "plane" "(-28 -960 88) (-28 -960 216) (-8 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -48682,43 +49432,42 @@ world } side { - "id" "84914" - "plane" "(2980 602 1008) (2870 602 1600) (2980 712 1008)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 1 0 427.873] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "59849" + "plane" "(-28 -928 88) (-28 -960 88) (-8 -960 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218425" + "id" "171351" side { - "id" "84923" - "plane" "(2980 492 1008) (2980 602 1008) (2870 602 1008)" + "id" "59868" + "plane" "(312 -928 240) (312 -968 240) (8.00003 -968 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84922" - "plane" "(2980 602 1008) (2870 602 1600) (2870 602 1008)" + "id" "59867" + "plane" "(312 -968 240) (312 -928 240) (312 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -48726,505 +49475,515 @@ world } side { - "id" "84921" - "plane" "(2870 492 1008) (2870 602 1600) (2980 492 1008)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[-1 0 0 307.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "59866" + "plane" "(312 -928 216) (312 -928 240) (8.00003 -928 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84920" - "plane" "(2870 602 1008) (2870 602 1600) (2870 492 1008)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "59865" + "plane" "(312 -968 240) (312 -968 220) (8.00003 -968 220)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59864" + "plane" "(312 -964 216) (312 -928 216) (8.00003 -928 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 352] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84919" - "plane" "(2980 602 1008) (2980 492 1008) (2870 602 1600)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "59863" + "plane" "(312 -968 220) (312 -964 216) (8.00003 -964 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59862" + "plane" "(8.00003 -928 240) (8.00003 -968 240) (8.00003 -968 220)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 221 114" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218426" + "id" "171378" side { - "id" "84929" - "plane" "(2760 388 706.66) (2760 284 637.324) (2760 284 324)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "59915" + "plane" "(332 -964 88) (328 -968 88) (312 -968 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84928" - "plane" "(2792 284 637.332) (2792 388 706.668) (2792 388 324)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "59914" + "plane" "(332 -964 64) (328 -968 68) (328 -968 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84927" - "plane" "(2792 284 637.332) (2760 284 637.324) (2760 388 706.66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "59913" + "plane" "(312 -968 88) (328 -968 88) (328 -968 68)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84926" - "plane" "(2792 284 324) (2760 284 324) (2760 284 637.324)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "59912" + "plane" "(312 -968 68) (328 -968 68) (332 -964 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84925" - "plane" "(2760 388 324) (2792 388 324) (2792 388 706.668)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "59911" + "plane" "(308 -964 88) (312 -968 88) (312 -968 68)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84924" - "plane" "(2760 284 324) (2792 284 324) (2792 388 324)" + "id" "59910" + "plane" "(308 -964 64) (332 -964 64) (332 -964 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "223 212 0" + "groupid" "171409" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218428" + "id" "171400" side { - "id" "84934" - "plane" "(2984 964 616) (3004 984 636) (3004 964 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -93.6154] 0.188" - "vaxis" "[0 1 0 114.895] 0.188" + "id" "59930" + "plane" "(336 -960 64) (332 -964 64) (332 -964 68)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84933" - "plane" "(2984 964 612) (3004 964 632) (3004 984 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 48] 0.25" + "id" "59929" + "plane" "(328 -964 64) (332 -964 64) (336 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 31.9985] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84932" - "plane" "(2984 964 612) (2984 964 616) (3004 964 636)" + "id" "59928" + "plane" "(332 -964 68) (332 -964 64) (328 -964 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84931" - "plane" "(3004 984 632) (3004 984 636) (2984 964 616)" + "id" "59927" + "plane" "(328 -960 64) (336 -960 64) (332 -964 68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84930" - "plane" "(3004 964 632) (3004 964 636) (3004 984 636)" + "id" "59926" + "plane" "(328 -964 68) (328 -964 64) (328 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218427" + "color" "223 212 0" + "groupid" "171409" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218429" + "id" "171405" side { - "id" "84939" - "plane" "(3024 964 616) (3004 964 636) (3004 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 125.615] 0.188" - "vaxis" "[0 1 0 114.895] 0.188" + "id" "59935" + "plane" "(312 -960 64) (304 -960 64) (308 -964 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 31.9985] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84938" - "plane" "(3024 964 612) (3004 984 632) (3004 964 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 48] 0.25" + "id" "59934" + "plane" "(308 -964 68) (308 -964 64) (304 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84937" - "plane" "(3024 964 616) (3024 964 612) (3004 964 632)" + "id" "59933" + "plane" "(312 -964 64) (308 -964 64) (308 -964 68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84936" - "plane" "(3024 964 612) (3024 964 616) (3004 984 636)" + "id" "59932" + "plane" "(308 -964 68) (304 -960 64) (312 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84935" - "plane" "(3004 984 632) (3004 984 636) (3004 964 636)" + "id" "59931" + "plane" "(312 -960 64) (312 -964 64) (312 -964 68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218427" + "color" "223 212 0" + "groupid" "171409" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218430" - side - { - "id" "84945" - "plane" "(3004 962 632) (3004 964 632) (3004 964 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "171411" side { - "id" "84944" - "plane" "(3024 964 612) (3024 962 612) (3024 962 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -34.8946] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59956" + "plane" "(-8 -960 64) (-16 -960 64) (-12 -964 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 31.9985] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84943" - "plane" "(3024 962 612) (3004 962 632) (3004 962 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 125.615] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59955" + "plane" "(-12 -964 68) (-12 -964 64) (-16 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84942" - "plane" "(3004 964 632) (3024 964 612) (3024 964 616)" + "id" "59954" + "plane" "(-8 -964 64) (-12 -964 64) (-12 -964 68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84941" - "plane" "(3024 964 612) (3004 964 632) (3004 962 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -34.8946] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59953" + "plane" "(-12 -964 68) (-16 -960 64) (-8 -960 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" "84940" - "plane" "(3024 962 616) (3004 962 636) (3004 964 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -34.8946] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59952" + "plane" "(-8 -960 64) (-8 -964 64) (-8 -964 68)" + "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" "163 140 0" - "groupid" "218427" + "color" "223 212 0" + "groupid" "171410" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218431" - side - { - "id" "84951" - "plane" "(3004 964 632) (3004 962 632) (3004 962 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "171412" side { - "id" "84950" - "plane" "(2984 962 612) (2984 964 612) (2984 964 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -34.8946] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59961" + "plane" "(16 -960 64) (12 -964 64) (12 -964 68)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84949" - "plane" "(3004 962 632) (2984 962 612) (2984 962 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -93.6154] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59960" + "plane" "(8 -964 64) (12 -964 64) (16 -960 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 31.9985] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84948" - "plane" "(2984 964 612) (3004 964 632) (3004 964 636)" + "id" "59959" + "plane" "(12 -964 68) (12 -964 64) (8 -964 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84947" - "plane" "(2984 962 612) (3004 962 632) (3004 964 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -34.8946] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59958" + "plane" "(8 -960 64) (16 -960 64) (12 -964 68)" + "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" "84946" - "plane" "(2984 964 616) (3004 964 636) (3004 962 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -34.8946] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "59957" + "plane" "(8 -964 68) (8 -964 64) (8 -960 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" "163 140 0" - "groupid" "218427" + "color" "223 212 0" + "groupid" "171410" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218433" + "id" "171413" side { - "id" "84956" - "plane" "(2984 1004 616) (3004 1004 636) (3004 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -93.6154] 0.188" - "vaxis" "[0 -1 0 -41.0216] 0.188" + "id" "59967" + "plane" "(12 -964 88) (8 -968 88) (-8 -968 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84955" - "plane" "(2984 1004 612) (3004 984 632) (3004 1004 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "59966" + "plane" "(12 -964 64) (8 -968 68) (8 -968 88)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84954" - "plane" "(2984 1004 616) (2984 1004 612) (3004 1004 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "59965" + "plane" "(-8 -968 88) (8 -968 88) (8 -968 68)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84953" - "plane" "(2984 1004 612) (2984 1004 616) (3004 984 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "59964" + "plane" "(-8 -968 68) (8 -968 68) (12 -964 64)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59963" + "plane" "(-12 -964 88) (-8 -968 88) (-8 -968 68)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84952" - "plane" "(3004 984 632) (3004 984 636) (3004 1004 636)" + "id" "59962" + "plane" "(-12 -964 64) (12 -964 64) (12 -964 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218432" + "color" "223 212 0" + "groupid" "171410" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218434" + "id" "171432" side { - "id" "84961" - "plane" "(3024 1004 616) (3004 984 636) (3004 1004 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 125.615] 0.188" - "vaxis" "[0 -1 0 -41.0216] 0.188" + "id" "60004" + "plane" "(336 -960 216) (332 -964 216) (332 -964 220)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84960" - "plane" "(3024 1004 612) (3004 1004 632) (3004 984 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "60003" + "plane" "(328 -964 216) (332 -964 216) (336 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84959" - "plane" "(3024 1004 612) (3024 1004 616) (3004 1004 636)" + "id" "60002" + "plane" "(332 -964 220) (332 -964 216) (328 -964 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -49232,10 +49991,10 @@ world } side { - "id" "84958" - "plane" "(3004 984 632) (3004 984 636) (3024 1004 616)" + "id" "60001" + "plane" "(328 -960 216) (336 -960 216) (332 -964 220)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -49243,10 +50002,10 @@ world } side { - "id" "84957" - "plane" "(3004 1004 632) (3004 1004 636) (3004 984 636)" + "id" "60000" + "plane" "(328 -964 220) (328 -964 216) (328 -960 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -49254,439 +50013,448 @@ world } editor { - "color" "163 140 0" - "groupid" "218432" + "color" "223 212 0" + "groupid" "171414" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218435" + "id" "171433" side { - "id" "84967" - "plane" "(3004 1004 632) (3004 1006 632) (3004 1006 636)" + "id" "60010" + "plane" "(332 -964 240) (328 -968 240) (312 -968 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84966" - "plane" "(3024 1006 612) (3024 1004 612) (3024 1004 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 121.022] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "60009" + "plane" "(332 -964 216) (328 -968 220) (328 -968 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84965" - "plane" "(3004 1006 632) (3024 1006 612) (3024 1006 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 125.615] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "60008" + "plane" "(312 -968 240) (328 -968 240) (328 -968 220)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84964" - "plane" "(3024 1004 612) (3004 1004 632) (3004 1004 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "60007" + "plane" "(312 -968 220) (328 -968 220) (332 -964 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84963" - "plane" "(3024 1006 612) (3004 1006 632) (3004 1004 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 121.022] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "60006" + "plane" "(312 -964 216) (332 -964 216) (332 -964 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84962" - "plane" "(3024 1004 616) (3004 1004 636) (3004 1006 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 121.022] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "60005" + "plane" "(312 -964 240) (312 -968 240) (312 -968 220)" + "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" "163 140 0" - "groupid" "218432" + "color" "223 212 0" + "groupid" "171414" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218436" + "id" "171434" side { - "id" "84973" - "plane" "(3004 1006 632) (3004 1004 632) (3004 1004 636)" + "id" "60024" + "plane" "(448 -964 240) (328 -964 240) (328 -928 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84972" - "plane" "(2984 1004 612) (2984 1006 612) (2984 1006 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 121.022] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "60023" + "plane" "(448 -928 240) (448 -928 216) (448 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84971" - "plane" "(2984 1006 612) (3004 1006 632) (3004 1006 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -93.6154] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "60022" + "plane" "(448 -928 240) (328 -928 240) (328 -928 216)" + "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" "60021" + "plane" "(448 -964 220) (328 -964 220) (328 -964 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84970" - "plane" "(3004 1004 632) (2984 1004 612) (2984 1004 616)" + "id" "60020" + "plane" "(448 -928 216) (328 -928 216) (328 -960 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84969" - "plane" "(2984 1004 612) (3004 1004 632) (3004 1006 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 121.022] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "60019" + "plane" "(448 -960 216) (328 -960 216) (328 -964 220)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84968" - "plane" "(2984 1006 616) (3004 1006 636) (3004 1004 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 121.022] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "60018" + "plane" "(328 -964 240) (328 -964 220) (328 -960 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218432" + "color" "0 221 114" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218438" + "id" "171439" side { - "id" "84979" - "plane" "(2760 1004 160) (2728 1036 160) (3056 1036 160)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[1 0 0 22.8928] 0.188" - "vaxis" "[0 -1 0 -6.12802] 0.188" + "id" "60041" + "plane" "(8 -964 240) (8 -968 240) (-8 -968 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84978" - "plane" "(2760 1004 128) (3024 1004 128) (3056 1036 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "60040" + "plane" "(-12 -964 240) (-8 -968 240) (-8 -968 220)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84977" - "plane" "(2728 1036 128) (2728 1036 160) (2760 1004 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "60039" + "plane" "(8 -968 220) (-8 -968 220) (-8 -968 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84976" - "plane" "(3056 1036 128) (3056 1036 160) (2728 1036 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 126.893] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "60038" + "plane" "(8 -964 216) (-12 -964 216) (-8 -968 220)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84975" - "plane" "(2760 1004 128) (2760 1004 160) (3024 1004 160)" + "id" "60037" + "plane" "(8 -964 240) (-12 -964 240) (-12 -964 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84974" - "plane" "(3024 1004 128) (3024 1004 160) (3056 1036 160)" + "id" "60036" + "plane" "(8 -964 216) (8 -968 220) (8 -968 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218437" + "color" "223 212 0" + "groupid" "171438" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218439" + "id" "171440" side { - "id" "84985" - "plane" "(2760 1004 160) (2760 788 160) (2728 788 160)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[0 -1 0 -10.128] 0.188" - "vaxis" "[1 0 0 26.8928] 0.188" + "id" "60046" + "plane" "(-12 -964 220) (-12 -964 216) (-16 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84984" - "plane" "(2760 1004 128) (2728 1036 128) (2728 788 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "60045" + "plane" "(-8 -960 216) (-16 -960 216) (-12 -964 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84983" - "plane" "(2760 1004 128) (2760 1004 160) (2728 1036 160)" + "id" "60044" + "plane" "(-8 -964 220) (-8 -964 216) (-12 -964 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 48] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "84982" - "plane" "(2728 1036 128) (2728 1036 160) (2728 788 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 -1 0 -505.873] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84981" - "plane" "(2760 788 128) (2760 788 160) (2760 1004 160)" + "id" "60043" + "plane" "(-8 -964 220) (-12 -964 220) (-16 -960 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84980" - "plane" "(2728 788 128) (2728 788 160) (2760 788 160)" + "id" "60042" + "plane" "(-8 -960 216) (-8 -964 216) (-8 -964 220)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218437" + "color" "223 212 0" + "groupid" "171438" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218440" + "id" "171447" side { - "id" "84991" - "plane" "(3024 964 160) (3056 996 160) (4008 996 160)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[-1 0 0 -30.8928] 0.188" - "vaxis" "[0 1 0 6.12802] 0.188" + "id" "60060" + "plane" "(-8 -964 240) (-128 -964 240) (-128 -928 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84990" - "plane" "(3976 964 128) (4008 996 128) (3056 996 128)" + "id" "60059" + "plane" "(-8 -928 240) (-8 -928 216) (-8 -960 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84989" - "plane" "(3024 964 128) (3024 964 160) (3976 964 160)" + "id" "60058" + "plane" "(-8 -928 240) (-128 -928 240) (-128 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84988" - "plane" "(4008 996 128) (4008 996 160) (3056 996 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[-1 0 0 137.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "60057" + "plane" "(-8 -964 220) (-128 -964 220) (-128 -964 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84987" - "plane" "(3056 996 128) (3056 996 160) (3024 964 160)" + "id" "60056" + "plane" "(-8 -928 216) (-128 -928 216) (-128 -960 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60055" + "plane" "(-8 -960 216) (-128 -960 216) (-128 -964 220)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84986" - "plane" "(3976 964 128) (3976 964 160) (4008 996 160)" + "id" "60054" + "plane" "(-128 -964 240) (-128 -964 220) (-128 -960 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218437" + "color" "0 221 114" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218441" + "id" "171603" side { - "id" "84997" - "plane" "(3056 996 160) (3024 964 160) (3024 1004 160)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[0 1 0 2.12802] 0.188" - "vaxis" "[-1 0 0 -26.8928] 0.188" + "id" "60282" + "plane" "(120 -964 368) (120 -928 368) (128 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84996" - "plane" "(3024 964 128) (3056 996 128) (3056 1036 128)" + "id" "60281" + "plane" "(120 -928 240) (120 -928 368) (120 -964 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84995" - "plane" "(3056 996 128) (3056 996 160) (3056 1036 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 257.873] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "60280" + "plane" "(128 -964 240) (128 -964 368) (128 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84994" - "plane" "(3024 1004 128) (3024 1004 160) (3024 964 160)" + "id" "60279" + "plane" "(128 -928 240) (128 -928 368) (120 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -49694,65 +50462,64 @@ world } side { - "id" "84993" - "plane" "(3056 1036 128) (3056 1036 160) (3024 1004 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "60278" + "plane" "(120 -964 240) (120 -964 368) (128 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "84992" - "plane" "(3024 964 128) (3024 964 160) (3056 996 160)" + "id" "60277" + "plane" "(120 -928 240) (120 -964 240) (128 -964 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218437" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218442" + "id" "171604" side { - "id" "85003" - "plane" "(2776 816 160) (2760 816 160) (2760 920 160)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[0 -1 0 -10.128] 0.188" - "vaxis" "[1 0 0 26.8928] 0.188" + "id" "60288" + "plane" "(104 -928 368) (120 -928 368) (120 -964 368)" + "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" "85002" - "plane" "(2776 816 128) (2776 920 128) (2760 920 128)" + "id" "60287" + "plane" "(104 -928 368) (104 -960 368) (104 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85001" - "plane" "(2776 816 128) (2776 816 160) (2776 920 160)" + "id" "60286" + "plane" "(120 -964 368) (120 -928 368) (120 -928 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -49760,10 +50527,10 @@ world } side { - "id" "85000" - "plane" "(2776 920 128) (2776 920 160) (2760 920 160)" + "id" "60285" + "plane" "(120 -928 368) (104 -928 368) (104 -928 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -49771,10 +50538,10 @@ world } side { - "id" "84999" - "plane" "(2760 816 128) (2760 816 160) (2776 816 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "60284" + "plane" "(104 -960 368) (120 -964 368) (120 -964 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -49782,76 +50549,75 @@ world } side { - "id" "84998" - "plane" "(2760 920 128) (2760 920 160) (2760 816 160)" + "id" "60283" + "plane" "(104 -960 240) (120 -964 240) (120 -928 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218437" + "color" "0 187 100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218444" + "id" "171605" side { - "id" "85009" - "plane" "(2760 200 160) (2728 168 160) (2728 416 160)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[0 1 0 2.12802] 0.188" - "vaxis" "[1 0 0 26.8928] 0.188" + "id" "60294" + "plane" "(96 -960 368) (96 -928 368) (104 -928 368)" + "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" "85008" - "plane" "(2728 168 128) (2760 200 128) (2760 416 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "60293" + "plane" "(96 -928 240) (96 -928 368) (96 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85007" - "plane" "(2728 168 128) (2728 168 160) (2760 200 160)" + "id" "60292" + "plane" "(104 -960 240) (104 -960 368) (104 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85006" - "plane" "(2728 416 128) (2728 416 160) (2728 168 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 257.873] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "60291" + "plane" "(104 -928 240) (104 -928 368) (96 -928 368)" + "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" "85005" - "plane" "(2760 200 128) (2760 200 160) (2760 416 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "id" "60290" + "plane" "(96 -960 240) (96 -960 368) (104 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -49859,54 +50625,53 @@ world } side { - "id" "85004" - "plane" "(2760 416 128) (2760 416 160) (2728 416 160)" + "id" "60289" + "plane" "(96 -928 240) (96 -960 240) (104 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 48] 0.25" - "rotation" "0" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218443" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218445" + "id" "171607" side { - "id" "85015" - "plane" "(2776 284 160) (2760 284 160) (2760 388 160)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[0 1 0 2.12802] 0.188" - "vaxis" "[1 0 0 26.8928] 0.188" + "id" "60306" + "plane" "(32 -960 248) (32 -928 248) (96 -928 248)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85014" - "plane" "(2776 284 128) (2776 388 128) (2760 388 128)" + "id" "60305" + "plane" "(32 -928 240) (32 -928 248) (32 -960 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85013" - "plane" "(2776 284 128) (2776 284 160) (2776 388 160)" + "id" "60304" + "plane" "(96 -960 240) (96 -960 248) (96 -928 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -49914,10 +50679,10 @@ world } side { - "id" "85012" - "plane" "(2760 284 128) (2760 284 160) (2776 284 160)" + "id" "60303" + "plane" "(96 -928 240) (96 -928 248) (32 -928 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -49925,10 +50690,10 @@ world } side { - "id" "85011" - "plane" "(2776 388 128) (2776 388 160) (2760 388 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "60302" + "plane" "(32 -960 240) (32 -960 248) (96 -960 248)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -49936,76 +50701,75 @@ world } side { - "id" "85010" - "plane" "(2760 388 128) (2760 388 160) (2760 284 160)" + "id" "60301" + "plane" "(32 -928 240) (32 -960 240) (96 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218443" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218446" + "id" "171608" side { - "id" "85021" - "plane" "(2728 168 160) (2760 200 160) (3024 200 160)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[1 0 0 22.8928] 0.188" - "vaxis" "[0 1 0 6.12802] 0.188" + "id" "60312" + "plane" "(24 -960 368) (24 -928 368) (32 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85020" - "plane" "(2760 200 128) (2728 168 128) (3056 168 128)" + "id" "60311" + "plane" "(24 -928 240) (24 -928 368) (24 -960 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85019" - "plane" "(2760 200 128) (2760 200 160) (2728 168 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "60310" + "plane" "(32 -960 240) (32 -960 368) (32 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85018" - "plane" "(2728 168 128) (2728 168 160) (3056 168 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 126.893] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "60309" + "plane" "(32 -928 240) (32 -928 368) (24 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85017" - "plane" "(3024 200 128) (3024 200 160) (2760 200 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "id" "60308" + "plane" "(24 -960 240) (24 -960 368) (32 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50013,65 +50777,64 @@ world } side { - "id" "85016" - "plane" "(3056 168 128) (3056 168 160) (3024 200 160)" + "id" "60307" + "plane" "(24 -928 240) (24 -960 240) (32 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218443" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218447" + "id" "171609" side { - "id" "85027" - "plane" "(3056 168 160) (3024 200 160) (3024 240 160)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[0 -1 0 -10.128] 0.188" - "vaxis" "[-1 0 0 -26.8928] 0.188" + "id" "60318" + "plane" "(24 -960 368) (8 -964 368) (8 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85026" - "plane" "(3024 200 128) (3056 168 128) (3056 208 128)" + "id" "60317" + "plane" "(24 -928 240) (24 -960 240) (24 -960 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85025" - "plane" "(3056 168 128) (3056 168 160) (3056 208 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 -1 0 -505.873] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "60316" + "plane" "(8 -964 240) (8 -928 240) (8 -928 368)" + "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" "85024" - "plane" "(3024 240 128) (3024 240 160) (3024 200 160)" + "id" "60315" + "plane" "(8 -928 240) (24 -928 240) (24 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50079,219 +50842,227 @@ world } side { - "id" "85023" - "plane" "(3024 200 128) (3024 200 160) (3056 168 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "60314" + "plane" "(24 -960 240) (8 -964 240) (8 -964 368)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85022" - "plane" "(3056 208 128) (3056 208 160) (3024 240 160)" + "id" "60313" + "plane" "(24 -928 240) (8 -928 240) (8 -964 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218443" + "color" "0 239 136" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218448" + "id" "171610" side { - "id" "85033" - "plane" "(3056 208 160) (3024 240 160) (3976 240 160)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[-1 0 0 -30.8928] 0.188" - "vaxis" "[0 -1 0 -6.12802] 0.188" + "id" "60324" + "plane" "(32 -960 368) (32 -928 368) (96 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85032" - "plane" "(4008 208 128) (3976 240 128) (3024 240 128)" + "id" "60323" + "plane" "(32 -928 360) (32 -928 368) (32 -960 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85031" - "plane" "(3976 240 128) (3976 240 160) (3024 240 160)" + "id" "60322" + "plane" "(96 -960 360) (96 -960 368) (96 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85030" - "plane" "(3056 208 128) (3056 208 160) (4008 208 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[-1 0 0 137.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "60321" + "plane" "(96 -928 360) (96 -928 368) (32 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85029" - "plane" "(3024 240 128) (3024 240 160) (3056 208 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "60320" + "plane" "(32 -960 360) (32 -960 368) (96 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85028" - "plane" "(4008 208 128) (4008 208 160) (3976 240 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60319" + "plane" "(32 -928 360) (32 -960 360) (96 -960 360)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218443" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218450" + "id" "171611" side { - "id" "85038" - "plane" "(2984 602 608) (3976 602 608) (3976 964 608)" + "id" "60330" + "plane" "(128 -964 368) (128 -928 368) (192 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85037" - "plane" "(3976 602 608) (3976 602 849.332) (3976 964 608)" + "id" "60329" + "plane" "(128 -928 360) (128 -928 368) (128 -964 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 2.66162] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85036" - "plane" "(2984 964 608) (2984 602 849.336) (2984 602 608)" + "id" "60328" + "plane" "(192 -964 360) (192 -964 368) (192 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 2.66162] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85035" - "plane" "(2984 964 608) (3976 964 608) (3976 602 849.332)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[-1 0 0 307.107] 0.188" - "vaxis" "[0 -1 0 -57.9273] 0.108" - "rotation" "90" + "id" "60327" + "plane" "(192 -928 360) (192 -928 368) (128 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85034" - "plane" "(3976 602 608) (2984 602 608) (2984 602 849.336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "60326" + "plane" "(128 -964 360) (128 -964 368) (192 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "60325" + "plane" "(128 -928 360) (128 -964 360) (192 -964 360)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218449" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218452" + "id" "171613" side { - "id" "85044" - "plane" "(2984 944 608) (2984 964 608) (3048 964 608)" + "id" "60342" + "plane" "(192 -964 368) (192 -928 368) (200 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85043" - "plane" "(3048 944 160) (3048 964 160) (2984 964 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "60341" + "plane" "(192 -928 240) (192 -928 368) (192 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85042" - "plane" "(3048 964 160) (3048 964 608) (2984 964 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60340" + "plane" "(200 -964 240) (200 -964 368) (200 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85041" - "plane" "(2984 944 160) (2984 944 608) (3048 944 608)" + "id" "60339" + "plane" "(200 -928 240) (200 -928 368) (192 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50299,10 +51070,10 @@ world } side { - "id" "85040" - "plane" "(2984 964 160) (2984 964 608) (2984 944 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60338" + "plane" "(192 -964 240) (192 -964 368) (200 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50310,65 +51081,64 @@ world } side { - "id" "85039" - "plane" "(3048 944 160) (3048 944 608) (3048 964 608)" + "id" "60337" + "plane" "(192 -928 240) (192 -964 240) (200 -964 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218451" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218453" + "id" "171614" side { - "id" "85050" - "plane" "(3168 944 608) (3168 964 608) (3232 964 608)" + "id" "60348" + "plane" "(200 -928 368) (216 -928 368) (216 -960 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85049" - "plane" "(3232 944 160) (3232 964 160) (3168 964 160)" + "id" "60347" + "plane" "(200 -928 368) (200 -964 368) (200 -964 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85048" - "plane" "(3232 964 160) (3232 964 608) (3168 964 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60346" + "plane" "(216 -960 368) (216 -928 368) (216 -928 240)" + "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" "85047" - "plane" "(3168 944 160) (3168 944 608) (3232 944 608)" + "id" "60345" + "plane" "(216 -928 368) (200 -928 368) (200 -928 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50376,10 +51146,10 @@ world } side { - "id" "85046" - "plane" "(3168 964 160) (3168 964 608) (3168 944 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60344" + "plane" "(200 -964 368) (216 -960 368) (216 -960 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50387,65 +51157,64 @@ world } side { - "id" "85045" - "plane" "(3232 944 160) (3232 944 608) (3232 964 608)" + "id" "60343" + "plane" "(200 -964 240) (216 -960 240) (216 -928 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218451" + "color" "0 187 100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218454" + "id" "171615" side { - "id" "85056" - "plane" "(3048 944 280) (3048 964 280) (3168 964 280)" + "id" "60354" + "plane" "(216 -960 368) (216 -928 368) (224 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85055" - "plane" "(3168 944 160) (3168 964 160) (3048 964 160)" + "id" "60353" + "plane" "(216 -928 240) (216 -928 368) (216 -960 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85054" - "plane" "(3168 964 160) (3168 964 280) (3048 964 280)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60352" + "plane" "(224 -960 240) (224 -960 368) (224 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85053" - "plane" "(3048 944 160) (3048 944 280) (3168 944 280)" + "id" "60351" + "plane" "(224 -928 240) (224 -928 368) (216 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50453,10 +51222,10 @@ world } side { - "id" "85052" - "plane" "(3048 964 160) (3048 964 280) (3048 944 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60350" + "plane" "(216 -960 240) (216 -960 368) (224 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50464,76 +51233,75 @@ world } side { - "id" "85051" - "plane" "(3168 944 160) (3168 944 280) (3168 964 280)" + "id" "60349" + "plane" "(216 -928 240) (216 -960 240) (224 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218451" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218455" + "id" "171616" side { - "id" "85062" - "plane" "(3048 944 488) (3048 964 488) (3108 964 488)" + "id" "60360" + "plane" "(224 -960 368) (224 -928 368) (288 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85061" - "plane" "(3048 964 488) (3048 964 472) (3076 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60359" + "plane" "(224 -928 360) (224 -928 368) (224 -960 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85060" - "plane" "(3048 944 488) (3108 944 488) (3076 944 472)" + "id" "60358" + "plane" "(288 -960 360) (288 -960 368) (288 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85059" - "plane" "(3048 964 488) (3048 944 488) (3048 944 472)" + "id" "60357" + "plane" "(288 -928 360) (288 -928 368) (224 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85058" - "plane" "(3108 944 488) (3108 964 488) (3076 964 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60356" + "plane" "(224 -960 360) (224 -960 368) (288 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50541,43 +51309,42 @@ world } side { - "id" "85057" - "plane" "(3076 944 472) (3076 964 472) (3048 964 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "60355" + "plane" "(224 -928 360) (224 -960 360) (288 -960 360)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218451" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218456" + "id" "171617" side { - "id" "85067" - "plane" "(3048 964 424) (3076 964 472) (3048 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60366" + "plane" "(288 -960 368) (288 -928 368) (296 -928 368)" + "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" "85066" - "plane" "(3048 944 424) (3048 944 472) (3076 944 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "60365" + "plane" "(288 -928 240) (288 -928 368) (288 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50585,10 +51352,10 @@ world } side { - "id" "85065" - "plane" "(3048 944 424) (3048 964 424) (3048 964 472)" + "id" "60364" + "plane" "(296 -960 240) (296 -960 368) (296 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50596,10 +51363,21 @@ world } side { - "id" "85064" - "plane" "(3048 964 424) (3048 944 424) (3076 944 472)" + "id" "60363" + "plane" "(296 -928 240) (296 -928 368) (288 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60362" + "plane" "(288 -960 240) (288 -960 368) (296 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50607,54 +51385,53 @@ world } side { - "id" "85063" - "plane" "(3048 944 472) (3048 964 472) (3076 964 472)" + "id" "60361" + "plane" "(288 -928 240) (288 -960 240) (296 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218451" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218457" + "id" "171618" side { - "id" "85073" - "plane" "(3108 944 488) (3108 964 488) (3168 964 488)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "60372" + "plane" "(224 -960 248) (224 -928 248) (288 -928 248)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85072" - "plane" "(3168 964 488) (3108 964 488) (3140 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60371" + "plane" "(224 -928 240) (224 -928 248) (224 -960 248)" + "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" "85071" - "plane" "(3168 944 488) (3168 944 472) (3140 944 472)" + "id" "60370" + "plane" "(288 -960 240) (288 -960 248) (288 -928 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50662,10 +51439,10 @@ world } side { - "id" "85070" - "plane" "(3168 944 488) (3168 964 488) (3168 964 472)" + "id" "60369" + "plane" "(288 -928 240) (288 -928 248) (224 -928 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50673,10 +51450,10 @@ world } side { - "id" "85069" - "plane" "(3108 944 488) (3140 944 472) (3140 964 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60368" + "plane" "(224 -960 240) (224 -960 248) (288 -960 248)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50684,43 +51461,42 @@ world } side { - "id" "85068" - "plane" "(3168 944 472) (3168 964 472) (3140 964 472)" + "id" "60367" + "plane" "(224 -928 240) (224 -960 240) (288 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218451" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218458" + "id" "171620" side { - "id" "85078" - "plane" "(3168 964 424) (3168 964 472) (3140 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60384" + "plane" "(296 -928 368) (312 -928 368) (312 -964 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85077" - "plane" "(3168 944 424) (3140 944 472) (3168 944 472)" + "id" "60383" + "plane" "(296 -928 368) (296 -960 368) (296 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50728,10 +51504,10 @@ world } side { - "id" "85076" - "plane" "(3168 964 424) (3168 944 424) (3168 944 472)" + "id" "60382" + "plane" "(312 -964 368) (312 -928 368) (312 -928 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50739,10 +51515,21 @@ world } side { - "id" "85075" - "plane" "(3168 944 424) (3168 964 424) (3140 964 472)" + "id" "60381" + "plane" "(312 -928 368) (296 -928 368) (296 -928 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60380" + "plane" "(296 -960 368) (312 -964 368) (312 -964 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50750,142 +51537,151 @@ world } side { - "id" "85074" - "plane" "(3140 944 472) (3140 964 472) (3168 964 472)" + "id" "60379" + "plane" "(296 -960 240) (312 -964 240) (312 -928 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218451" + "color" "0 239 136" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218459" + "id" "171664" side { - "id" "85084" - "plane" "(3048 944 608) (3048 964 608) (3168 964 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "60460" + "plane" "(312 -96 368) (312 -964 368) (312 -968 372)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85083" - "plane" "(3168 944 488) (3168 964 488) (3048 964 488)" + "id" "60459" + "plane" "(8 -96 368) (312 -96 368) (312 -96 376)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85082" - "plane" "(3168 964 488) (3168 964 608) (3048 964 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60458" + "plane" "(312 -968 372) (8 -968 372) (8 -968 376)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85081" - "plane" "(3048 944 488) (3048 944 608) (3168 944 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "60457" + "plane" "(312 -964 368) (312 -96 368) (8 -96 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85080" - "plane" "(3048 964 488) (3048 964 608) (3048 944 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "60456" + "plane" "(312 -964 368) (8 -964 368) (8 -968 372)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60455" + "plane" "(8 -968 372) (8 -964 368) (8 -96 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85079" - "plane" "(3168 944 488) (3168 944 608) (3168 964 608)" + "id" "60454" + "plane" "(312 -96 376) (312 -968 376) (8 -968 376)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218451" + "color" "0 221 114" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218465" + "id" "171667" side { - "id" "85089" - "plane" "(3976 964 600) (3976 972 600) (3024 972 600)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "60495" + "plane" "(356 -960 248) (356 -928 248) (420 -928 248)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85088" - "plane" "(3976 972 600) (3976 964 600) (3976 964 608)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 223.745] 0.188" - "vaxis" "[0 0 -1 253.957] 0.188" + "id" "60494" + "plane" "(356 -928 240) (356 -928 248) (356 -960 248)" + "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" "85087" - "plane" "(3976 972 600) (3976 964 608) (3024 964 608)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 -0.707107 0.707107 -39.8253] 0.25" - "vaxis" "[-1 0 0 267] 0.25" + "id" "60493" + "plane" "(420 -960 240) (420 -960 248) (420 -928 248)" + "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" "85086" - "plane" "(3976 964 600) (3024 964 600) (3024 964 608)" + "id" "60492" + "plane" "(420 -928 240) (420 -928 248) (356 -928 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50893,65 +51689,75 @@ world } side { - "id" "85085" - "plane" "(3024 972 600) (3024 964 608) (3024 964 600)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60491" + "plane" "(356 -960 240) (356 -960 248) (420 -960 248)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "60490" + "plane" "(356 -928 240) (356 -960 240) (420 -960 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218464" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218466" + "id" "171668" side { - "id" "85094" - "plane" "(3976 964 600) (3024 964 600) (3024 972 600)" + "id" "60501" + "plane" "(420 -960 320) (420 -928 320) (428 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85093" - "plane" "(3976 972 600) (3976 964 592) (3976 964 600)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 223.745] 0.188" - "vaxis" "[0 0 -1 253.957] 0.188" + "id" "60500" + "plane" "(420 -928 240) (420 -928 320) (420 -960 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85092" - "plane" "(3976 964 592) (3976 972 600) (3024 972 600)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -36] 0.25" - "vaxis" "[-1 0 0 267] 0.25" - "rotation" "90" + "id" "60499" + "plane" "(428 -960 240) (428 -960 320) (428 -928 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" "85091" - "plane" "(3976 964 600) (3976 964 592) (3024 964 592)" + "id" "60498" + "plane" "(428 -928 240) (428 -928 320) (420 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -50959,65 +51765,75 @@ world } side { - "id" "85090" - "plane" "(3024 972 600) (3024 964 600) (3024 964 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60497" + "plane" "(420 -960 240) (420 -960 320) (428 -960 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "60496" + "plane" "(420 -928 240) (420 -960 240) (428 -960 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218464" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218468" + "id" "171669" side { - "id" "85100" - "plane" "(3232 944 608) (3232 964 608) (3296 964 608)" + "id" "60507" + "plane" "(348 -960 320) (348 -928 320) (356 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85099" - "plane" "(3296 944 160) (3296 964 160) (3232 964 160)" + "id" "60506" + "plane" "(348 -928 240) (348 -928 320) (348 -960 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85098" - "plane" "(3296 964 160) (3296 964 608) (3232 964 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60505" + "plane" "(356 -960 240) (356 -960 320) (356 -928 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85097" - "plane" "(3232 944 160) (3232 944 608) (3296 944 608)" + "id" "60504" + "plane" "(356 -928 240) (356 -928 320) (348 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51025,10 +51841,10 @@ world } side { - "id" "85096" - "plane" "(3232 964 160) (3232 964 608) (3232 944 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60503" + "plane" "(348 -960 240) (348 -960 320) (356 -960 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51036,76 +51852,75 @@ world } side { - "id" "85095" - "plane" "(3296 944 160) (3296 944 608) (3296 964 608)" + "id" "60502" + "plane" "(348 -928 240) (348 -960 240) (356 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218467" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218469" + "id" "171683" side { - "id" "85106" - "plane" "(3416 944 608) (3416 964 608) (3480 964 608)" + "id" "60519" + "plane" "(356 -960 320) (356 -928 320) (420 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85105" - "plane" "(3480 944 160) (3480 964 160) (3416 964 160)" + "id" "60518" + "plane" "(356 -928 312) (356 -928 320) (356 -960 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85104" - "plane" "(3480 964 160) (3480 964 608) (3416 964 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60517" + "plane" "(420 -960 312) (420 -960 320) (420 -928 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85103" - "plane" "(3416 944 160) (3416 944 608) (3480 944 608)" + "id" "60516" + "plane" "(420 -928 312) (420 -928 320) (356 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85102" - "plane" "(3416 964 160) (3416 964 608) (3416 944 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60515" + "plane" "(356 -960 312) (356 -960 320) (420 -960 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51113,197 +51928,194 @@ world } side { - "id" "85101" - "plane" "(3480 944 160) (3480 944 608) (3480 964 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60514" + "plane" "(356 -928 312) (356 -960 312) (420 -960 312)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218467" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218470" + "id" "171688" side { - "id" "85112" - "plane" "(3296 944 280) (3296 964 280) (3416 964 280)" + "id" "60531" + "plane" "(356 -956 312) (356 -932 312) (420 -932 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85111" - "plane" "(3416 944 160) (3416 964 160) (3296 964 160)" + "id" "60530" + "plane" "(356 -932 248) (356 -932 312) (356 -956 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85110" - "plane" "(3416 964 160) (3416 964 280) (3296 964 280)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60529" + "plane" "(420 -956 248) (420 -956 312) (420 -932 312)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85109" - "plane" "(3296 944 160) (3296 944 280) (3416 944 280)" + "id" "60528" + "plane" "(420 -932 248) (420 -932 312) (356 -932 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85108" - "plane" "(3296 964 160) (3296 964 280) (3296 944 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60527" + "plane" "(356 -956 248) (356 -956 312) (420 -956 312)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85107" - "plane" "(3416 944 160) (3416 944 280) (3416 964 280)" + "id" "60526" + "plane" "(356 -932 248) (356 -956 248) (420 -956 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218467" + "color" "0 115 144" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218471" + "id" "171697" side { - "id" "85118" - "plane" "(3296 944 488) (3296 964 488) (3356 964 488)" + "id" "60567" + "plane" "(-100 -956 312) (-100 -928 312) (-36 -928 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85117" - "plane" "(3296 964 488) (3296 964 472) (3324 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60566" + "plane" "(-100 -928 248) (-100 -928 312) (-100 -956 312)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85116" - "plane" "(3296 944 488) (3356 944 488) (3324 944 472)" + "id" "60565" + "plane" "(-36 -956 248) (-36 -956 312) (-36 -928 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85115" - "plane" "(3296 964 488) (3296 944 488) (3296 944 472)" + "id" "60564" + "plane" "(-36 -928 248) (-36 -928 312) (-100 -928 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85114" - "plane" "(3356 944 488) (3356 964 488) (3324 964 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60563" + "plane" "(-100 -956 248) (-100 -956 312) (-36 -956 312)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85113" - "plane" "(3324 944 472) (3324 964 472) (3296 964 472)" + "id" "60562" + "plane" "(-100 -928 248) (-100 -956 248) (-36 -956 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218467" + "color" "0 115 144" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218472" + "id" "171698" side { - "id" "85123" - "plane" "(3296 964 424) (3324 964 472) (3296 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60573" + "plane" "(-100 -960 248) (-100 -928 248) (-36 -928 248)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85122" - "plane" "(3296 944 424) (3296 944 472) (3324 944 472)" + "id" "60572" + "plane" "(-100 -928 240) (-100 -928 248) (-100 -960 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51311,10 +52123,10 @@ world } side { - "id" "85121" - "plane" "(3296 944 424) (3296 964 424) (3296 964 472)" + "id" "60571" + "plane" "(-36 -960 240) (-36 -960 248) (-36 -928 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51322,10 +52134,21 @@ world } side { - "id" "85120" - "plane" "(3296 964 424) (3296 944 424) (3324 944 472)" + "id" "60570" + "plane" "(-36 -928 240) (-36 -928 248) (-100 -928 248)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60569" + "plane" "(-100 -960 240) (-100 -960 248) (-36 -960 248)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51333,54 +52156,53 @@ world } side { - "id" "85119" - "plane" "(3296 944 472) (3296 964 472) (3324 964 472)" + "id" "60568" + "plane" "(-100 -928 240) (-100 -960 240) (-36 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218467" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218473" + "id" "171699" side { - "id" "85129" - "plane" "(3356 944 488) (3356 964 488) (3416 964 488)" + "id" "60579" + "plane" "(-108 -960 320) (-108 -928 320) (-100 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85128" - "plane" "(3416 964 488) (3356 964 488) (3388 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60578" + "plane" "(-108 -928 240) (-108 -928 320) (-108 -960 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" "85127" - "plane" "(3416 944 488) (3416 944 472) (3388 944 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "id" "60577" + "plane" "(-100 -960 240) (-100 -960 320) (-100 -928 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51388,10 +52210,10 @@ world } side { - "id" "85126" - "plane" "(3416 944 488) (3416 964 488) (3416 964 472)" + "id" "60576" + "plane" "(-100 -928 240) (-100 -928 320) (-108 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51399,10 +52221,10 @@ world } side { - "id" "85125" - "plane" "(3356 944 488) (3388 944 472) (3388 964 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60575" + "plane" "(-108 -960 240) (-108 -960 320) (-100 -960 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51410,65 +52232,75 @@ world } side { - "id" "85124" - "plane" "(3416 944 472) (3416 964 472) (3388 964 472)" + "id" "60574" + "plane" "(-108 -928 240) (-108 -960 240) (-100 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218467" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218474" + "id" "171700" side { - "id" "85134" - "plane" "(3416 964 424) (3416 964 472) (3388 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60585" + "plane" "(-100 -960 320) (-100 -928 320) (-36 -928 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85133" - "plane" "(3416 944 424) (3388 944 472) (3416 944 472)" + "id" "60584" + "plane" "(-100 -928 312) (-100 -928 320) (-100 -960 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85132" - "plane" "(3416 964 424) (3416 944 424) (3416 944 472)" + "id" "60583" + "plane" "(-36 -960 312) (-36 -960 320) (-36 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85131" - "plane" "(3416 944 424) (3416 964 424) (3388 964 472)" + "id" "60582" + "plane" "(-36 -928 312) (-36 -928 320) (-100 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60581" + "plane" "(-100 -960 312) (-100 -960 320) (-36 -960 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51476,142 +52308,140 @@ world } side { - "id" "85130" - "plane" "(3388 944 472) (3388 964 472) (3416 964 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "60580" + "plane" "(-100 -928 312) (-100 -960 312) (-36 -960 312)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218467" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218475" + "id" "171701" side { - "id" "85140" - "plane" "(3296 944 608) (3296 964 608) (3416 964 608)" + "id" "60591" + "plane" "(-36 -960 320) (-36 -928 320) (-28 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85139" - "plane" "(3416 944 488) (3416 964 488) (3296 964 488)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "60590" + "plane" "(-36 -928 240) (-36 -928 320) (-36 -960 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85138" - "plane" "(3416 964 488) (3416 964 608) (3296 964 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60589" + "plane" "(-28 -960 240) (-28 -960 320) (-28 -928 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" "85137" - "plane" "(3296 944 488) (3296 944 608) (3416 944 608)" + "id" "60588" + "plane" "(-28 -928 240) (-28 -928 320) (-36 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85136" - "plane" "(3296 964 488) (3296 964 608) (3296 944 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "60587" + "plane" "(-36 -960 240) (-36 -960 320) (-28 -960 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85135" - "plane" "(3416 944 488) (3416 944 608) (3416 964 608)" + "id" "60586" + "plane" "(-36 -928 240) (-36 -960 240) (-28 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218467" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218481" + "id" "171702" side { - "id" "85146" - "plane" "(3480 944 608) (3480 964 608) (3544 964 608)" + "id" "60603" + "plane" "(-28 -960 320) (-28 -928 320) (-8 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85145" - "plane" "(3544 944 160) (3544 964 160) (3480 964 160)" + "id" "60602" + "plane" "(-28 -928 240) (-28 -928 320) (-28 -960 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85144" - "plane" "(3544 964 160) (3544 964 608) (3480 964 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60601" + "plane" "(-8 -964 240) (-8 -964 320) (-8 -928 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" "85143" - "plane" "(3480 944 160) (3480 944 608) (3544 944 608)" + "id" "60600" + "plane" "(-8 -928 240) (-8 -928 320) (-28 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51619,10 +52449,10 @@ world } side { - "id" "85142" - "plane" "(3480 964 160) (3480 964 608) (3480 944 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60599" + "plane" "(-28 -960 240) (-28 -960 320) (-8 -964 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51630,65 +52460,64 @@ world } side { - "id" "85141" - "plane" "(3544 944 160) (3544 944 608) (3544 964 608)" + "id" "60598" + "plane" "(-28 -928 240) (-28 -960 240) (-8 -964 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218480" + "color" "0 239 136" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218482" + "id" "171710" side { - "id" "85152" - "plane" "(3664 944 608) (3664 964 608) (3728 964 608)" + "id" "60615" + "plane" "(328 -964 320) (328 -928 320) (348 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85151" - "plane" "(3728 944 160) (3728 964 160) (3664 964 160)" + "id" "60614" + "plane" "(348 -960 240) (348 -960 320) (348 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85150" - "plane" "(3728 964 160) (3728 964 608) (3664 964 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60613" + "plane" "(328 -928 240) (328 -928 320) (328 -964 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" "85149" - "plane" "(3664 944 160) (3664 944 608) (3728 944 608)" + "id" "60612" + "plane" "(348 -928 240) (348 -928 320) (328 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51696,10 +52525,10 @@ world } side { - "id" "85148" - "plane" "(3664 964 160) (3664 964 608) (3664 944 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60611" + "plane" "(328 -964 240) (328 -964 320) (348 -960 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51707,65 +52536,64 @@ world } side { - "id" "85147" - "plane" "(3728 944 160) (3728 944 608) (3728 964 608)" + "id" "60610" + "plane" "(328 -928 240) (328 -964 240) (348 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218480" + "color" "0 239 136" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218483" + "id" "171712" side { - "id" "85158" - "plane" "(3544 944 280) (3544 964 280) (3664 964 280)" + "id" "60627" + "plane" "(328 -964 336) (328 -928 336) (448 -928 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85157" - "plane" "(3664 944 160) (3664 964 160) (3544 964 160)" + "id" "60626" + "plane" "(328 -928 320) (328 -928 336) (328 -964 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85156" - "plane" "(3664 964 160) (3664 964 280) (3544 964 280)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60625" + "plane" "(448 -964 320) (448 -964 336) (448 -928 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85155" - "plane" "(3544 944 160) (3544 944 280) (3664 944 280)" + "id" "60624" + "plane" "(448 -928 320) (448 -928 336) (328 -928 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51773,76 +52601,75 @@ world } side { - "id" "85154" - "plane" "(3544 964 160) (3544 964 280) (3544 944 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60623" + "plane" "(328 -964 320) (328 -964 336) (448 -964 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85153" - "plane" "(3664 944 160) (3664 944 280) (3664 964 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60622" + "plane" "(328 -928 320) (328 -964 320) (448 -964 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 32] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218480" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218484" + "id" "171714" side { - "id" "85164" - "plane" "(3544 944 488) (3544 964 488) (3604 964 488)" + "id" "60639" + "plane" "(428 -960 216) (428 -928 216) (448 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85163" - "plane" "(3544 964 488) (3544 964 472) (3572 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60638" + "plane" "(428 -928 88) (428 -928 216) (428 -960 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85162" - "plane" "(3544 944 488) (3604 944 488) (3572 944 472)" + "id" "60637" + "plane" "(448 -960 88) (448 -960 216) (448 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85161" - "plane" "(3544 964 488) (3544 944 488) (3544 944 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60636" + "plane" "(448 -928 88) (448 -928 216) (428 -928 216)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51850,10 +52677,10 @@ world } side { - "id" "85160" - "plane" "(3604 944 488) (3604 964 488) (3572 964 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60635" + "plane" "(428 -960 88) (428 -960 216) (448 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51861,43 +52688,42 @@ world } side { - "id" "85159" - "plane" "(3572 944 472) (3572 964 472) (3544 964 472)" + "id" "60634" + "plane" "(428 -928 88) (428 -960 88) (448 -960 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218480" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218485" + "id" "171715" side { - "id" "85169" - "plane" "(3544 964 424) (3572 964 472) (3544 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60651" + "plane" "(428 -960 320) (428 -928 320) (448 -928 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85168" - "plane" "(3544 944 424) (3544 944 472) (3572 944 472)" + "id" "60650" + "plane" "(428 -928 240) (428 -928 320) (428 -960 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51905,10 +52731,10 @@ world } side { - "id" "85167" - "plane" "(3544 944 424) (3544 964 424) (3544 964 472)" + "id" "60649" + "plane" "(448 -960 240) (448 -960 320) (448 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51916,10 +52742,21 @@ world } side { - "id" "85166" - "plane" "(3544 964 424) (3544 944 424) (3572 944 472)" + "id" "60648" + "plane" "(448 -928 240) (448 -928 320) (428 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60647" + "plane" "(428 -960 240) (428 -960 320) (448 -960 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51927,54 +52764,53 @@ world } side { - "id" "85165" - "plane" "(3544 944 472) (3544 964 472) (3572 964 472)" + "id" "60646" + "plane" "(428 -928 240) (428 -960 240) (448 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218480" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218486" + "id" "171725" side { - "id" "85175" - "plane" "(3604 944 488) (3604 964 488) (3664 964 488)" + "id" "60663" + "plane" "(336 -960 368) (336 -928 368) (344 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85174" - "plane" "(3664 964 488) (3604 964 488) (3636 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60662" + "plane" "(336 -928 336) (336 -928 368) (336 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85173" - "plane" "(3664 944 488) (3664 944 472) (3636 944 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "60661" + "plane" "(344 -960 336) (344 -960 368) (344 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51982,10 +52818,10 @@ world } side { - "id" "85172" - "plane" "(3664 944 488) (3664 964 488) (3664 964 472)" + "id" "60660" + "plane" "(344 -928 336) (344 -928 368) (336 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -51993,10 +52829,10 @@ world } side { - "id" "85171" - "plane" "(3604 944 488) (3636 944 472) (3636 964 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60659" + "plane" "(336 -960 336) (336 -960 368) (344 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52004,43 +52840,42 @@ world } side { - "id" "85170" - "plane" "(3664 944 472) (3664 964 472) (3636 964 472)" + "id" "60658" + "plane" "(336 -928 336) (336 -960 336) (344 -960 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218480" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218487" + "id" "171727" side { - "id" "85180" - "plane" "(3664 964 424) (3664 964 472) (3636 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60675" + "plane" "(416 -960 368) (416 -928 368) (424 -928 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85179" - "plane" "(3664 944 424) (3636 944 472) (3664 944 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "60674" + "plane" "(416 -928 336) (416 -928 368) (416 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52048,10 +52883,10 @@ world } side { - "id" "85178" - "plane" "(3664 964 424) (3664 944 424) (3664 944 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60673" + "plane" "(424 -960 336) (424 -960 368) (424 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52059,10 +52894,21 @@ world } side { - "id" "85177" - "plane" "(3664 944 424) (3664 964 424) (3636 964 472)" + "id" "60672" + "plane" "(424 -928 336) (424 -928 368) (416 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60671" + "plane" "(416 -960 336) (416 -960 368) (424 -960 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52070,153 +52916,151 @@ world } side { - "id" "85176" - "plane" "(3636 944 472) (3636 964 472) (3664 964 472)" + "id" "60670" + "plane" "(416 -928 336) (416 -960 336) (424 -960 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218480" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218488" + "id" "171729" side { - "id" "85186" - "plane" "(3544 944 608) (3544 964 608) (3664 964 608)" + "id" "60687" + "plane" "(344 -956 368) (344 -928 368) (352 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85185" - "plane" "(3664 944 488) (3664 964 488) (3544 964 488)" + "id" "60686" + "plane" "(344 -928 336) (344 -928 368) (344 -956 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85184" - "plane" "(3664 964 488) (3664 964 608) (3544 964 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60685" + "plane" "(352 -956 336) (352 -956 368) (352 -928 368)" + "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" "85183" - "plane" "(3544 944 488) (3544 944 608) (3664 944 608)" + "id" "60684" + "plane" "(352 -928 336) (352 -928 368) (344 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85182" - "plane" "(3544 964 488) (3544 964 608) (3544 944 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "60683" + "plane" "(344 -956 336) (344 -956 368) (352 -956 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85181" - "plane" "(3664 944 488) (3664 944 608) (3664 964 608)" + "id" "60682" + "plane" "(344 -928 336) (344 -956 336) (352 -956 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218480" + "color" "0 253 174" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218494" + "id" "171738" side { - "id" "85192" - "plane" "(3728 944 608) (3728 964 608) (3792 964 608)" + "id" "60713" + "plane" "(312 -968 372) (312 -664 372) (468 -664 372)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85191" - "plane" "(3792 944 160) (3792 964 160) (3728 964 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "60712" + "plane" "(312 -664 368) (312 -664 372) (312 -968 372)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85190" - "plane" "(3792 964 160) (3792 964 608) (3728 964 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60711" + "plane" "(468 -968 368) (468 -968 372) (468 -664 372)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85189" - "plane" "(3728 944 160) (3728 944 608) (3792 944 608)" + "id" "60710" + "plane" "(468 -664 368) (468 -664 372) (312 -664 372)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85188" - "plane" "(3728 964 160) (3728 964 608) (3728 944 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60709" + "plane" "(312 -968 368) (312 -968 372) (468 -968 372)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52224,65 +53068,64 @@ world } side { - "id" "85187" - "plane" "(3792 944 160) (3792 944 608) (3792 964 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60708" + "plane" "(312 -664 368) (312 -968 368) (468 -968 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218493" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218495" + "id" "171749" side { - "id" "85198" - "plane" "(3912 944 608) (3912 964 608) (3976 964 608)" + "id" "60725" + "plane" "(432 -964 368) (432 -928 368) (448 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85197" - "plane" "(3976 944 160) (3976 964 160) (3912 964 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "60724" + "plane" "(432 -928 336) (432 -928 368) (432 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85196" - "plane" "(3976 964 160) (3976 964 608) (3912 964 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60723" + "plane" "(448 -964 336) (448 -964 368) (448 -928 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85195" - "plane" "(3912 944 160) (3912 944 608) (3976 944 608)" + "id" "60722" + "plane" "(448 -928 336) (448 -928 368) (432 -928 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 -48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52290,76 +53133,75 @@ world } side { - "id" "85194" - "plane" "(3912 964 160) (3912 964 608) (3912 944 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60721" + "plane" "(432 -964 336) (432 -964 368) (448 -964 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85193" - "plane" "(3976 944 160) (3976 944 608) (3976 964 608)" + "id" "60720" + "plane" "(432 -928 336) (432 -964 336) (448 -964 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218493" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218496" + "id" "171756" side { - "id" "85204" - "plane" "(3792 944 280) (3792 964 280) (3912 964 280)" + "id" "60773" + "plane" "(-128 -964 336) (-128 -928 336) (-8 -928 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85203" - "plane" "(3912 944 160) (3912 964 160) (3792 964 160)" + "id" "60772" + "plane" "(-8 -964 320) (-8 -964 336) (-8 -928 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85202" - "plane" "(3912 964 160) (3912 964 280) (3792 964 280)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60771" + "plane" "(-128 -928 320) (-128 -928 336) (-128 -964 336)" + "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" "85201" - "plane" "(3792 944 160) (3792 944 280) (3912 944 280)" + "id" "60770" + "plane" "(-8 -928 320) (-8 -928 336) (-128 -928 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52367,65 +53209,64 @@ world } side { - "id" "85200" - "plane" "(3792 964 160) (3792 964 280) (3792 944 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60769" + "plane" "(-128 -964 320) (-128 -964 336) (-8 -964 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85199" - "plane" "(3912 944 160) (3912 944 280) (3912 964 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60768" + "plane" "(-128 -928 320) (-128 -964 320) (-8 -964 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 1 0 32] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218493" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218497" + "id" "171761" side { - "id" "85210" - "plane" "(3792 944 488) (3792 964 488) (3852 964 488)" + "id" "60803" + "plane" "(-128 -960 320) (-128 -928 320) (-108 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85209" - "plane" "(3792 964 488) (3792 964 472) (3820 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60802" + "plane" "(-108 -960 240) (-108 -960 320) (-108 -928 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" "85208" - "plane" "(3792 944 488) (3852 944 488) (3820 944 472)" + "id" "60801" + "plane" "(-128 -928 240) (-128 -928 320) (-128 -960 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52433,10 +53274,10 @@ world } side { - "id" "85207" - "plane" "(3792 964 488) (3792 944 488) (3792 944 472)" + "id" "60800" + "plane" "(-108 -928 240) (-108 -928 320) (-128 -928 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[-1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52444,10 +53285,10 @@ world } side { - "id" "85206" - "plane" "(3852 944 488) (3852 964 488) (3820 964 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60799" + "plane" "(-128 -960 240) (-128 -960 320) (-108 -960 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52455,43 +53296,42 @@ world } side { - "id" "85205" - "plane" "(3820 944 472) (3820 964 472) (3792 964 472)" + "id" "60798" + "plane" "(-128 -928 240) (-128 -960 240) (-108 -960 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218493" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218498" + "id" "171778" side { - "id" "85215" - "plane" "(3792 964 424) (3820 964 472) (3792 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60821" + "plane" "(8 -968 416) (8 -96 416) (312 -96 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85214" - "plane" "(3792 944 424) (3792 944 472) (3820 944 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "60820" + "plane" "(8 -96 376) (8 -96 416) (8 -968 416)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52499,10 +53339,10 @@ world } side { - "id" "85213" - "plane" "(3792 944 424) (3792 964 424) (3792 964 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "60819" + "plane" "(312 -968 376) (312 -968 416) (312 -96 416)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52510,10 +53350,21 @@ world } side { - "id" "85212" - "plane" "(3792 964 424) (3792 944 424) (3820 944 472)" + "id" "60818" + "plane" "(312 -96 376) (312 -96 416) (8 -96 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60817" + "plane" "(8 -968 376) (8 -968 416) (312 -968 416)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52521,120 +53372,129 @@ world } side { - "id" "85211" - "plane" "(3792 944 472) (3792 964 472) (3820 964 472)" + "id" "60816" + "plane" "(8 -96 376) (8 -968 376) (312 -968 376)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218493" + "color" "0 173 186" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218499" + "id" "172270" + side + { + "id" "60835" + "plane" "(312 -96 424) (312 -96 416) (312 -965.534 416)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 64] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } side { - "id" "85221" - "plane" "(3852 944 488) (3852 964 488) (3912 964 488)" + "id" "60834" + "plane" "(8 -96 424) (8 -96 416) (312 -96 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85220" - "plane" "(3912 964 488) (3852 964 488) (3884 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60833" + "plane" "(312 -976 424) (312 -976 420) (8 -976 420)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85219" - "plane" "(3912 944 488) (3912 944 472) (3884 944 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60832" + "plane" "(8 -965.524 416) (312 -965.524 416) (312 -96 416)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 352] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85218" - "plane" "(3912 944 488) (3912 964 488) (3912 964 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60831" + "plane" "(8 -976 420) (312 -976 420) (312 -965.524 416)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85217" - "plane" "(3852 944 488) (3884 944 472) (3884 964 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60830" + "plane" "(8 -976 424) (8 -976 420) (8 -965.524 416)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85216" - "plane" "(3912 944 472) (3912 964 472) (3884 964 472)" + "id" "60829" + "plane" "(8 -96 424) (312 -96 424) (312 -976 424)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218493" + "color" "0 221 114" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218500" + "id" "172306" side { - "id" "85226" - "plane" "(3912 964 424) (3912 964 472) (3884 964 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60858" + "plane" "(8 -928 424) (312 -928 424) (160 -928 512)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85225" - "plane" "(3912 944 424) (3884 944 472) (3912 944 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "id" "60857" + "plane" "(160 -968 512) (312 -968 424) (8 -968 424)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52642,87 +53502,86 @@ world } side { - "id" "85224" - "plane" "(3912 964 424) (3912 944 424) (3912 944 472)" + "id" "60856" + "plane" "(8 -968 424) (312 -968 424) (312 -928 424)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85223" - "plane" "(3912 944 424) (3912 964 424) (3884 964 472)" + "id" "60855" + "plane" "(8 -928 424) (160 -928 512) (160 -968 512)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85222" - "plane" "(3884 944 472) (3884 964 472) (3912 964 472)" + "id" "60854" + "plane" "(160 -968 512) (160 -928 512) (312 -928 424)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218493" + "color" "0 173 186" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218501" + "id" "172307" side { - "id" "85232" - "plane" "(3792 944 608) (3792 964 608) (3912 964 608)" + "id" "60870" + "plane" "(160 -976 520) (160 -96 520) (312 -96 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85231" - "plane" "(3912 944 488) (3912 964 488) (3792 964 488)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "60869" + "plane" "(160 -96 512) (160 -96 520) (160 -976 520)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 80] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85230" - "plane" "(3912 964 488) (3912 964 608) (3792 964 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -607.172] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "60868" + "plane" "(312 -976 424) (312 -976 432) (312 -96 432)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 80] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85229" - "plane" "(3792 944 488) (3792 944 608) (3912 944 608)" + "id" "60867" + "plane" "(312 -96 424) (312 -96 432) (160 -96 520)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52730,153 +53589,151 @@ world } side { - "id" "85228" - "plane" "(3792 964 488) (3792 964 608) (3792 944 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "60866" + "plane" "(160 -976 512) (160 -976 520) (312 -976 432)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 80] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85227" - "plane" "(3912 944 488) (3912 944 608) (3912 964 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "60865" + "plane" "(160 -96 512) (160 -976 512) (312 -976 424)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218493" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218507" + "id" "172311" side { - "id" "85238" - "plane" "(3208 964 208) (3208 988 208) (3256 988 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[1 0 0 -87.1072] 0.188" + "id" "60882" + "plane" "(8 -976 432) (8 -96 432) (160 -96 520)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85237" - "plane" "(3256 964 160) (3256 988 160) (3208 988 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "60881" + "plane" "(160 -976 512) (160 -976 520) (160 -96 520)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 80] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85236" - "plane" "(3256 988 160) (3256 988 208) (3208 988 208)" + "id" "60880" + "plane" "(8 -96 424) (8 -96 432) (8 -976 432)" "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 18.1072] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 80] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85235" - "plane" "(3208 964 160) (3208 964 208) (3256 964 208)" + "id" "60879" + "plane" "(160 -96 512) (160 -96 520) (8 -96 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85234" - "plane" "(3208 988 160) (3208 988 208) (3208 964 208)" + "id" "60878" + "plane" "(8 -976 424) (8 -976 432) (160 -976 520)" "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "uaxis" "[-1 0 0 352] 0.25" + "vaxis" "[0 0 -1 80] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85233" - "plane" "(3256 964 160) (3256 964 208) (3256 988 208)" + "id" "60877" + "plane" "(8 -96 424) (8 -976 424) (160 -976 512)" "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "uaxis" "[-1 0 0 352] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218506" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218508" + "id" "172319" side { - "id" "85244" - "plane" "(3212 964 416) (3212 984 416) (3252 984 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" + "id" "60900" + "plane" "(160 -984 528) (160 -96.0001 528) (312 -96.0001 440)" + "material" "WOOD/MILROOF001" + "uaxis" "[0 1 0 -145] 0.25" + "vaxis" "[1 0 0 -293] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85243" - "plane" "(3252 964 208) (3252 984 208) (3212 984 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "60899" + "plane" "(160 -96.0001 520) (160 -96.0001 528) (160 -984 528)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85242" - "plane" "(3252 984 208) (3252 984 416) (3212 984 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 48.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "60898" + "plane" "(312 -984 432) (312 -984 440) (312 -96.0001 440)" + "material" "WOOD/MILROOF001" + "uaxis" "[0 1 0 -145] 0.25" + "vaxis" "[0 0 -1 155] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85241" - "plane" "(3212 964 208) (3212 964 416) (3252 964 416)" + "id" "60897" + "plane" "(312 -96.0001 432) (312 -96.0001 440) (160 -96.0001 528)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52884,65 +53741,75 @@ world } side { - "id" "85240" - "plane" "(3212 984 208) (3212 984 416) (3212 964 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -116.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "60896" + "plane" "(160 -984 520) (160 -984 528) (312 -984 440)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85239" - "plane" "(3252 964 208) (3252 964 416) (3252 984 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -116.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "60895" + "plane" "(160 -96.0001 520) (160 -984 520) (312 -984 432)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218506" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218509" + "id" "172320" + side + { + "id" "60906" + "plane" "(8 -984 440) (8 -96.0001 440) (160 -96.0001 528)" + "material" "WOOD/MILROOF001" + "uaxis" "[0 1 0 -145] 0.25" + "vaxis" "[-1 0 0 -293] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } side { - "id" "85249" - "plane" "(3252 984 284) (3212 984 284) (3210 986 284)" + "id" "60905" + "plane" "(160 -984 520) (160 -984 528) (160 -96.0001 528)" "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 18.1072] 0.188" - "vaxis" "[0 1 0 163.618] 0.188" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85248" - "plane" "(3252 984 284) (3254 986 284) (3252 984 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60904" + "plane" "(8 -96.0001 432) (8 -96.0001 440) (8 -984 440)" + "material" "WOOD/MILROOF001" + "uaxis" "[0 1 0 -145] 0.25" + "vaxis" "[0 0 -1 411] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85247" - "plane" "(3212 984 284) (3212 984 276) (3210 986 284)" + "id" "60903" + "plane" "(160 -96.0001 520) (160 -96.0001 528) (8 -96.0001 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -52950,131 +53817,140 @@ world } side { - "id" "85246" - "plane" "(3212 984 284) (3252 984 284) (3252 984 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "60902" + "plane" "(8 -984 432) (8 -984 440) (160 -984 528)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 352] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85245" - "plane" "(3254 986 284) (3210 986 284) (3212 984 276)" + "id" "60901" + "plane" "(8 -96.0001 432) (8 -984 432) (160 -984 520)" "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 18.1072] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "uaxis" "[-1 0 0 352] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218506" + "color" "0 133 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218510" + "id" "172324" side { - "id" "85255" - "plane" "(3252 964 416) (3252 984 416) (3212 984 416)" + "id" "60918" + "plane" "(-128 -960 216) (-128 -928 216) (-108 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85254" - "plane" "(3252 984 416) (3252 968 432) (3212 968 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 48.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "60917" + "plane" "(-128 -928 88) (-128 -928 216) (-128 -960 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85253" - "plane" "(3212 964 416) (3212 964 432) (3252 964 432)" + "id" "60916" + "plane" "(-108 -960 88) (-108 -960 216) (-108 -928 216)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85252" - "plane" "(3212 984 416) (3212 968 432) (3212 964 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -116.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "60915" + "plane" "(-108 -928 88) (-108 -928 216) (-128 -928 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85251" - "plane" "(3252 984 416) (3252 964 416) (3252 964 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -116.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "60914" + "plane" "(-128 -960 88) (-128 -960 216) (-108 -960 216)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85250" - "plane" "(3212 964 432) (3212 968 432) (3252 968 432)" + "id" "60913" + "plane" "(-128 -928 88) (-128 -960 88) (-108 -960 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218506" + "color" "0 143 120" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218511" + "id" "167932" side { - "id" "85260" - "plane" "(3252 964 284) (3252 984 284) (3254 986 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[1 0 0 -87.1072] 0.188" + "id" "58272" + "plane" "(1536 -2768 64) (1472 -2768 64) (1472 -2752 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85259" - "plane" "(3252 984 284) (3252 984 276) (3254 986 284)" + "id" "58271" + "plane" "(1472 -2768 -128) (1536 -2768 -128) (1536 -2752 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58270" + "plane" "(1536 -2768 -128) (1472 -2768 -128) (1472 -2768 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53082,10 +53958,10 @@ world } side { - "id" "85258" - "plane" "(3252 964 284) (3254 964 284) (3252 964 276)" + "id" "58269" + "plane" "(1472 -2752 -128) (1536 -2752 -128) (1536 -2752 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[-1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53093,10 +53969,10 @@ world } side { - "id" "85257" - "plane" "(3252 984 284) (3252 964 284) (3252 964 276)" + "id" "58268" + "plane" "(1472 -2768 -128) (1472 -2752 -128) (1472 -2752 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53104,43 +53980,54 @@ world } side { - "id" "85256" - "plane" "(3254 986 284) (3252 984 276) (3252 964 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58267" + "plane" "(1536 -2752 -128) (1536 -2768 -128) (1536 -2768 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" "163 140 0" - "groupid" "218506" + "color" "0 149 238" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218512" + "id" "167945" side { - "id" "85265" - "plane" "(3212 984 284) (3212 964 284) (3210 964 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[-1 0 0 -76.8928] 0.188" + "id" "58524" + "plane" "(2122.3 -3970.53 288) (2274.3 -4233.81 288) (1886.32 -4457.81 288)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85264" - "plane" "(3212 984 284) (3210 986 284) (3212 984 276)" + "id" "58523" + "plane" "(2274.3 -4233.81 128) (2122.3 -3970.53 128) (1734.32 -4194.53 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58522" + "plane" "(2122.3 -3970.53 128) (2274.3 -4233.81 128) (2274.3 -4233.81 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53148,10 +54035,10 @@ world } side { - "id" "85263" - "plane" "(3212 964 284) (3212 964 276) (3210 964 284)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "id" "58521" + "plane" "(1886.32 -4457.81 128) (1734.32 -4194.53 128) (1734.32 -4194.53 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53159,10 +54046,10 @@ world } side { - "id" "85262" - "plane" "(3212 964 284) (3212 984 284) (3212 984 276)" + "id" "58520" + "plane" "(2274.3 -4233.81 128) (1886.32 -4457.81 128) (1886.32 -4457.81 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53170,65 +54057,55 @@ world } side { - "id" "85261" - "plane" "(3210 986 284) (3210 964 284) (3212 964 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58519" + "plane" "(1734.32 -4194.53 128) (2122.3 -3970.53 128) (2122.3 -3970.53 288)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218506" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218514" - side - { - "id" "85271" - "plane" "(3456 964 208) (3456 988 208) (3504 988 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[1 0 0 129.742] 0.188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "167946" side { - "id" "85270" - "plane" "(3504 964 160) (3504 988 160) (3456 988 160)" + "id" "58529" + "plane" "(1889.46 -4271.24 320) (2111.16 -4143.24 320) (2035.16 -4011.61 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85269" - "plane" "(3504 988 160) (3504 988 208) (3456 988 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 313.258] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58528" + "plane" "(2111.16 -4143.24 320) (1889.46 -4271.24 320) (2000.31 -4207.24 416)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85268" - "plane" "(3456 964 160) (3456 964 208) (3504 964 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "58527" + "plane" "(1813.46 -4139.61 320) (2035.16 -4011.61 320) (1924.31 -4075.61 416)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53236,76 +54113,77 @@ world } side { - "id" "85267" - "plane" "(3456 988 160) (3456 988 208) (3456 964 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58526" + "plane" "(1924.31 -4075.61 416) (2035.16 -4011.61 320) (2111.16 -4143.24 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85266" - "plane" "(3504 964 160) (3504 964 208) (3504 988 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58525" + "plane" "(2000.31 -4207.24 416) (1889.46 -4271.24 320) (1813.46 -4139.61 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218513" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218515" + "id" "167947" side { - "id" "85277" - "plane" "(3460 964 416) (3460 984 416) (3500 984 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "58535" + "plane" "(2058.87 -3988.68 320) (2218.87 -4265.81 320) (1941.74 -4425.81 320)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85276" - "plane" "(3500 964 208) (3500 984 208) (3460 984 208)" + "id" "58534" + "plane" "(2218.87 -4265.81 288) (2058.87 -3988.68 288) (1781.74 -4148.68 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85275" - "plane" "(3500 984 208) (3500 984 416) (3460 984 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 264.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58533" + "plane" "(2058.87 -3988.68 288) (2218.87 -4265.81 288) (2218.87 -4265.81 320)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85274" - "plane" "(3460 964 208) (3460 964 416) (3500 964 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "58532" + "plane" "(1941.74 -4425.81 288) (1781.74 -4148.68 288) (1781.74 -4148.68 320)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53313,65 +54191,55 @@ world } side { - "id" "85273" - "plane" "(3460 984 208) (3460 984 416) (3460 964 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -116.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58531" + "plane" "(2218.87 -4265.81 288) (1941.74 -4425.81 288) (1941.74 -4425.81 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85272" - "plane" "(3500 964 208) (3500 964 416) (3500 984 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -116.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58530" + "plane" "(1781.74 -4148.68 288) (2058.87 -3988.68 288) (2058.87 -3988.68 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218513" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218516" - side - { - "id" "85282" - "plane" "(3500 984 284) (3460 984 284) (3458 986 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 313.258] 0.188" - "vaxis" "[0 1 0 163.618] 0.188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "167948" side { - "id" "85281" - "plane" "(3500 984 284) (3502 986 284) (3500 984 276)" + "id" "58545" + "plane" "(2244.44 -4214.09 288) (2116.44 -3992.39 288) (1756.17 -4200.39 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85280" - "plane" "(3460 984 284) (3460 984 276) (3458 986 284)" + "id" "58544" + "plane" "(2148.44 -4047.82 384) (2132.44 -4020.1 352) (2116.44 -3992.39 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53379,10 +54247,10 @@ world } side { - "id" "85279" - "plane" "(3460 984 284) (3500 984 284) (3500 984 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "id" "58543" + "plane" "(1884.17 -4422.09 288) (1756.17 -4200.39 288) (1772.17 -4228.1 352)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53390,120 +54258,121 @@ world } side { - "id" "85278" - "plane" "(3502 986 284) (3458 986 284) (3460 984 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 313.258] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58542" + "plane" "(1772.17 -4228.1 352) (1756.17 -4200.39 288) (2116.44 -3992.39 288)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[-0.866025 -0.5 0 169.786] 0.25" + "vaxis" "[0 0 -1 96] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "163 140 0" - "groupid" "218513" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "218517" side { - "id" "85288" - "plane" "(3500 964 416) (3500 984 416) (3460 984 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "58541" + "plane" "(1788.17 -4255.82 384) (1772.17 -4228.1 352) (2132.44 -4020.1 352)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[-0.866025 -0.5 0 169.786] 0.25" + "vaxis" "[0 0 -1 96] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85287" - "plane" "(3500 984 416) (3500 968 432) (3460 968 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 264.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58540" + "plane" "(2148.44 -4047.82 384) (2164.44 -4075.53 400) (1804.17 -4283.53 400)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[-0.866025 -0.5 0 169.786] 0.25" + "vaxis" "[-0.5 0.866025 0 110.929] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85286" - "plane" "(3460 964 416) (3460 964 432) (3500 964 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "58539" + "plane" "(2228.44 -4186.38 352) (2244.44 -4214.09 288) (1884.17 -4422.09 288)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[-0.866025 -0.5 0 169.786] 0.25" + "vaxis" "[0 0 -1 96] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85285" - "plane" "(3460 984 416) (3460 968 432) (3460 964 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -116.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58538" + "plane" "(2212.44 -4158.67 384) (2228.44 -4186.38 352) (1868.17 -4394.38 352)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[-0.866025 -0.5 0 169.786] 0.25" + "vaxis" "[0 0 -1 96] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85284" - "plane" "(3500 984 416) (3500 964 416) (3500 964 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -116.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58537" + "plane" "(2196.44 -4130.95 400) (2212.44 -4158.67 384) (1852.17 -4366.67 384)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[-0.866025 -0.5 0 169.786] 0.25" + "vaxis" "[-0.5 0.866025 0 110.929] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85283" - "plane" "(3460 964 432) (3460 968 432) (3500 968 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "58536" + "plane" "(2164.44 -4075.53 400) (2196.44 -4130.95 400) (1836.17 -4338.95 400)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[-0.866025 -0.5 0 169.786] 0.25" + "vaxis" "[-0.5 0.866025 0 110.929] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218513" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218518" + "id" "167949" side { - "id" "85293" - "plane" "(3500 964 284) (3500 984 284) (3502 986 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[1 0 0 129.742] 0.188" + "id" "58551" + "plane" "(2114.3 -3956.68 256) (2122.3 -3970.53 256) (1983.73 -4050.53 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85292" - "plane" "(3500 984 284) (3500 984 276) (3502 986 284)" + "id" "58550" + "plane" "(2122.3 -3970.53 128) (2114.3 -3956.68 128) (1975.73 -4036.68 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58549" + "plane" "(2114.3 -3956.68 128) (2122.3 -3970.53 128) (2122.3 -3970.53 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53511,10 +54380,10 @@ world } side { - "id" "85291" - "plane" "(3500 964 284) (3502 964 284) (3500 964 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "id" "58548" + "plane" "(1983.73 -4050.53 128) (1975.73 -4036.68 128) (1975.73 -4036.68 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53522,10 +54391,10 @@ world } side { - "id" "85290" - "plane" "(3500 984 284) (3500 964 284) (3500 964 276)" + "id" "58547" + "plane" "(2122.3 -3970.53 128) (1983.73 -4050.53 128) (1983.73 -4050.53 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53533,43 +54402,55 @@ world } side { - "id" "85289" - "plane" "(3502 986 284) (3500 984 276) (3500 964 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58546" + "plane" "(1975.73 -4036.68 128) (2114.3 -3956.68 128) (2114.3 -3956.68 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218513" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218519" + "id" "167950" side { - "id" "85298" - "plane" "(3460 984 284) (3460 964 284) (3458 964 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[-1 0 0 218.258] 0.188" + "id" "58557" + "plane" "(1892.6 -4084.68 256) (1900.6 -4098.53 256) (1872.88 -4114.53 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85297" - "plane" "(3460 984 284) (3458 986 284) (3460 984 276)" + "id" "58556" + "plane" "(1900.6 -4098.53 128) (1892.6 -4084.68 128) (1864.88 -4100.68 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58555" + "plane" "(1892.6 -4084.68 128) (1900.6 -4098.53 128) (1900.6 -4098.53 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53577,10 +54458,10 @@ world } side { - "id" "85296" - "plane" "(3460 964 284) (3460 964 276) (3458 964 284)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "58554" + "plane" "(1872.88 -4114.53 128) (1864.88 -4100.68 128) (1864.88 -4100.68 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53588,10 +54469,10 @@ world } side { - "id" "85295" - "plane" "(3460 964 284) (3460 984 284) (3460 984 276)" + "id" "58553" + "plane" "(1900.6 -4098.53 128) (1872.88 -4114.53 128) (1872.88 -4114.53 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53599,65 +54480,66 @@ world } side { - "id" "85294" - "plane" "(3458 986 284) (3458 964 284) (3460 964 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58552" + "plane" "(1864.88 -4100.68 128) (1892.6 -4084.68 128) (1892.6 -4084.68 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218513" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218521" + "id" "167951" side { - "id" "85304" - "plane" "(3704 964 208) (3704 988 208) (3752 988 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[1 0 0 -165.406] 0.188" + "id" "58563" + "plane" "(1942.16 -4074.53 256) (1900.6 -4098.53 256) (1892.6 -4084.68 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85303" - "plane" "(3752 964 160) (3752 988 160) (3704 988 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "58562" + "plane" "(1934.16 -4060.68 232) (1892.6 -4084.68 224) (1900.6 -4098.53 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85302" - "plane" "(3752 988 160) (3752 988 208) (3704 988 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 96.4061] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58561" + "plane" "(1900.6 -4098.53 224) (1892.6 -4084.68 224) (1892.6 -4084.68 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85301" - "plane" "(3704 964 160) (3704 964 208) (3752 964 208)" + "id" "58560" + "plane" "(1900.6 -4098.53 256) (1942.16 -4074.53 256) (1942.16 -4074.53 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53665,76 +54547,77 @@ world } side { - "id" "85300" - "plane" "(3704 988 160) (3704 988 208) (3704 964 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58559" + "plane" "(1892.6 -4084.68 224) (1934.16 -4060.68 232) (1934.16 -4060.68 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85299" - "plane" "(3752 964 160) (3752 964 208) (3752 988 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58558" + "plane" "(1934.16 -4060.68 232) (1942.16 -4074.53 232) (1942.16 -4074.53 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218520" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218522" + "id" "167952" side { - "id" "85310" - "plane" "(3708 964 416) (3708 984 416) (3748 984 416)" + "id" "58569" + "plane" "(1975.73 -4036.68 256) (1983.73 -4050.53 256) (1942.16 -4074.53 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85309" - "plane" "(3748 964 208) (3748 984 208) (3708 984 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "58568" + "plane" "(1983.73 -4050.53 224) (1975.73 -4036.68 224) (1934.16 -4060.68 232)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85308" - "plane" "(3748 984 208) (3748 984 416) (3708 984 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -31.9983] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58567" + "plane" "(1975.73 -4036.68 224) (1983.73 -4050.53 224) (1983.73 -4050.53 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85307" - "plane" "(3708 964 208) (3708 964 416) (3748 964 416)" + "id" "58566" + "plane" "(1983.73 -4050.53 224) (1942.16 -4074.53 232) (1942.16 -4074.53 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53742,54 +54625,66 @@ world } side { - "id" "85306" - "plane" "(3708 984 208) (3708 984 416) (3708 964 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -116.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58565" + "plane" "(1975.73 -4036.68 256) (1934.16 -4060.68 256) (1934.16 -4060.68 232)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85305" - "plane" "(3748 964 208) (3748 964 416) (3748 984 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -116.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58564" + "plane" "(1942.16 -4074.53 232) (1934.16 -4060.68 232) (1934.16 -4060.68 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218520" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218523" + "id" "167953" side { - "id" "85315" - "plane" "(3748 984 284) (3708 984 284) (3706 986 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 96.4061] 0.188" - "vaxis" "[0 1 0 163.618] 0.188" + "id" "58575" + "plane" "(2114.3 -3956.68 288) (2122.3 -3970.53 288) (1734.32 -4194.53 288)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85314" - "plane" "(3748 984 284) (3750 986 284) (3748 984 276)" + "id" "58574" + "plane" "(2122.3 -3970.53 256) (2114.3 -3956.68 256) (1726.32 -4180.68 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58573" + "plane" "(2114.3 -3956.68 256) (2122.3 -3970.53 256) (2122.3 -3970.53 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53797,10 +54692,10 @@ world } side { - "id" "85313" - "plane" "(3708 984 284) (3708 984 276) (3706 986 284)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "58572" + "plane" "(1734.32 -4194.53 256) (1726.32 -4180.68 256) (1726.32 -4180.68 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53808,10 +54703,10 @@ world } side { - "id" "85312" - "plane" "(3708 984 284) (3748 984 284) (3748 984 276)" + "id" "58571" + "plane" "(2122.3 -3970.53 256) (1734.32 -4194.53 256) (1734.32 -4194.53 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53819,120 +54714,132 @@ world } side { - "id" "85311" - "plane" "(3750 986 284) (3706 986 284) (3708 984 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 96.4061] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58570" + "plane" "(1726.32 -4180.68 256) (2114.3 -3956.68 256) (2114.3 -3956.68 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218520" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218524" + "id" "167954" side { - "id" "85321" - "plane" "(3748 964 416) (3748 984 416) (3708 984 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "58581" + "plane" "(1862.88 -4097.21 168) (1864.88 -4100.68 168) (1809.46 -4132.68 168)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85320" - "plane" "(3748 984 416) (3748 968 432) (3708 968 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -31.9983] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58580" + "plane" "(1864.88 -4100.68 160) (1862.88 -4097.21 160) (1807.46 -4129.21 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85319" - "plane" "(3708 964 416) (3708 964 432) (3748 964 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "58579" + "plane" "(1862.88 -4097.21 160) (1864.88 -4100.68 160) (1864.88 -4100.68 168)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85318" - "plane" "(3708 984 416) (3708 968 432) (3708 964 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -116.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58578" + "plane" "(1809.46 -4132.68 160) (1807.46 -4129.21 160) (1807.46 -4129.21 168)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85317" - "plane" "(3748 984 416) (3748 964 416) (3748 964 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -116.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58577" + "plane" "(1864.88 -4100.68 160) (1809.46 -4132.68 160) (1809.46 -4132.68 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85316" - "plane" "(3708 964 432) (3708 968 432) (3748 968 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "58576" + "plane" "(1807.46 -4129.21 160) (1862.88 -4097.21 160) (1862.88 -4097.21 168)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218520" + "color" "156 245 0" + "groupid" "167944" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218525" + "id" "167955" side { - "id" "85326" - "plane" "(3748 964 284) (3748 984 284) (3750 986 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[1 0 0 -165.406] 0.188" + "id" "58587" + "plane" "(1809.46 -4132.68 256) (1817.46 -4146.53 256) (1734.32 -4194.53 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85325" - "plane" "(3748 984 284) (3748 984 276) (3750 986 284)" + "id" "58586" + "plane" "(1817.46 -4146.53 128) (1809.46 -4132.68 128) (1726.32 -4180.68 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58585" + "plane" "(1809.46 -4132.68 128) (1817.46 -4146.53 128) (1817.46 -4146.53 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53940,10 +54847,10 @@ world } side { - "id" "85324" - "plane" "(3748 964 284) (3750 964 284) (3748 964 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "id" "58584" + "plane" "(1734.32 -4194.53 128) (1726.32 -4180.68 128) (1726.32 -4180.68 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53951,10 +54858,10 @@ world } side { - "id" "85323" - "plane" "(3748 984 284) (3748 964 284) (3748 964 276)" + "id" "58583" + "plane" "(1817.46 -4146.53 128) (1734.32 -4194.53 128) (1734.32 -4194.53 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -53962,43 +54869,55 @@ world } side { - "id" "85322" - "plane" "(3750 986 284) (3748 984 276) (3748 964 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58582" + "plane" "(1726.32 -4180.68 128) (1809.46 -4132.68 128) (1809.46 -4132.68 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218520" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218526" + "id" "167956" side { - "id" "85331" - "plane" "(3708 984 284) (3708 964 284) (3706 964 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[-1 0 0 1.40607] 0.188" + "id" "58593" + "plane" "(1864.88 -4100.68 168) (1872.88 -4114.53 168) (1817.46 -4146.53 168)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85330" - "plane" "(3708 984 284) (3706 986 284) (3708 984 276)" + "id" "58592" + "plane" "(1872.88 -4114.53 128) (1864.88 -4100.68 128) (1809.46 -4132.68 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58591" + "plane" "(1864.88 -4100.68 128) (1872.88 -4114.53 128) (1872.88 -4114.53 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54006,10 +54925,10 @@ world } side { - "id" "85329" - "plane" "(3708 964 284) (3708 964 276) (3706 964 284)" + "id" "58590" + "plane" "(1817.46 -4146.53 128) (1809.46 -4132.68 128) (1809.46 -4132.68 168)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54017,10 +54936,10 @@ world } side { - "id" "85328" - "plane" "(3708 964 284) (3708 984 284) (3708 984 276)" + "id" "58589" + "plane" "(1872.88 -4114.53 128) (1817.46 -4146.53 128) (1817.46 -4146.53 168)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54028,87 +54947,88 @@ world } side { - "id" "85327" - "plane" "(3706 986 284) (3706 964 284) (3708 964 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58588" + "plane" "(1809.46 -4132.68 128) (1864.88 -4100.68 128) (1864.88 -4100.68 168)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218520" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218529" + "id" "167957" side { - "id" "85337" - "plane" "(4000 940 208) (3976 940 208) (3976 964 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -83.34] 0.188" - "vaxis" "[0 1 0 200.724] 0.188" + "id" "58599" + "plane" "(1845.17 -4130.53 256) (1817.46 -4146.53 256) (1809.46 -4132.68 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85336" - "plane" "(3976 940 160) (4000 940 160) (4000 988 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "id" "58598" + "plane" "(1837.17 -4116.68 232) (1809.46 -4132.68 224) (1817.46 -4146.53 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85335" - "plane" "(4000 940 160) (4000 940 208) (4000 988 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -269.724] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58597" + "plane" "(1817.46 -4146.53 224) (1809.46 -4132.68 224) (1809.46 -4132.68 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85334" - "plane" "(3976 964 160) (3976 964 208) (3976 940 208)" + "id" "58596" + "plane" "(1817.46 -4146.53 256) (1845.17 -4130.53 256) (1845.17 -4130.53 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85333" - "plane" "(3976 940 160) (3976 940 208) (4000 940 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -83.34] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58595" + "plane" "(1809.46 -4132.68 224) (1837.17 -4116.68 232) (1837.17 -4116.68 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85332" - "plane" "(4000 988 160) (4000 988 208) (3976 964 208)" + "id" "58594" + "plane" "(1837.17 -4116.68 232) (1845.17 -4130.53 232) (1845.17 -4130.53 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54116,76 +55036,77 @@ world } editor { - "color" "163 140 0" - "groupid" "218528" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218530" + "id" "167958" side { - "id" "85343" - "plane" "(3996 944 416) (3976 944 416) (3976 964 416)" + "id" "58605" + "plane" "(1864.88 -4100.68 256) (1872.88 -4114.53 256) (1845.17 -4130.53 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85342" - "plane" "(3976 944 208) (3996 944 208) (3996 984 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "id" "58604" + "plane" "(1872.88 -4114.53 224) (1864.88 -4100.68 224) (1837.17 -4116.68 232)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85341" - "plane" "(3996 944 208) (3996 944 416) (3996 984 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -28.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58603" + "plane" "(1864.88 -4100.68 224) (1872.88 -4114.53 224) (1872.88 -4114.53 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85340" - "plane" "(3976 964 208) (3976 964 416) (3976 944 416)" + "id" "58602" + "plane" "(1872.88 -4114.53 224) (1845.17 -4130.53 232) (1845.17 -4130.53 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85339" - "plane" "(3976 944 208) (3976 944 416) (3996 944 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 96.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58601" + "plane" "(1864.88 -4100.68 256) (1837.17 -4116.68 256) (1837.17 -4116.68 232)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85338" - "plane" "(3996 984 208) (3996 984 416) (3976 964 416)" + "id" "58600" + "plane" "(1845.17 -4130.53 232) (1837.17 -4116.68 232) (1837.17 -4116.68 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54193,32 +55114,33 @@ world } editor { - "color" "163 140 0" - "groupid" "218528" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218531" + "id" "167959" side { - "id" "85348" - "plane" "(3996 944 284) (3996 984 284) (3998 986 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -269.724] 0.188" - "vaxis" "[1 0 0 14.34] 0.188" + "id" "58611" + "plane" "(1938.16 -4067.61 320) (2035.16 -4011.61 320) (2031.16 -4004.68 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 46.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85347" - "plane" "(3996 984 284) (3996 984 276) (3998 986 284)" + "id" "58610" + "plane" "(2035.16 -4011.61 320) (1938.16 -4067.61 320) (1938.16 -4067.61 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54226,10 +55148,10 @@ world } side { - "id" "85346" - "plane" "(3996 944 284) (3998 942 284) (3996 944 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "id" "58609" + "plane" "(1934.16 -4060.68 320) (2031.16 -4004.68 320) (1994.21 -4026.01 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54237,10 +55159,21 @@ world } side { - "id" "85345" - "plane" "(3996 984 284) (3996 944 284) (3996 944 276)" + "id" "58608" + "plane" "(1994.21 -4026.01 352) (2031.16 -4004.68 320) (2035.16 -4011.61 320)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58607" + "plane" "(1938.16 -4067.61 352) (1938.16 -4067.61 320) (1934.16 -4060.68 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54248,120 +55181,122 @@ world } side { - "id" "85344" - "plane" "(3998 986 284) (3996 984 276) (3996 944 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -269.724] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58606" + "plane" "(1934.16 -4060.68 352) (1994.2 -4026.01 352) (1998.2 -4032.94 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218528" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218532" + "id" "167960" side { - "id" "85354" - "plane" "(3976 944 416) (3996 944 416) (3996 984 416)" + "id" "58617" + "plane" "(1910.45 -4083.61 320) (1938.16 -4067.61 320) (1934.16 -4060.68 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 46.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85353" - "plane" "(3996 944 416) (3980 944 432) (3980 968 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -28.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58616" + "plane" "(1938.16 -4067.61 352) (1938.16 -4067.61 320) (1910.45 -4083.61 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85352" - "plane" "(3976 964 416) (3976 964 432) (3976 944 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "58615" + "plane" "(1906.45 -4076.68 352) (1906.45 -4076.68 320) (1934.16 -4060.68 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85351" - "plane" "(3996 944 416) (3976 944 416) (3976 944 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 96.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58614" + "plane" "(1934.16 -4060.68 352) (1934.16 -4060.68 320) (1938.16 -4067.61 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85350" - "plane" "(3980 944 432) (3976 944 432) (3976 964 432)" + "id" "58613" + "plane" "(1910.45 -4083.61 352) (1910.45 -4083.61 320) (1906.45 -4076.68 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85349" - "plane" "(3996 984 416) (3980 968 432) (3976 964 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "58612" + "plane" "(1906.45 -4076.68 352) (1934.16 -4060.68 352) (1938.16 -4067.61 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218528" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218533" + "id" "167961" side { - "id" "85359" - "plane" "(3998 942 284) (3976 942 284) (3976 944 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -83.34] 0.188" - "vaxis" "[0 -1 0 -364.725] 0.188" + "id" "58623" + "plane" "(1813.46 -4139.61 320) (1910.45 -4083.61 320) (1906.45 -4076.68 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 46.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85358" - "plane" "(3996 944 284) (3996 944 276) (3998 942 284)" + "id" "58622" + "plane" "(1910.45 -4083.61 320) (1813.46 -4139.61 320) (1850.41 -4118.27 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54369,10 +55304,10 @@ world } side { - "id" "85357" - "plane" "(3976 944 284) (3976 942 284) (3976 944 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "id" "58621" + "plane" "(1809.46 -4132.68 320) (1906.45 -4076.68 320) (1906.45 -4076.68 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54380,10 +55315,21 @@ world } side { - "id" "85356" - "plane" "(3996 944 284) (3976 944 284) (3976 944 276)" + "id" "58620" + "plane" "(1850.41 -4118.27 352) (1813.46 -4139.61 320) (1809.46 -4132.68 320)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58619" + "plane" "(1906.45 -4076.68 352) (1906.45 -4076.68 320) (1910.45 -4083.61 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54391,65 +55337,66 @@ world } side { - "id" "85355" - "plane" "(3998 942 284) (3996 944 276) (3976 944 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -83.34] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58618" + "plane" "(1846.42 -4111.34 352) (1906.45 -4076.68 352) (1910.45 -4083.61 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218528" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218535" + "id" "167962" side { - "id" "85365" - "plane" "(3952 964 208) (3952 988 208) (4000 988 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[1 0 0 51.4455] 0.188" + "id" "58628" + "plane" "(1938.16 -4067.61 392) (1938.16 -4067.61 404) (1952.02 -4059.61 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85364" - "plane" "(3976 964 160) (4000 988 160) (3952 988 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "58627" + "plane" "(1948.02 -4052.68 392) (1934.16 -4060.68 404) (1934.16 -4060.68 392)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85363" - "plane" "(4000 988 160) (4000 988 208) (3952 988 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -120.445] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58626" + "plane" "(1934.16 -4060.68 404) (1948.02 -4052.68 392) (1952.02 -4059.61 392)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85362" - "plane" "(3952 964 160) (3952 964 208) (3976 964 208)" + "id" "58625" + "plane" "(1938.16 -4067.61 404) (1938.16 -4067.61 392) (1934.16 -4060.68 392)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54457,76 +55404,66 @@ world } side { - "id" "85361" - "plane" "(3952 988 160) (3952 988 208) (3952 964 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "85360" - "plane" "(3976 964 160) (3976 964 208) (4000 988 208)" + "id" "58624" + "plane" "(1938.16 -4067.61 392) (1952.02 -4059.61 392) (1948.02 -4052.68 392)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218534" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218536" + "id" "167963" side { - "id" "85371" - "plane" "(3956 964 416) (3956 984 416) (3996 984 416)" + "id" "58634" + "plane" "(1938.16 -4067.61 352) (1938.16 -4067.61 392) (1952.02 -4059.61 392)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85370" - "plane" "(3976 964 208) (3996 984 208) (3956 984 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "58633" + "plane" "(1994.2 -4026.01 352) (1948.02 -4052.68 392) (1934.16 -4060.68 392)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85369" - "plane" "(3996 984 208) (3996 984 416) (3956 984 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 184.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58632" + "plane" "(1948.02 -4052.68 392) (1994.21 -4026.01 352) (1998.21 -4032.94 352)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85368" - "plane" "(3956 964 208) (3956 964 416) (3976 964 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "58631" + "plane" "(1938.16 -4067.61 392) (1938.16 -4067.61 352) (1934.16 -4060.68 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54534,54 +55471,55 @@ world } side { - "id" "85367" - "plane" "(3956 984 208) (3956 984 416) (3956 964 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -116.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58630" + "plane" "(1938.16 -4067.61 352) (1998.21 -4032.94 352) (1994.2 -4026.01 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85366" - "plane" "(3976 964 208) (3976 964 416) (3996 984 416)" + "id" "58629" + "plane" "(1934.16 -4060.68 392) (1948.02 -4052.68 392) (1952.02 -4059.61 392)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218534" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218537" + "id" "167964" side { - "id" "85376" - "plane" "(3996 984 284) (3956 984 284) (3954 986 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -120.445] 0.188" - "vaxis" "[0 1 0 163.618] 0.188" + "id" "58641" + "plane" "(1910.45 -4083.61 392) (1910.45 -4083.61 404) (1924.31 -4075.61 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85375" - "plane" "(3996 984 284) (3998 986 284) (3996 984 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "58640" + "plane" "(1934.16 -4060.68 392) (1934.16 -4060.68 404) (1920.31 -4068.68 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54589,10 +55527,32 @@ world } side { - "id" "85374" - "plane" "(3956 984 284) (3956 984 276) (3954 986 284)" + "id" "58639" + "plane" "(1920.31 -4068.68 416) (1934.16 -4060.68 404) (1938.16 -4067.61 404)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58638" + "plane" "(1906.45 -4076.68 404) (1920.31 -4068.68 416) (1924.31 -4075.61 416)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58637" + "plane" "(1934.16 -4060.68 404) (1934.16 -4060.68 392) (1938.16 -4067.61 392)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54600,10 +55560,10 @@ world } side { - "id" "85373" - "plane" "(3956 984 284) (3996 984 284) (3996 984 276)" + "id" "58636" + "plane" "(1910.45 -4083.61 404) (1910.45 -4083.61 392) (1906.45 -4076.68 392)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54611,120 +55571,111 @@ world } side { - "id" "85372" - "plane" "(3998 986 284) (3954 986 284) (3956 984 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -120.445] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58635" + "plane" "(1910.45 -4083.61 392) (1938.16 -4067.61 392) (1934.16 -4060.68 392)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218534" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218538" + "id" "167965" side { - "id" "85382" - "plane" "(3976 964 416) (3996 984 416) (3956 984 416)" + "id" "58646" + "plane" "(1896.6 -4091.61 392) (1910.45 -4083.61 404) (1910.45 -4083.61 392)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "85381" - "plane" "(3996 984 416) (3980 968 432) (3956 968 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 184.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85380" - "plane" "(3956 964 416) (3956 964 432) (3976 964 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "58645" + "plane" "(1906.45 -4076.68 392) (1906.45 -4076.68 404) (1892.6 -4084.68 392)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85379" - "plane" "(3956 984 416) (3956 968 432) (3956 964 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -116.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58644" + "plane" "(1892.6 -4084.68 392) (1906.45 -4076.68 404) (1910.45 -4083.61 404)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85378" - "plane" "(3956 964 432) (3956 968 432) (3980 968 432)" + "id" "58643" + "plane" "(1906.45 -4076.68 404) (1906.45 -4076.68 392) (1910.45 -4083.61 392)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85377" - "plane" "(3976 964 416) (3976 964 432) (3980 968 432)" + "id" "58642" + "plane" "(1896.6 -4091.61 392) (1910.45 -4083.61 392) (1906.45 -4076.68 392)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218534" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218539" + "id" "167966" side { - "id" "85387" - "plane" "(3956 984 284) (3956 964 284) (3954 964 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[-1 0 0 296.555] 0.188" + "id" "58652" + "plane" "(1850.41 -4118.27 352) (1896.6 -4091.61 392) (1910.45 -4083.61 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85386" - "plane" "(3956 984 284) (3954 986 284) (3956 984 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "58651" + "plane" "(1906.45 -4076.68 352) (1906.45 -4076.68 392) (1892.6 -4084.68 392)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54732,10 +55683,21 @@ world } side { - "id" "85385" - "plane" "(3956 964 284) (3956 964 276) (3954 964 284)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "58650" + "plane" "(1846.41 -4111.34 352) (1892.6 -4084.68 392) (1896.6 -4091.61 392)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58649" + "plane" "(1906.45 -4076.68 392) (1906.45 -4076.68 352) (1910.45 -4083.61 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54743,54 +55705,66 @@ world } side { - "id" "85384" - "plane" "(3956 964 284) (3956 984 284) (3956 984 276)" + "id" "58648" + "plane" "(1850.41 -4118.27 352) (1910.45 -4083.61 352) (1906.45 -4076.68 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85383" - "plane" "(3954 986 284) (3954 964 284) (3956 964 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -232.618] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58647" + "plane" "(1892.6 -4084.68 392) (1906.45 -4076.68 392) (1910.45 -4083.61 392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218534" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218540" + "id" "167967" side { - "id" "85392" - "plane" "(2870 492 1008) (2870 602 1008) (2760 602 1008)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "58658" + "plane" "(1906.45 -4076.68 348) (1934.16 -4060.68 348) (1932.16 -4057.21 348)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85391" - "plane" "(2870 602 1008) (2870 602 1600) (2760 602 1008)" + "id" "58657" + "plane" "(1934.16 -4060.68 352) (1934.16 -4060.68 348) (1906.45 -4076.68 348)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58656" + "plane" "(1904.45 -4073.21 352) (1904.45 -4073.21 348) (1932.16 -4057.21 348)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54798,21 +55772,21 @@ world } side { - "id" "85390" - "plane" "(2760 492 1008) (2870 602 1600) (2870 492 1008)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[1 0 0 -215.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "58655" + "plane" "(1932.16 -4057.21 352) (1932.16 -4057.21 348) (1934.16 -4060.68 348)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85389" - "plane" "(2870 602 1008) (2870 492 1008) (2870 602 1600)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "58654" + "plane" "(1906.45 -4076.68 352) (1906.45 -4076.68 348) (1904.45 -4073.21 348)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54820,43 +55794,55 @@ world } side { - "id" "85388" - "plane" "(2760 602 1008) (2870 602 1600) (2760 492 1008)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 -1 0 -335.873] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "58653" + "plane" "(1904.45 -4073.21 352) (1932.16 -4057.21 352) (1934.16 -4060.68 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218541" + "id" "167968" side { - "id" "85397" - "plane" "(2870 602 1008) (2870 712 1008) (2760 712 1008)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "58664" + "plane" "(1790.32 -4291.53 304) (1822.32 -4346.95 304) (1818.85 -4348.95 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58663" + "plane" "(1822.32 -4346.95 296) (1790.32 -4291.53 296) (1786.85 -4293.53 296)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85396" - "plane" "(2760 602 1008) (2870 602 1600) (2870 602 1008)" + "id" "58662" + "plane" "(1790.32 -4291.53 296) (1822.32 -4346.95 296) (1822.32 -4346.95 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54864,21 +55850,21 @@ world } side { - "id" "85395" - "plane" "(2870 712 1008) (2870 602 1600) (2760 712 1008)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[1 0 0 -215.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "58661" + "plane" "(1818.85 -4348.95 296) (1786.85 -4293.53 296) (1786.85 -4293.53 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85394" - "plane" "(2870 602 1008) (2870 602 1600) (2870 712 1008)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "58660" + "plane" "(1822.32 -4346.95 296) (1818.85 -4348.95 296) (1818.85 -4348.95 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -54886,208 +55872,244 @@ world } side { - "id" "85393" - "plane" "(2760 602 1008) (2760 712 1008) (2870 602 1600)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_VDARK" - "uaxis" "[0 1 0 427.873] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "58659" + "plane" "(1786.85 -4293.53 296) (1790.32 -4291.53 296) (1790.32 -4291.53 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "156 245 0" + "groupid" "167944" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218542" + "id" "167972" side { - "id" "85402" - "plane" "(2812 566 1400) (2812 638 1400) (2832.84 638 1400)" + "id" "58670" + "plane" "(1820.17 -4311.24 288) (1740.17 -4172.68 288) (1726.32 -4180.68 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85401" - "plane" "(2812 638 1400) (2812 566 1400) (2812 566 1287.85)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 258.128] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58669" + "plane" "(1744.17 -4179.61 304) (1740.17 -4172.68 288) (1820.17 -4311.24 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85400" - "plane" "(2812 638 1400) (2812 638 1287.85) (2832.84 638 1400)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -233.193] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58668" + "plane" "(1806.32 -4319.24 288) (1726.32 -4180.68 288) (1730.32 -4187.61 304)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85399" - "plane" "(2812 566 1400) (2832.84 566 1400) (2812 566 1287.85)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -233.193] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58667" + "plane" "(1730.32 -4187.61 304) (1726.32 -4180.68 288) (1740.17 -4172.68 288)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85398" - "plane" "(2812 566 1287.85) (2832.84 566 1400) (2832.84 638 1400)" + "id" "58666" + "plane" "(1820.17 -4311.24 304) (1820.17 -4311.24 288) (1806.32 -4319.24 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "58665" + "plane" "(1744.17 -4179.61 304) (1820.17 -4311.24 304) (1806.32 -4319.24 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "156 245 0" + "groupid" "167971" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218543" + "id" "167973" side { - "id" "85407" - "plane" "(2812 566 1400) (2832.84 566 1400) (2832.84 638 1400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" + "id" "58676" + "plane" "(1756.17 -4200.39 352) (1744.17 -4179.61 304) (1808.17 -4290.46 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85406" - "plane" "(2812 638 1400) (2812 602 1424) (2812 566 1400)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 258.128] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58675" + "plane" "(1730.32 -4187.61 304) (1742.32 -4208.39 352) (1794.32 -4298.46 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85405" - "plane" "(2812 566 1400) (2812 602 1424) (2837.3 602 1424)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -233.193] 0.188" - "vaxis" "[0 -1 0 -350.128] 0.188" + "id" "58674" + "plane" "(1742.32 -4208.39 352) (1730.32 -4187.61 304) (1744.17 -4179.61 304)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85404" - "plane" "(2812 602 1424) (2812 638 1400) (2832.84 638 1400)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -233.193] 0.188" - "vaxis" "[0 -1 0 -350.128] 0.188" + "id" "58673" + "plane" "(1808.17 -4290.46 352) (1808.17 -4290.46 304) (1794.32 -4298.46 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85403" - "plane" "(2832.84 566 1400) (2837.3 602 1424) (2832.84 638 1400)" + "id" "58672" + "plane" "(1756.17 -4200.39 352) (1808.17 -4290.46 352) (1794.32 -4298.46 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58671" + "plane" "(1808.17 -4290.46 304) (1744.17 -4179.61 304) (1730.32 -4187.61 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "156 245 0" + "groupid" "167971" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218544" + "id" "167974" side { - "id" "85412" - "plane" "(2906 544 1400) (2834 544 1400) (2834 564.838 1400)" + "id" "58682" + "plane" "(1780.17 -4241.96 432) (1780.17 -4241.96 416) (1766.32 -4249.96 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 56] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85411" - "plane" "(2834 544 1400) (2906 544 1400) (2906 544 1287.85)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 225.193] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58681" + "plane" "(1764.17 -4214.25 400) (1764.17 -4214.25 384) (1780.17 -4241.96 416)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85410" - "plane" "(2834 544 1400) (2834 544 1287.86) (2834 564.838 1400)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 258.128] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58680" + "plane" "(1766.32 -4249.96 432) (1766.32 -4249.96 416) (1750.32 -4222.25 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85409" - "plane" "(2906 544 1400) (2906 564.84 1400) (2906 544 1287.85)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 258.128] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58679" + "plane" "(1750.32 -4222.25 400) (1750.32 -4222.25 384) (1764.17 -4214.25 384)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58678" + "plane" "(1764.17 -4214.25 400) (1780.17 -4241.96 432) (1766.32 -4249.96 432)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85408" - "plane" "(2906 544 1287.85) (2906 564.84 1400) (2834 564.838 1400)" + "id" "58677" + "plane" "(1750.32 -4222.25 384) (1766.32 -4249.96 416) (1780.17 -4241.96 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -56] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -55095,450 +56117,534 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "156 245 0" + "groupid" "167971" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218545" + "id" "167975" side { - "id" "85417" - "plane" "(2834 544 1400) (2906 544 1400) (2906 564.838 1400)" + "id" "58688" + "plane" "(1820.17 -4311.24 432) (1820.17 -4311.24 416) (1806.32 -4319.24 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 56] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85416" - "plane" "(2834 544 1400) (2870 544 1424) (2906 544 1400)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 225.193] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58687" + "plane" "(1780.17 -4241.96 432) (1780.17 -4241.96 416) (1820.17 -4311.24 416)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85415" - "plane" "(2906 544 1400) (2870 544 1424) (2870 569.299 1424)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 258.128] 0.188" - "vaxis" "[1 0 0 -317.193] 0.188" + "id" "58686" + "plane" "(1806.32 -4319.24 432) (1806.32 -4319.24 416) (1766.32 -4249.96 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85414" - "plane" "(2870 544 1424) (2834 544 1400) (2834 564.836 1400)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 258.128] 0.188" - "vaxis" "[1 0 0 -317.193] 0.188" + "id" "58685" + "plane" "(1766.32 -4249.96 432) (1766.32 -4249.96 416) (1780.17 -4241.96 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58684" + "plane" "(1780.17 -4241.96 432) (1820.17 -4311.24 432) (1806.32 -4319.24 432)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85413" - "plane" "(2906 564.838 1400) (2870 569.299 1424) (2834 564.836 1400)" + "id" "58683" + "plane" "(1806.32 -4319.24 416) (1820.17 -4311.24 416) (1780.17 -4241.96 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "156 245 0" + "groupid" "167971" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218546" + "id" "167976" side { - "id" "85422" - "plane" "(2928 566 1400) (2907.16 566 1400) (2907.16 638 1400)" + "id" "58695" + "plane" "(1780.17 -4241.96 416) (1820.17 -4311.24 416) (1806.32 -4319.24 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 1 0 40] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85421" - "plane" "(2928 566 1400) (2928 638 1400) (2928 638 1287.84)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -266.128] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58694" + "plane" "(1820.17 -4311.24 352) (1820.17 -4311.24 416) (1780.17 -4241.96 416)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85420" - "plane" "(2928 566 1400) (2928 566 1287.84) (2907.16 566 1400)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 225.193] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58693" + "plane" "(1742.32 -4208.39 352) (1750.32 -4222.25 384) (1766.32 -4249.96 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85419" - "plane" "(2928 638 1400) (2907.16 638 1400) (2928 638 1287.84)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 225.193] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58692" + "plane" "(1756.17 -4200.39 352) (1764.17 -4214.25 384) (1750.32 -4222.25 384)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58691" + "plane" "(1764.17 -4214.25 384) (1780.17 -4241.96 416) (1766.32 -4249.96 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85418" - "plane" "(2928 638 1287.84) (2907.16 638 1400) (2907.16 566 1400)" + "id" "58690" + "plane" "(1806.32 -4319.24 352) (1806.32 -4319.24 416) (1820.17 -4311.24 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "58689" + "plane" "(1820.17 -4311.24 352) (1756.17 -4200.39 352) (1742.32 -4208.39 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "156 245 0" + "groupid" "167971" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218547" + "id" "167978" side { - "id" "85427" - "plane" "(2928 566 1400) (2928 638 1400) (2907.16 638 1400)" + "id" "58701" + "plane" "(1900.17 -4449.81 288) (1820.17 -4311.24 288) (1806.32 -4319.24 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 1 0 40] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85426" - "plane" "(2928 566 1400) (2928 602 1424) (2928 638 1400)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -266.128] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58700" + "plane" "(1820.17 -4311.24 288) (1900.17 -4449.81 288) (1896.17 -4442.88 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85425" - "plane" "(2928 638 1400) (2928 602 1424) (2902.7 602 1424)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 225.193] 0.188" - "vaxis" "[0 1 0 174.128] 0.188" + "id" "58699" + "plane" "(1882.32 -4450.88 304) (1886.32 -4457.81 288) (1806.32 -4319.24 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85424" - "plane" "(2928 566 1400) (2907.16 566 1400) (2902.7 602 1424)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 225.193] 0.188" - "vaxis" "[0 1 0 174.128] 0.188" + "id" "58698" + "plane" "(1896.17 -4442.88 304) (1900.17 -4449.81 288) (1886.32 -4457.81 288)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85423" - "plane" "(2907.16 638 1400) (2902.7 602 1424) (2907.16 566 1400)" + "id" "58697" + "plane" "(1806.32 -4319.24 304) (1806.32 -4319.24 288) (1820.17 -4311.24 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "58696" + "plane" "(1820.17 -4311.24 304) (1896.17 -4442.88 304) (1882.32 -4450.88 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "156 245 0" + "groupid" "167977" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218548" + "id" "167979" side { - "id" "85432" - "plane" "(2834 660 1400) (2906 660 1400) (2906 639.162 1400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 -24] 0.25" + "id" "58707" + "plane" "(1896.17 -4442.88 304) (1884.17 -4422.09 352) (1832.17 -4332.03 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85431" - "plane" "(2906 660 1400) (2834 660 1400) (2834 660 1287.85)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -233.193] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58706" + "plane" "(1870.32 -4430.09 352) (1882.32 -4450.88 304) (1818.32 -4340.03 304)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85430" - "plane" "(2906 660 1400) (2906 660 1287.85) (2906 639.162 1400)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -266.128] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58705" + "plane" "(1884.17 -4422.09 352) (1896.17 -4442.88 304) (1882.32 -4450.88 304)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85429" - "plane" "(2834 660 1400) (2834 639.164 1400) (2834 660 1287.85)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -266.128] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58704" + "plane" "(1818.32 -4340.03 352) (1818.32 -4340.03 304) (1832.17 -4332.03 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58703" + "plane" "(1832.17 -4332.03 352) (1884.17 -4422.09 352) (1870.32 -4430.09 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85428" - "plane" "(2834 660 1287.85) (2834 639.164 1400) (2906 639.162 1400)" + "id" "58702" + "plane" "(1896.17 -4442.88 304) (1832.17 -4332.03 304) (1818.32 -4340.03 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "156 245 0" + "groupid" "167977" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218549" + "id" "167980" side { - "id" "85437" - "plane" "(2906 660 1400) (2834 660 1400) (2834 639.162 1400)" + "id" "58713" + "plane" "(1846.32 -4388.52 432) (1846.32 -4388.52 416) (1860.17 -4380.52 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 -24] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85436" - "plane" "(2906 660 1400) (2870 660 1424) (2834 660 1400)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -233.193] 0.188" - "vaxis" "[0 0 -1 248.341] 0.188" + "id" "58712" + "plane" "(1860.17 -4380.52 432) (1860.17 -4380.52 416) (1876.17 -4408.24 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85435" - "plane" "(2834 660 1400) (2870 660 1424) (2870 634.703 1424)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -266.128] 0.188" - "vaxis" "[-1 0 0 141.193] 0.188" + "id" "58711" + "plane" "(1862.32 -4416.24 400) (1862.32 -4416.24 384) (1846.32 -4388.52 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85434" - "plane" "(2906 639.16 1400) (2870 634.703 1424) (2870 660 1424)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -266.128] 0.188" - "vaxis" "[-1 0 0 141.193] 0.188" + "id" "58710" + "plane" "(1876.17 -4408.24 400) (1876.17 -4408.24 384) (1862.32 -4416.24 384)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85433" - "plane" "(2834 639.162 1400) (2870 634.703 1424) (2906 639.16 1400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -56] 0.25" + "id" "58709" + "plane" "(1862.32 -4416.24 400) (1846.32 -4388.52 432) (1860.17 -4380.52 432)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor + side + { + "id" "58708" + "plane" "(1876.17 -4408.24 384) (1860.17 -4380.52 416) (1846.32 -4388.52 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor { - "color" "163 140 0" - "groupid" "219643" + "color" "156 245 0" + "groupid" "167977" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218550" + "id" "167981" side { - "id" "85442" - "plane" "(2760 220 632) (2780 220 632) (2760 200 612)" + "id" "58719" + "plane" "(1806.32 -4319.24 432) (1806.32 -4319.24 416) (1820.17 -4311.24 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85441" - "plane" "(2760 200 424) (2780 220 424) (2760 220 424)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "58718" + "plane" "(1820.17 -4311.24 432) (1820.17 -4311.24 416) (1860.17 -4380.52 416)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85440" - "plane" "(2760 200 612) (2760 200 424) (2760 220 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "58717" + "plane" "(1846.32 -4388.52 432) (1846.32 -4388.52 416) (1806.32 -4319.24 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85439" - "plane" "(2780 220 424) (2780 220 632) (2760 220 632)" + "id" "58716" + "plane" "(1860.17 -4380.52 432) (1860.17 -4380.52 416) (1846.32 -4388.52 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58715" + "plane" "(1806.32 -4319.24 432) (1820.17 -4311.24 432) (1860.17 -4380.52 432)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85438" - "plane" "(2760 200 424) (2760 200 612) (2780 220 632)" + "id" "58714" + "plane" "(1860.17 -4380.52 416) (1820.17 -4311.24 416) (1806.32 -4319.24 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "156 245 0" + "groupid" "167977" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218552" + "id" "167982" side { - "id" "85447" - "plane" "(3976 232 600) (3976 240 600) (3024 240 600)" + "id" "58726" + "plane" "(1820.17 -4311.24 416) (1860.17 -4380.52 416) (1846.32 -4388.52 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85446" - "plane" "(3976 232 600) (3976 240 608) (3976 240 600)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -28.0011] 0.188" - "vaxis" "[0 0 -1 253.957] 0.188" + "id" "58725" + "plane" "(1884.17 -4422.09 352) (1876.17 -4408.24 384) (1860.17 -4380.52 416)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85445" - "plane" "(3976 232 600) (3024 232 600) (3024 240 608)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0.707107 0.707107 10.7481] 0.25" - "vaxis" "[-1 0 0 267] 0.25" + "id" "58724" + "plane" "(1806.32 -4319.24 352) (1806.32 -4319.24 416) (1846.32 -4388.52 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85444" - "plane" "(3976 240 600) (3976 240 608) (3024 240 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "id" "58723" + "plane" "(1870.32 -4430.09 352) (1862.32 -4416.24 384) (1876.17 -4408.24 384)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -55546,780 +56652,808 @@ world } side { - "id" "85443" - "plane" "(3024 232 600) (3024 240 600) (3024 240 608)" + "id" "58722" + "plane" "(1862.32 -4416.24 384) (1846.32 -4388.52 416) (1860.17 -4380.52 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "163 140 0" - "groupid" "218551" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "218553" side { - "id" "85452" - "plane" "(3976 232 600) (3024 232 600) (3024 240 600)" + "id" "58721" + "plane" "(1820.17 -4311.24 352) (1820.17 -4311.24 416) (1806.32 -4319.24 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85451" - "plane" "(3976 232 600) (3976 240 600) (3976 240 592)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -28.0011] 0.188" - "vaxis" "[0 0 -1 253.957] 0.188" + "id" "58720" + "plane" "(1884.17 -4422.09 352) (1820.17 -4311.24 352) (1806.32 -4319.24 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - side + editor { - "id" "85450" - "plane" "(3976 232 600) (3976 240 592) (3024 240 592)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -36] 0.25" - "vaxis" "[-1 0 0 267] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "156 245 0" + "groupid" "167977" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + solid + { + "id" "167986" side { - "id" "85449" - "plane" "(3976 240 592) (3976 240 600) (3024 240 600)" + "id" "58733" + "plane" "(2154.3 -4025.96 416) (2194.3 -4095.24 416) (2180.44 -4103.24 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85448" - "plane" "(3024 232 600) (3024 240 592) (3024 240 600)" + "id" "58732" + "plane" "(2194.3 -4095.24 288) (2114.3 -3956.68 288) (2100.44 -3964.68 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "163 140 0" - "groupid" "218551" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "218555" side { - "id" "85457" - "plane" "(2984 240 616) (3004 240 636) (3004 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -93.6154] 0.188" - "vaxis" "[0 -1 0 -8.85166] 0.188" + "id" "58731" + "plane" "(2114.3 -3956.68 288) (2194.3 -4095.24 288) (2194.3 -4095.24 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85456" - "plane" "(2984 240 612) (3004 220 632) (3004 240 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "58730" + "plane" "(2180.44 -4103.24 288) (2100.44 -3964.68 288) (2124.44 -4006.25 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85455" - "plane" "(2984 240 616) (2984 240 612) (3004 240 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "58729" + "plane" "(2100.44 -3964.68 288) (2114.3 -3956.68 288) (2138.3 -3998.25 384)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85454" - "plane" "(2984 240 612) (2984 240 616) (3004 220 636)" + "id" "58728" + "plane" "(2138.3 -3998.25 384) (2154.3 -4025.96 416) (2140.44 -4033.96 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85453" - "plane" "(3004 220 632) (3004 220 636) (3004 240 636)" + "id" "58727" + "plane" "(2194.3 -4095.24 288) (2180.44 -4103.24 288) (2180.44 -4103.24 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218554" + "color" "156 245 0" + "groupid" "167985" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218556" + "id" "167987" side { - "id" "85462" - "plane" "(3024 240 616) (3004 220 636) (3004 240 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 125.615] 0.188" - "vaxis" "[0 -1 0 -8.85166] 0.188" + "id" "58739" + "plane" "(2154.3 -4025.96 432) (2154.3 -4025.96 416) (2140.44 -4033.96 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85461" - "plane" "(3024 240 612) (3004 240 632) (3004 220 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "58738" + "plane" "(2138.3 -3998.25 400) (2138.3 -3998.25 384) (2154.3 -4025.96 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85460" - "plane" "(3024 240 612) (3024 240 616) (3004 240 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "58737" + "plane" "(2140.44 -4033.96 432) (2140.44 -4033.96 416) (2124.44 -4006.25 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85459" - "plane" "(3004 220 632) (3004 220 636) (3024 240 616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "58736" + "plane" "(2124.44 -4006.25 400) (2124.44 -4006.25 384) (2138.3 -3998.25 384)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58735" + "plane" "(2138.3 -3998.25 400) (2154.3 -4025.96 432) (2140.44 -4033.96 432)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85458" - "plane" "(3004 240 632) (3004 240 636) (3004 220 636)" + "id" "58734" + "plane" "(2124.44 -4006.25 384) (2140.44 -4033.96 416) (2154.3 -4025.96 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218554" + "color" "156 245 0" + "groupid" "167985" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218557" + "id" "167988" side { - "id" "85468" - "plane" "(3004 240 632) (3004 242 632) (3004 242 636)" + "id" "58745" + "plane" "(2194.3 -4095.24 432) (2194.3 -4095.24 416) (2180.44 -4103.24 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85467" - "plane" "(3024 242 612) (3024 240 612) (3024 240 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 88.8517] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58744" + "plane" "(2154.3 -4025.96 432) (2154.3 -4025.96 416) (2194.3 -4095.24 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85466" - "plane" "(3004 242 632) (3024 242 612) (3024 242 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 125.615] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58743" + "plane" "(2180.44 -4103.24 432) (2180.44 -4103.24 416) (2140.44 -4033.96 416)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85465" - "plane" "(3024 240 612) (3004 240 632) (3004 240 636)" + "id" "58742" + "plane" "(2140.44 -4033.96 432) (2140.44 -4033.96 416) (2154.3 -4025.96 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85464" - "plane" "(3024 242 612) (3004 242 632) (3004 240 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 88.8517] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58741" + "plane" "(2154.3 -4025.96 432) (2194.3 -4095.24 432) (2180.44 -4103.24 432)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85463" - "plane" "(3024 240 616) (3004 240 636) (3004 242 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 88.8517] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58740" + "plane" "(2180.44 -4103.24 416) (2194.3 -4095.24 416) (2154.3 -4025.96 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218554" + "color" "156 245 0" + "groupid" "167985" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218558" + "id" "167990" side { - "id" "85474" - "plane" "(3004 242 632) (3004 240 632) (3004 240 636)" + "id" "58752" + "plane" "(2194.3 -4095.24 416) (2234.3 -4164.52 416) (2220.44 -4172.52 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85473" - "plane" "(2984 240 612) (2984 242 612) (2984 242 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 88.8517] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58751" + "plane" "(2274.3 -4233.81 288) (2194.3 -4095.24 288) (2180.44 -4103.24 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85472" - "plane" "(2984 242 612) (3004 242 632) (3004 242 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -93.6154] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58750" + "plane" "(2194.3 -4095.24 288) (2274.3 -4233.81 288) (2250.3 -4192.24 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85471" - "plane" "(3004 240 632) (2984 240 612) (2984 240 616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "58749" + "plane" "(2260.44 -4241.81 288) (2180.44 -4103.24 288) (2180.44 -4103.24 416)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85470" - "plane" "(2984 240 612) (3004 240 632) (3004 242 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 88.8517] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58748" + "plane" "(2274.3 -4233.81 288) (2260.44 -4241.81 288) (2236.44 -4200.24 384)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85469" - "plane" "(2984 242 616) (3004 242 636) (3004 240 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 88.8517] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58747" + "plane" "(2236.44 -4200.24 384) (2220.44 -4172.52 416) (2234.3 -4164.52 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58746" + "plane" "(2180.44 -4103.24 288) (2194.3 -4095.24 288) (2194.3 -4095.24 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218554" + "color" "156 245 0" + "groupid" "167989" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218560" + "id" "167991" side { - "id" "85479" - "plane" "(2984 200 616) (3004 220 636) (3004 200 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -93.6154] 0.188" - "vaxis" "[0 1 0 82.7247] 0.188" + "id" "58758" + "plane" "(2220.44 -4172.52 432) (2220.44 -4172.52 416) (2234.3 -4164.52 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85478" - "plane" "(2984 200 612) (3004 200 632) (3004 220 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "id" "58757" + "plane" "(2234.3 -4164.52 432) (2234.3 -4164.52 416) (2250.3 -4192.24 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85477" - "plane" "(2984 200 612) (2984 200 616) (3004 200 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "58756" + "plane" "(2236.44 -4200.24 400) (2236.44 -4200.24 384) (2220.44 -4172.52 416)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85476" - "plane" "(3004 220 632) (3004 220 636) (2984 200 616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "58755" + "plane" "(2250.3 -4192.24 400) (2250.3 -4192.24 384) (2236.44 -4200.24 384)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58754" + "plane" "(2236.44 -4200.24 400) (2220.44 -4172.52 432) (2234.3 -4164.52 432)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85475" - "plane" "(3004 200 632) (3004 200 636) (3004 220 636)" + "id" "58753" + "plane" "(2250.3 -4192.24 384) (2234.3 -4164.52 416) (2220.44 -4172.52 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218559" + "color" "156 245 0" + "groupid" "167989" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218561" + "id" "167992" side { - "id" "85484" - "plane" "(3024 200 616) (3004 200 636) (3004 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 125.615] 0.188" - "vaxis" "[0 1 0 82.7247] 0.188" + "id" "58764" + "plane" "(2180.44 -4103.24 432) (2180.44 -4103.24 416) (2194.3 -4095.24 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85483" - "plane" "(3024 200 612) (3004 220 632) (3004 200 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "id" "58763" + "plane" "(2194.3 -4095.24 432) (2194.3 -4095.24 416) (2234.3 -4164.52 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85482" - "plane" "(3024 200 616) (3024 200 612) (3004 200 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "58762" + "plane" "(2220.44 -4172.52 432) (2220.44 -4172.52 416) (2180.44 -4103.24 416)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85481" - "plane" "(3024 200 612) (3024 200 616) (3004 220 636)" + "id" "58761" + "plane" "(2234.3 -4164.52 432) (2234.3 -4164.52 416) (2220.44 -4172.52 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58760" + "plane" "(2180.44 -4103.24 432) (2194.3 -4095.24 432) (2234.3 -4164.52 432)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85480" - "plane" "(3004 220 632) (3004 220 636) (3004 200 636)" + "id" "58759" + "plane" "(2234.3 -4164.52 416) (2194.3 -4095.24 416) (2180.44 -4103.24 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218559" + "color" "156 245 0" + "groupid" "167989" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218562" + "id" "168899" side { - "id" "85490" - "plane" "(3004 198 632) (3004 200 632) (3004 200 636)" + "id" "58788" + "plane" "(1024 -2816 64) (1024 -2624 64) (1056 -2624 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85489" - "plane" "(3024 200 612) (3024 198 612) (3024 198 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -2.7247] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58787" + "plane" "(1024 -2624 -96) (1024 -2816 -96) (1056 -2816 -96)" + "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" "85488" - "plane" "(3024 198 612) (3004 198 632) (3004 198 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 125.615] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58786" + "plane" "(1024 -2816 -96) (1024 -2624 -96) (1024 -2624 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" "85487" - "plane" "(3004 200 632) (3024 200 612) (3024 200 616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "58785" + "plane" "(1056 -2624 -96) (1056 -2816 -96) (1056 -2816 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85486" - "plane" "(3024 200 612) (3004 200 632) (3004 198 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -2.7247] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58784" + "plane" "(1024 -2624 -96) (1056 -2624 -96) (1056 -2624 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85485" - "plane" "(3024 198 616) (3004 198 636) (3004 200 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -2.7247] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58783" + "plane" "(1056 -2816 -96) (1024 -2816 -96) (1024 -2816 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" "163 140 0" - "groupid" "218559" + "color" "0 103 232" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218563" + "id" "166162" side { - "id" "85496" - "plane" "(3004 200 632) (3004 198 632) (3004 198 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "58230" + "plane" "(352 -2624 72) (352 -2320 72) (384 -2320 72)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85495" - "plane" "(2984 198 612) (2984 200 612) (2984 200 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -2.7247] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58229" + "plane" "(352 -2320 64) (352 -2624 64) (384 -2624 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" "85494" - "plane" "(3004 198 632) (2984 198 612) (2984 198 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -93.6154] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58228" + "plane" "(352 -2624 64) (352 -2320 64) (352 -2320 72)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85493" - "plane" "(2984 200 612) (3004 200 632) (3004 200 636)" + "id" "58227" + "plane" "(384 -2320 64) (384 -2624 64) (384 -2624 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85492" - "plane" "(2984 198 612) (3004 198 632) (3004 200 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -2.7247] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58226" + "plane" "(352 -2320 64) (384 -2320 64) (384 -2320 72)" + "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" "85491" - "plane" "(2984 200 616) (3004 200 636) (3004 198 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -2.7247] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "58225" + "plane" "(384 -2624 64) (352 -2624 64) (352 -2624 72)" + "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" "163 140 0" - "groupid" "218559" + "color" "0 103 232" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218566" + "id" "166166" side { - "id" "85502" - "plane" "(3952 216 208) (3952 240 208) (3976 240 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[1 0 0 51.4455] 0.188" + "id" "58242" + "plane" "(320 -2624 64) (320 -2320 64) (352 -2320 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85501" - "plane" "(4000 216 160) (3976 240 160) (3952 240 160)" + "id" "58241" + "plane" "(320 -2320 56) (320 -2624 56) (352 -2624 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85500" - "plane" "(3952 216 160) (3952 216 208) (4000 216 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -120.445] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58240" + "plane" "(320 -2624 56) (320 -2320 56) (320 -2320 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85499" - "plane" "(3976 240 160) (3976 240 208) (3952 240 208)" + "id" "58239" + "plane" "(352 -2320 56) (352 -2624 56) (352 -2624 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85498" - "plane" "(3952 240 160) (3952 240 208) (3952 216 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "58238" + "plane" "(320 -2320 56) (352 -2320 56) (352 -2320 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85497" - "plane" "(4000 216 160) (4000 216 208) (3976 240 208)" + "id" "58237" + "plane" "(352 -2624 56) (320 -2624 56) (320 -2624 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218565" + "color" "0 103 232" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218567" + "id" "166174" side { - "id" "85508" - "plane" "(3956 220 416) (3956 240 416) (3976 240 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "58260" + "plane" "(934 -1882 90) (934 -1792 90) (1024 -1792 90)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85507" - "plane" "(3996 220 208) (3976 240 208) (3956 240 208)" + "id" "58259" + "plane" "(934 -1792 64) (934 -1882 64) (1024 -1882 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85506" - "plane" "(3956 220 208) (3956 220 416) (3996 220 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 184.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58258" + "plane" "(934 -1882 64) (934 -1792 64) (934 -1792 90)" + "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" "85505" - "plane" "(3976 240 208) (3976 240 416) (3956 240 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "58257" + "plane" "(1024 -1792 64) (1024 -1882 64) (1024 -1882 90)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -56327,21 +57461,21 @@ world } side { - "id" "85504" - "plane" "(3956 240 208) (3956 240 416) (3956 220 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 8.00168] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "58256" + "plane" "(934 -1792 64) (1024 -1792 64) (1024 -1792 90)" + "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" "85503" - "plane" "(3996 220 208) (3996 220 416) (3976 240 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "58255" + "plane" "(1024 -1882 64) (934 -1882 64) (934 -1882 90)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -56349,43 +57483,42 @@ world } editor { - "color" "163 140 0" - "groupid" "218565" + "color" "0 103 232" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218568" + "id" "163335" side { - "id" "85513" - "plane" "(3998 218 284) (3953.99 218 284) (3956 220 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -120.445] 0.188" - "vaxis" "[0 -1 0 -88.128] 0.188" + "id" "57319" + "plane" "(1024 -2120 48) (1024 -1864 48) (1472 -1864 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85512" - "plane" "(3996 220 284) (3996 220 276) (3998 218 284)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57318" + "plane" "(1024 -1864 24) (1024 -2120 24) (1472 -2120 24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 -1 0 -288.001] 0.25" + "vaxis" "[1 0 0 284] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85511" - "plane" "(3956 220 284) (3953.99 218 284) (3956 220 276)" + "id" "57317" + "plane" "(1024 -2120 24) (1024 -1864 24) (1024 -1864 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -56393,10 +57526,10 @@ world } side { - "id" "85510" - "plane" "(3996 220 284) (3956 220 284) (3956 220 276)" + "id" "57316" + "plane" "(1472 -1864 24) (1472 -2120 24) (1472 -2120 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -56404,120 +57537,129 @@ world } side { - "id" "85509" - "plane" "(3998 218 284) (3996 220 276) (3956 220 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -120.445] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57315" + "plane" "(1024 -1864 24) (1472 -1864 24) (1472 -1864 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57314" + "plane" "(1472 -2120 24) (1024 -2120 24) (1024 -2120 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218565" + "color" "0 252 205" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218569" + "id" "163336" side { - "id" "85519" - "plane" "(3996 220 416) (3976 240 416) (3956 240 416)" + "id" "57325" + "plane" "(1024 -2120 -24) (1024 -1864 -24) (1072 -1864 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85518" - "plane" "(3956 220 416) (3956 236 432) (3980 236 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 184.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57324" + "plane" "(1024 -1864 -56) (1024 -2120 -56) (1048 -2120 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85517" - "plane" "(3976 240 416) (3976 240 432) (3956 240 432)" + "id" "57323" + "plane" "(1024 -2120 -56) (1024 -1864 -56) (1024 -1864 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85516" - "plane" "(3956 220 416) (3956 240 416) (3956 240 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 8.00168] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57322" + "plane" "(1048 -1864 -56) (1048 -2120 -56) (1072 -2120 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 1 0 288.001] 0.25" + "vaxis" "[-0.6 0 -0.8 -896] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85515" - "plane" "(3956 236 432) (3956 240 432) (3976 240 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "57321" + "plane" "(1024 -1864 -56) (1048 -1864 -56) (1072 -1864 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85514" - "plane" "(3996 220 416) (3980 236 432) (3976 240 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57320" + "plane" "(1048 -2120 -56) (1024 -2120 -56) (1024 -2120 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218565" + "color" "0 234 163" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218570" + "id" "163337" side { - "id" "85524" - "plane" "(3954 218 284) (3954 240 284) (3956 240 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[-1 0 0 296.555] 0.188" + "id" "57330" + "plane" "(1024 -2120 -56) (1024 -1864 -56) (1048 -1864 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85523" - "plane" "(3956 220 284) (3956 220 276) (3954 218 284)" + "id" "57329" + "plane" "(1024 -2120 -88) (1024 -1864 -88) (1024 -1864 -56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -56525,681 +57667,694 @@ world } side { - "id" "85522" - "plane" "(3956 240 284) (3954 240 284) (3956 240 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57328" + "plane" "(1024 -1864 -88) (1024 -2120 -88) (1048 -2120 -56)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 1 0 288.001] 0.25" + "vaxis" "[-0.6 0 -0.8 -896] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85521" - "plane" "(3956 220 284) (3956 240 284) (3956 240 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57327" + "plane" "(1048 -1864 -56) (1024 -1864 -56) (1024 -1864 -88)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85520" - "plane" "(3954 218 284) (3956 220 276) (3956 240 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57326" + "plane" "(1024 -2120 -88) (1024 -2120 -56) (1048 -2120 -56)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218565" + "color" "0 200 245" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218572" + "id" "163338" side { - "id" "85530" - "plane" "(4000 216 208) (3976 240 208) (3976 264 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -83.3381] 0.188" - "vaxis" "[0 -1 0 -51.0226] 0.188" + "id" "57336" + "plane" "(1024 -1864 -24) (1024 -2120 -24) (1072 -2120 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85529" - "plane" "(3976 240 160) (4000 216 160) (4000 264 160)" + "id" "57335" + "plane" "(1024 -2120 0) (1024 -2120 -24) (1024 -1864 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85528" - "plane" "(4000 216 160) (4000 216 208) (4000 264 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 494.023] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57334" + "plane" "(1112 -1864 0) (1072 -1864 -24) (1072 -2120 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 1 0 288.001] 0.25" + "vaxis" "[-0.857493 0 -0.514495 -788.463] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85527" - "plane" "(3976 264 160) (3976 264 208) (3976 240 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57333" + "plane" "(1024 -1864 0) (1024 -1864 -24) (1072 -1864 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85526" - "plane" "(4000 264 160) (4000 264 208) (3976 264 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -83.3381] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57332" + "plane" "(1112 -2120 0) (1072 -2120 -24) (1024 -2120 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85525" - "plane" "(3976 240 160) (3976 240 208) (4000 216 208)" + "id" "57331" + "plane" "(1024 -2120 0) (1024 -1864 0) (1112 -1864 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218571" + "color" "0 158 203" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218573" + "id" "163339" side { - "id" "85536" - "plane" "(3996 220 416) (3976 240 416) (3976 260 416)" + "id" "57342" + "plane" "(1024 -2120 12) (1024 -1864 12) (1152 -1864 12)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85535" - "plane" "(3976 240 208) (3996 220 208) (3996 260 208)" + "id" "57341" + "plane" "(1024 -1864 0) (1024 -1864 12) (1024 -2120 12)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85534" - "plane" "(3996 220 208) (3996 220 416) (3996 260 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 96.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57340" + "plane" "(1112 -2120 0) (1152 -2120 12) (1152 -1864 12)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 1 0 288.001] 0.25" + "vaxis" "[-0.957826 0 -0.287348 -351.555] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85533" - "plane" "(3976 260 208) (3976 260 416) (3976 240 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57339" + "plane" "(1152.01 -1864 12) (1024 -1864 12) (1024 -1864 0)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85532" - "plane" "(3996 260 208) (3996 260 416) (3976 260 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 96.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57338" + "plane" "(1024 -2120 0) (1024 -2120 12) (1152 -2120 12)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85531" - "plane" "(3976 240 208) (3976 240 416) (3996 220 416)" + "id" "57337" + "plane" "(1024 -1864 0) (1024 -2120 0) (1112 -2120 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218571" + "color" "0 120 101" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218574" + "id" "163340" side { - "id" "85541" - "plane" "(3996 220 284) (3996 260 284) (3998 262 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 494.023] 0.188" - "vaxis" "[1 0 0 14.3381] 0.188" + "id" "57348" + "plane" "(1024 -2120 24) (1024 -1864 24) (1228 -1864 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85540" - "plane" "(3996 220 284) (3998 218 284) (3996 220 276)" + "id" "57347" + "plane" "(1024 -1864 12) (1024 -1864 24) (1024 -2120 24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85539" - "plane" "(3996 260 284) (3996 260 276) (3998 262 284)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57346" + "plane" "(1152 -2120 12) (1228 -2120 24) (1228 -1864 24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 1 0 288.001] 0.25" + "vaxis" "[-0.987763 0 -0.155962 -232.895] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85538" - "plane" "(3996 260 284) (3996 220 284) (3996 220 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57345" + "plane" "(1228 -1864 24) (1024 -1864 24) (1024 -1864 12)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85537" - "plane" "(3998 218 284) (3998 262 284) (3996 260 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 494.023] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57344" + "plane" "(1024 -2120 12) (1024 -2120 24) (1228 -2120 24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57343" + "plane" "(1024 -1864 12) (1024 -2120 12) (1152 -2120 12)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218571" + "color" "0 106 211" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218575" + "id" "163341" side { - "id" "85547" - "plane" "(3976 240 416) (3996 220 416) (3996 260 416)" + "id" "57354" + "plane" "(1268 -2120 24) (1268 -1864 24) (1472 -1864 24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85546" - "plane" "(3996 220 416) (3980 236 432) (3980 260 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 96.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57353" + "plane" "(1472 -2120 12) (1472 -2120 24) (1472 -1864 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85545" - "plane" "(3976 260 416) (3976 260 432) (3976 240 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "57352" + "plane" "(1268 -1864 24) (1268 -2120 24) (1344 -2120 12)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 -1 0 -288.001] 0.25" + "vaxis" "[0.987763 0 -0.155962 145.275] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85544" - "plane" "(3996 260 416) (3980 260 432) (3976 260 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 96.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57351" + "plane" "(1472 -1864 12) (1472 -1864 24) (1268 -1864 24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85543" - "plane" "(3980 236 432) (3976 240 432) (3976 260 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "57350" + "plane" "(1268 -2120 24) (1472 -2120 24) (1472 -2120 12)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85542" - "plane" "(3976 240 416) (3976 240 432) (3980 236 432)" + "id" "57349" + "plane" "(1344 -1864 12) (1344 -2120 12) (1472 -2120 12)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218571" + "color" "0 124 221" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218576" + "id" "163342" side { - "id" "85552" - "plane" "(3996 260 284) (3976 260 284) (3976 262 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -83.3381] 0.188" - "vaxis" "[0 1 0 399.022] 0.188" + "id" "57360" + "plane" "(1344 -2120 12) (1344 -1864 12) (1472 -1864 12)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85551" - "plane" "(3996 260 284) (3998 262 284) (3996 260 276)" + "id" "57359" + "plane" "(1472 -2120 0) (1472 -2120 12) (1472 -1864 12)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85550" - "plane" "(3976 260 284) (3976 260 276) (3976 262 284)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57358" + "plane" "(1344 -1864 12) (1344 -2120 12) (1384 -2120 0)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 -1 0 -288.001] 0.25" + "vaxis" "[0.957826 0 -0.287348 325.504] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85549" - "plane" "(3976 260 284) (3996 260 284) (3996 260 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57357" + "plane" "(1472 -1864 0) (1472 -1864 12) (1344 -1864 12)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85548" - "plane" "(3998 262 284) (3976 262 284) (3976 260 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -83.3381] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57356" + "plane" "(1344 -2120 12) (1472 -2120 12) (1472 -2120 0)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57355" + "plane" "(1384 -1864 0) (1384 -2120 0) (1472 -2120 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218571" + "color" "0 122 107" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218577" + "id" "163343" side { - "id" "85558" - "plane" "(2749.33 240 402.673) (2752 240 400) (2760 240 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -188.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57366" + "plane" "(1424 -1864 -24) (1424 -2120 -24) (1472 -2120 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85557" - "plane" "(2752 200 400) (2749.33 200 402.673) (2760 200 424.013)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -252.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57365" + "plane" "(1472 -1864 0) (1472 -1864 -24) (1472 -2120 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85556" - "plane" "(2749.33 200 402.673) (2749.33 240 402.673) (2760 240 424.012)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57364" + "plane" "(1384 -2120 0) (1424 -2120 -24) (1424 -1864 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 -1 0 -288.001] 0.25" + "vaxis" "[0.857493 0 -0.514495 890.328] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85555" - "plane" "(2760 200 400) (2760 240 400) (2752 240 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[1 0 0 -109.002] 0.2" + "id" "57363" + "plane" "(1384 -1864 0) (1424 -1864 -24) (1472 -1864 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85554" - "plane" "(2760 240 400) (2760 200 400) (2760 200 424.013)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57362" + "plane" "(1472 -2120 0) (1472 -2120 -24) (1424 -2120 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85553" - "plane" "(2752 200 400) (2752 240 400) (2749.33 240 402.673)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0.707107 0 -0.707107 -296.579] 0.2" + "id" "57361" + "plane" "(1384 -2120 0) (1384 -1864 0) (1472 -1864 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 120 157" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218579" + "id" "163344" side { - "id" "85564" - "plane" "(3704 216 208) (3704 240 208) (3752 240 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[1 0 0 -165.406] 0.188" + "id" "57372" + "plane" "(1424 -2120 -24) (1424 -1864 -24) (1472 -1864 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85563" - "plane" "(3752 216 160) (3752 240 160) (3704 240 160)" + "id" "57371" + "plane" "(1448 -1864 -56) (1448 -2120 -56) (1472 -2120 -56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85562" - "plane" "(3704 216 160) (3704 216 208) (3752 216 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 96.4061] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57370" + "plane" "(1472 -1864 -56) (1472 -2120 -56) (1472 -2120 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85561" - "plane" "(3752 240 160) (3752 240 208) (3704 240 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57369" + "plane" "(1448 -2120 -56) (1448 -1864 -56) (1424 -1864 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 -1 0 -288.001] 0.25" + "vaxis" "[0.6 0 -0.8 281.6] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85560" - "plane" "(3704 240 160) (3704 240 208) (3704 216 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57368" + "plane" "(1448 -1864 -56) (1472 -1864 -56) (1472 -1864 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85559" - "plane" "(3752 216 160) (3752 216 208) (3752 240 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57367" + "plane" "(1472 -2120 -56) (1448 -2120 -56) (1424 -2120 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218578" + "color" "0 110 251" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218580" + "id" "163345" side { - "id" "85570" - "plane" "(3708 220 416) (3708 240 416) (3748 240 416)" + "id" "57377" + "plane" "(1448 -2120 -56) (1448 -1864 -56) (1472 -1864 -56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85569" - "plane" "(3748 220 208) (3748 240 208) (3708 240 208)" + "id" "57376" + "plane" "(1472 -1864 -88) (1472 -2120 -88) (1472 -2120 -56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "85568" - "plane" "(3708 220 208) (3708 220 416) (3748 220 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -31.9983] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85567" - "plane" "(3748 240 208) (3748 240 416) (3708 240 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "57375" + "plane" "(1472 -2120 -88) (1472 -1864 -88) (1448 -1864 -56)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 -1 0 -288.001] 0.25" + "vaxis" "[0.6 0 -0.8 281.6] 0.25" + "rotation" "180" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85566" - "plane" "(3708 240 208) (3708 240 416) (3708 220 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 8.00168] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57374" + "plane" "(1472 -1864 -88) (1472 -1864 -56) (1448 -1864 -56)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85565" - "plane" "(3748 220 208) (3748 220 416) (3748 240 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 8.00168] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57373" + "plane" "(1448 -2120 -56) (1472 -2120 -56) (1472 -2120 -88)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218578" + "color" "0 172 217" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218581" + "id" "163346" side { - "id" "85575" - "plane" "(3750 218 284) (3705.99 218 284) (3708 220 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 96.4061] 0.188" - "vaxis" "[0 -1 0 -88.128] 0.188" + "id" "57383" + "plane" "(1136 -1882 110) (1080 -1882 96) (1080 -1864 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85574" - "plane" "(3748 220 284) (3748 220 276) (3750 218 284)" + "id" "57382" + "plane" "(1136 -1864 48) (1080 -1864 48) (1080 -1882 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85573" - "plane" "(3708 220 284) (3705.99 218 284) (3708 220 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57381" + "plane" "(1136 -1864 110) (1080 -1864 96) (1080 -1864 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57380" + "plane" "(1136 -1882 48) (1080 -1882 48) (1080 -1882 96)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85572" - "plane" "(3748 220 284) (3708 220 284) (3708 220 276)" + "id" "57379" + "plane" "(1136 -1864 48) (1136 -1882 48) (1136 -1882 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -57207,142 +58362,151 @@ world } side { - "id" "85571" - "plane" "(3750 218 284) (3748 220 276) (3708 220 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 96.4061] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57378" + "plane" "(1080 -1882 48) (1080 -1864 48) (1080 -1864 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218578" + "color" "0 158 231" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218582" + "id" "163347" side { - "id" "85581" - "plane" "(3748 220 416) (3748 240 416) (3708 240 416)" + "id" "57389" + "plane" "(1080 -1882 96) (1024 -1882 90) (1024 -1864 90)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85580" - "plane" "(3708 220 416) (3708 236 432) (3748 236 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -31.9983] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57388" + "plane" "(1080 -1864 48) (1024 -1864 48) (1024 -1882 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85579" - "plane" "(3748 240 416) (3748 240 432) (3708 240 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "57387" + "plane" "(1024 -1882 48) (1024 -1864 48) (1024 -1864 90)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 1 0 288] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85578" - "plane" "(3708 220 416) (3708 240 416) (3708 240 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 8.00168] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57386" + "plane" "(1080 -1864 96) (1024 -1864 90) (1024 -1864 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85577" - "plane" "(3748 220 416) (3748 236 432) (3748 240 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 8.00168] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57385" + "plane" "(1080 -1882 48) (1024 -1882 48) (1024 -1882 90)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85576" - "plane" "(3708 236 432) (3708 240 432) (3748 240 432)" + "id" "57384" + "plane" "(1080 -1864 48) (1080 -1882 48) (1080 -1882 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218578" + "color" "0 208 157" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218583" + "id" "163348" side { - "id" "85586" - "plane" "(3748 220 284) (3748 240 284) (3750 240 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[1 0 0 -165.406] 0.188" + "id" "57395" + "plane" "(1360 -1864 110) (1416 -1864 96) (1416 -1882 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85585" - "plane" "(3748 220 284) (3750 218 284) (3748 220 276)" + "id" "57394" + "plane" "(1360 -1882 48) (1416 -1882 48) (1416 -1864 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85584" - "plane" "(3748 240 284) (3748 240 276) (3750 240 284)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57393" + "plane" "(1360 -1864 48) (1416 -1864 48) (1416 -1864 96)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57392" + "plane" "(1360 -1882 110) (1416 -1882 96) (1416 -1882 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85583" - "plane" "(3748 240 284) (3748 220 284) (3748 220 276)" + "id" "57391" + "plane" "(1360 -1882 48) (1360 -1864 48) (1360 -1864 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -57350,351 +58514,379 @@ world } side { - "id" "85582" - "plane" "(3750 218 284) (3750 240 284) (3748 240 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57390" + "plane" "(1416 -1864 48) (1416 -1882 48) (1416 -1882 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218578" + "color" "0 174 179" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218584" + "id" "163349" side { - "id" "85591" - "plane" "(3706 218 284) (3706 240 284) (3708 240 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[-1 0 0 1.40607] 0.188" + "id" "57401" + "plane" "(1416 -1864 96) (1472 -1864 90) (1472 -1882 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85590" - "plane" "(3708 220 284) (3708 220 276) (3706 218 284)" + "id" "57400" + "plane" "(1416 -1882 48) (1472 -1882 48) (1472 -1864 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85589" - "plane" "(3708 240 284) (3706 240 284) (3708 240 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57399" + "plane" "(1472 -1864 48) (1472 -1882 48) (1472 -1882 90)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 1 0 103.994] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85588" - "plane" "(3708 220 284) (3708 240 284) (3708 240 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57398" + "plane" "(1416 -1864 48) (1472 -1864 48) (1472 -1864 90)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85587" - "plane" "(3706 218 284) (3708 220 276) (3708 240 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57397" + "plane" "(1416 -1882 96) (1472 -1882 90) (1472 -1882 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57396" + "plane" "(1416 -1882 48) (1416 -1864 48) (1416 -1864 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218578" + "color" "0 200 165" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218585" + "id" "163350" side { - "id" "85596" - "plane" "(2760 240 612) (2780 220 632) (2760 220 632)" + "id" "57407" + "plane" "(1248 -1864 122) (1304 -1864 118) (1304 -1882 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85595" - "plane" "(2760 220 424) (2780 220 424) (2760 240 424)" + "id" "57406" + "plane" "(1248 -1882 48) (1304 -1882 48) (1304 -1864 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57405" + "plane" "(1248 -1864 48) (1304 -1864 48) (1304 -1864 118)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85594" - "plane" "(2760 240 424) (2760 240 612) (2760 220 632)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -108.002] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "57404" + "plane" "(1248 -1882 122) (1304 -1882 118) (1304 -1882 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85593" - "plane" "(2760 220 424) (2760 220 632) (2780 220 632)" + "id" "57403" + "plane" "(1248 -1882 48) (1248 -1864 48) (1248 -1864 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85592" - "plane" "(2760 240 612) (2760 240 424) (2780 220 424)" + "id" "57402" + "plane" "(1304 -1864 48) (1304 -1882 48) (1304 -1882 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 146 215" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218587" + "id" "163351" side { - "id" "85602" - "plane" "(3456 216 208) (3456 240 208) (3504 240 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[1 0 0 129.742] 0.188" + "id" "57413" + "plane" "(1248 -1882 122) (1192 -1882 118) (1192 -1864 118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85601" - "plane" "(3504 216 160) (3504 240 160) (3456 240 160)" + "id" "57412" + "plane" "(1248 -1864 48) (1192 -1864 48) (1192 -1882 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85600" - "plane" "(3456 216 160) (3456 216 208) (3504 216 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 313.258] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57411" + "plane" "(1248 -1864 122) (1192 -1864 118) (1192 -1864 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85599" - "plane" "(3504 240 160) (3504 240 208) (3456 240 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57410" + "plane" "(1248 -1882 48) (1192 -1882 48) (1192 -1882 118)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85598" - "plane" "(3456 240 160) (3456 240 208) (3456 216 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57409" + "plane" "(1248 -1864 48) (1248 -1882 48) (1248 -1882 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85597" - "plane" "(3504 216 160) (3504 216 208) (3504 240 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57408" + "plane" "(1192 -1882 48) (1192 -1864 48) (1192 -1864 118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218586" + "color" "0 132 141" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218588" + "id" "163352" side { - "id" "85608" - "plane" "(3460 220 416) (3460 240 416) (3500 240 416)" + "id" "57419" + "plane" "(1192 -1882 118) (1136 -1882 110) (1136 -1864 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85607" - "plane" "(3500 220 208) (3500 240 208) (3460 240 208)" + "id" "57418" + "plane" "(1192 -1864 48) (1136 -1864 48) (1136 -1882 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85606" - "plane" "(3460 220 208) (3460 220 416) (3500 220 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 264.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57417" + "plane" "(1192 -1864 118) (1136 -1864 110) (1136 -1864 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85605" - "plane" "(3500 240 208) (3500 240 416) (3460 240 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57416" + "plane" "(1192 -1882 48) (1136 -1882 48) (1136 -1882 110)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85604" - "plane" "(3460 240 208) (3460 240 416) (3460 220 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 8.00168] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57415" + "plane" "(1136 -1882 48) (1136 -1864 48) (1136 -1864 110)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85603" - "plane" "(3500 220 208) (3500 220 416) (3500 240 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 8.00168] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57414" + "plane" "(1192 -1864 48) (1192 -1882 48) (1192 -1882 118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218586" + "color" "0 134 211" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218589" + "id" "163353" side { - "id" "85613" - "plane" "(3502 218 284) (3458.02 218 284) (3460.02 220 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 313.258] 0.188" - "vaxis" "[0 -1 0 -88.128] 0.188" + "id" "57425" + "plane" "(1304 -1864 118) (1360 -1864 110) (1360 -1882 110)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85612" - "plane" "(3500 220 284) (3500 220 276) (3502 218 284)" + "id" "57424" + "plane" "(1304 -1882 48) (1360 -1882 48) (1360 -1864 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85611" - "plane" "(3460.02 220 284) (3458.02 218 284) (3460 220 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57423" + "plane" "(1304 -1864 48) (1360 -1864 48) (1360 -1864 110)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57422" + "plane" "(1304 -1882 118) (1360 -1882 110) (1360 -1882 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85610" - "plane" "(3500 220 284) (3460.02 220 284) (3460 220 276)" + "id" "57421" + "plane" "(1360 -1864 48) (1360 -1882 48) (1360 -1882 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -57702,197 +58894,151 @@ world } side { - "id" "85609" - "plane" "(3502 218 284) (3500 220 276) (3460 220 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 313.258] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57420" + "plane" "(1304 -1882 48) (1304 -1864 48) (1304 -1864 118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218586" + "color" "0 132 217" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218590" + "id" "163354" side { - "id" "85619" - "plane" "(3500 220 416) (3500 240 416) (3460 240 416)" + "id" "57431" + "plane" "(1080 -2120 96) (1024 -2120 90) (1024 -2102 90)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85618" - "plane" "(3460 220 416) (3460 236 432) (3500 236 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 264.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57430" + "plane" "(1080 -2102 48) (1024 -2102 48) (1024 -2120 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85617" - "plane" "(3500 240 416) (3500 240 432) (3460 240 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "57429" + "plane" "(1024 -2120 48) (1024 -2102 48) (1024 -2102 90)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 1 0 215.994] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85616" - "plane" "(3460 220 416) (3460 240 416) (3460 240 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 8.00168] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57428" + "plane" "(1080 -2102 96) (1024 -2102 90) (1024 -2102 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85615" - "plane" "(3500 220 416) (3500 236 432) (3500 240 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 8.00168] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57427" + "plane" "(1080 -2120 48) (1024 -2120 48) (1024 -2120 90)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85614" - "plane" "(3460 236 432) (3460 240 432) (3500 240 432)" + "id" "57426" + "plane" "(1080 -2102 48) (1080 -2120 48) (1080 -2120 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218586" + "color" "0 138 239" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218591" - side - { - "id" "85624" - "plane" "(3500 220 284) (3500 240 284) (3502 240 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[1 0 0 129.742] 0.188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "85623" - "plane" "(3500 220 284) (3502 218 284) (3500 220 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "163355" side { - "id" "85622" - "plane" "(3500 240 284) (3500 240 276) (3502 240 284)" + "id" "57437" + "plane" "(1136 -2120 110) (1080 -2120 96) (1080 -2102 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85621" - "plane" "(3500 240 284) (3500 220 284) (3500 220 276)" + "id" "57436" + "plane" "(1136 -2102 48) (1080 -2102 48) (1080 -2120 48)" "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" "85620" - "plane" "(3502 218 284) (3502 240 284) (3500 240 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "163 140 0" - "groupid" "218586" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "218592" side { - "id" "85629" - "plane" "(3458 218 284) (3458 240 284) (3460 240 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[-1 0 0 218.258] 0.188" + "id" "57435" + "plane" "(1136 -2102 110) (1080 -2102 96) (1080 -2102 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85628" - "plane" "(3460 220 284) (3460 220 276) (3458 218 284)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57434" + "plane" "(1136 -2120 48) (1080 -2120 48) (1080 -2120 96)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85627" - "plane" "(3460 240 284) (3458 240 284) (3460 240 276)" + "id" "57433" + "plane" "(1136 -2102 48) (1136 -2120 48) (1136 -2120 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -57900,230 +59046,227 @@ world } side { - "id" "85626" - "plane" "(3460 220 284) (3460 240 284) (3460 240 276)" + "id" "57432" + "plane" "(1080 -2120 48) (1080 -2102 48) (1080 -2102 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - side - { - "id" "85625" - "plane" "(3458 218 284) (3460 220 276) (3460 240 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } editor { - "color" "163 140 0" - "groupid" "218586" + "color" "0 176 213" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218594" + "id" "163356" side { - "id" "85635" - "plane" "(3208 216 208) (3208 240 208) (3256 240 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[1 0 0 -87.1072] 0.188" + "id" "57443" + "plane" "(1192 -2120 118) (1136 -2120 110) (1136 -2102 110)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85634" - "plane" "(3256 216 160) (3256 240 160) (3208 240 160)" + "id" "57442" + "plane" "(1192 -2102 48) (1136 -2102 48) (1136 -2120 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85633" - "plane" "(3208 216 160) (3208 216 208) (3256 216 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 18.1072] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57441" + "plane" "(1192 -2102 118) (1136 -2102 110) (1136 -2102 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85632" - "plane" "(3256 240 160) (3256 240 208) (3208 240 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57440" + "plane" "(1192 -2120 48) (1136 -2120 48) (1136 -2120 110)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85631" - "plane" "(3208 240 160) (3208 240 208) (3208 216 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57439" + "plane" "(1136 -2120 48) (1136 -2102 48) (1136 -2102 110)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85630" - "plane" "(3256 216 160) (3256 216 208) (3256 240 208)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57438" + "plane" "(1192 -2102 48) (1192 -2120 48) (1192 -2120 118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218593" + "color" "0 226 155" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218595" + "id" "163357" side { - "id" "85641" - "plane" "(3212 220 416) (3212 240 416) (3252 240 416)" + "id" "57449" + "plane" "(1248 -2120 122) (1192 -2120 118) (1192 -2102 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85640" - "plane" "(3252 220 208) (3252 240 208) (3212 240 208)" + "id" "57448" + "plane" "(1248 -2102 48) (1192 -2102 48) (1192 -2120 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85639" - "plane" "(3212 220 208) (3212 220 416) (3252 220 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 48.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57447" + "plane" "(1248 -2102 122) (1192 -2102 118) (1192 -2102 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85638" - "plane" "(3252 240 208) (3252 240 416) (3212 240 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57446" + "plane" "(1248 -2120 48) (1192 -2120 48) (1192 -2120 118)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85637" - "plane" "(3212 240 208) (3212 240 416) (3212 220 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 8.00168] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57445" + "plane" "(1248 -2102 48) (1248 -2120 48) (1248 -2120 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85636" - "plane" "(3252 220 208) (3252 220 416) (3252 240 416)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 8.00168] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57444" + "plane" "(1192 -2120 48) (1192 -2102 48) (1192 -2102 118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218593" + "color" "0 172 133" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218596" + "id" "163358" side { - "id" "85646" - "plane" "(3252 220 284) (3252 240 284) (3254 240 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[1 0 0 -87.1072] 0.188" + "id" "57455" + "plane" "(1248 -2102 122) (1304 -2102 118) (1304 -2120 118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85645" - "plane" "(3252 220 284) (3254 218 284) (3252 220 276)" + "id" "57454" + "plane" "(1248 -2120 48) (1304 -2120 48) (1304 -2102 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85644" - "plane" "(3252 240 284) (3252 240 276) (3254 240 284)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57453" + "plane" "(1248 -2102 48) (1304 -2102 48) (1304 -2102 118)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57452" + "plane" "(1248 -2120 122) (1304 -2120 118) (1304 -2120 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85643" - "plane" "(3252 240 284) (3252 220 284) (3252 220 276)" + "id" "57451" + "plane" "(1248 -2120 48) (1248 -2102 48) (1248 -2102 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -58131,65 +59274,75 @@ world } side { - "id" "85642" - "plane" "(3254 218 284) (3254 240 284) (3252 240 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57450" + "plane" "(1304 -2102 48) (1304 -2120 48) (1304 -2120 118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218593" + "color" "0 182 239" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218597" + "id" "163359" side { - "id" "85651" - "plane" "(3210 218 284) (3210 240 284) (3212 240 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[-1 0 0 -76.8928] 0.188" + "id" "57461" + "plane" "(1304 -2102 118) (1360 -2102 110) (1360 -2120 110)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85650" - "plane" "(3212 220 284) (3212 220 276) (3210 218 284)" + "id" "57460" + "plane" "(1304 -2120 48) (1360 -2120 48) (1360 -2102 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85649" - "plane" "(3212 240 284) (3210 240 284) (3212 240 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57459" + "plane" "(1304 -2102 48) (1360 -2102 48) (1360 -2102 110)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57458" + "plane" "(1304 -2120 118) (1360 -2120 110) (1360 -2120 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85648" - "plane" "(3212 220 284) (3212 240 284) (3212 240 276)" + "id" "57457" + "plane" "(1360 -2102 48) (1360 -2120 48) (1360 -2120 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -58197,65 +59350,75 @@ world } side { - "id" "85647" - "plane" "(3210 218 284) (3212 220 276) (3212 240 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 19.128] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57456" + "plane" "(1304 -2120 48) (1304 -2102 48) (1304 -2102 118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218593" + "color" "0 168 193" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218598" + "id" "163360" side { - "id" "85656" - "plane" "(3254 218 284) (3210 218 284) (3212 220 284)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 18.1072] 0.188" - "vaxis" "[0 -1 0 -88.128] 0.188" + "id" "57467" + "plane" "(1360 -2102 110) (1416 -2102 96) (1416 -2120 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85655" - "plane" "(3252 220 284) (3252 220 276) (3254 218 284)" + "id" "57466" + "plane" "(1360 -2120 48) (1416 -2120 48) (1416 -2102 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85654" - "plane" "(3212 220 284) (3210 218 284) (3212 220 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57465" + "plane" "(1360 -2102 48) (1416 -2102 48) (1416 -2102 96)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57464" + "plane" "(1360 -2120 110) (1416 -2120 96) (1416 -2120 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85653" - "plane" "(3252 220 284) (3212 220 284) (3212 220 276)" + "id" "57463" + "plane" "(1360 -2120 48) (1360 -2102 48) (1360 -2102 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -58263,219 +59426,300 @@ world } side { - "id" "85652" - "plane" "(3254 218 284) (3252 220 276) (3212 220 276)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 18.1072] 0.188" - "vaxis" "[0 0 -1 1.06384] 0.188" + "id" "57462" + "plane" "(1416 -2102 48) (1416 -2120 48) (1416 -2120 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218593" + "color" "0 234 247" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218599" + "id" "163361" side { - "id" "85662" - "plane" "(3252 220 416) (3252 240 416) (3212 240 416)" + "id" "57473" + "plane" "(1416 -2102 96) (1472 -2102 90) (1472 -2120 90)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85661" - "plane" "(3212 220 416) (3212 236 432) (3252 236 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 48.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57472" + "plane" "(1416 -2120 48) (1472 -2120 48) (1472 -2102 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85660" - "plane" "(3252 240 416) (3252 240 432) (3212 240 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "57471" + "plane" "(1472 -2102 48) (1472 -2120 48) (1472 -2120 90)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 -1 0 -472.004] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85659" - "plane" "(3212 220 416) (3212 240 416) (3212 240 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 8.00168] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57470" + "plane" "(1416 -2102 48) (1472 -2102 48) (1472 -2102 90)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85658" - "plane" "(3252 220 416) (3252 236 432) (3252 240 432)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 8.00168] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "57469" + "plane" "(1416 -2120 96) (1472 -2120 90) (1472 -2120 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85657" - "plane" "(3212 236 432) (3212 240 432) (3252 240 432)" + "id" "57468" + "plane" "(1416 -2120 48) (1416 -2102 48) (1416 -2102 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218593" + "color" "0 140 225" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218601" + "id" "163362" side { - "id" "85668" - "plane" "(3728 240 608) (3728 260 608) (3792 260 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "57479" + "plane" "(1024 -2102 64) (1024 -1882 64) (1472 -1882 64)" + "material" "STONE/INFFLRD_BLEND_DIRT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 223.999] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1024 -2102 64]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 8.72384 22.7896 25.6621 20.1907 4.35275 0 0" + "row1" "0 0 10.1827 25.5304 27.147 22.7175 7.43949 0 0" + "row2" "0 0 11.7292 25.8815 27.6696 24.1757 8.70917 0 0" + "row3" "0 0 11.4823 25.7711 27.2674 19.7582 9.54561 0 0" + "row4" "0 0 5.8032 21.0732 22.2416 19.6183 3.99163 0 0" + "row5" "0 0 9.91635 26.8722 26.5464 24.7575 9.19771 0 0" + "row6" "0 0 9.46894 27.9154 28.3562 24.2906 8.30138 0 0" + "row7" "0 0 9.1328 28.1661 29.6615 23.2554 7.28686 0 0" + "row8" "0 0 9.75365 26.478 29.437 21.1696 5.54286 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "255 130 255 237.5 255 218.5 180.5 92.5 217.5" + "row1" "230 149.5 142.5 104.5 123.5 114 57 57 241.5" + "row2" "176 10.5 66.5 47.5 66.5 28.5 28.5 0 255" + "row3" "185.5 0 95 95 66.5 38 57 0 255" + "row4" "255 130.5 180.5 161.5 142.5 114 152 52 255" + "row5" "255 1 66.5 66.5 66.5 38 57 1 255" + "row6" "207 0 19 47.5 47.5 28.5 19 41.5 191.5" + "row7" "255 0 76 76 95 66.5 76 23.5 255" + "row8" "180.5 209 171 171 142.5 161.5 152 237.5 255" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "85667" - "plane" "(3792 240 160) (3792 260 160) (3728 260 160)" + "id" "57478" + "plane" "(1024 -1882 48) (1024 -2102 48) (1472 -2102 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 31.9985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85666" - "plane" "(3728 240 160) (3728 240 608) (3792 240 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57477" + "plane" "(1024 -2102 48) (1024 -1882 48) (1024 -1882 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85665" - "plane" "(3792 260 160) (3792 260 608) (3728 260 608)" + "id" "57476" + "plane" "(1472 -1882 48) (1472 -2102 48) (1472 -2102 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -31.9985] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85664" - "plane" "(3728 260 160) (3728 260 608) (3728 240 608)" + "id" "57475" + "plane" "(1024 -1882 48) (1472 -1882 48) (1472 -1882 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85663" - "plane" "(3792 240 160) (3792 240 608) (3792 260 608)" + "id" "57474" + "plane" "(1472 -2102 48) (1024 -2102 48) (1024 -2102 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218600" + "color" "0 118 243" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218602" + "id" "163555" side { - "id" "85674" - "plane" "(3912 240 608) (3912 260 608) (3976 260 608)" + "id" "57510" + "plane" "(704 -1920 256) (704 -1472 256) (1024 -1472 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85673" - "plane" "(3976 240 160) (3976 260 160) (3912 260 160)" + "id" "57509" + "plane" "(704 -1472 -128) (704 -1920 -128) (896 -1920 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85672" - "plane" "(3912 240 160) (3912 240 608) (3976 240 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57508" + "plane" "(704 -1920 -128) (704 -1920 256) (896 -1920 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85671" - "plane" "(3976 260 160) (3976 260 608) (3912 260 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "57507" + "plane" "(1024 -1472 -128) (1024 -1472 256) (704 -1472 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -58483,9 +59727,9 @@ world } side { - "id" "85670" - "plane" "(3912 260 160) (3912 260 608) (3912 240 608)" - "material" "TOOLS/TOOLSNODRAW" + "id" "57506" + "plane" "(1024 -1792 -128) (1024 -1792 256) (1024 -1472 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -58494,8 +59738,8 @@ world } side { - "id" "85669" - "plane" "(3976 240 160) (3976 240 608) (3976 260 608)" + "id" "57505" + "plane" "(704 -1472 -128) (704 -1472 256) (704 -1920 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -58503,56 +59747,66 @@ world "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "57504" + "plane" "(896 -1920 -128) (896 -1920 256) (1024 -1792 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "163 140 0" - "groupid" "218600" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218603" + "id" "163573" side { - "id" "85680" - "plane" "(3792 240 280) (3792 260 280) (3912 260 280)" + "id" "57682" + "plane" "(1533.48 -3324.56 48) (1352.46 -3143.54 48) (1669.25 -2826.75 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85679" - "plane" "(3912 240 160) (3912 260 160) (3792 260 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "57681" + "plane" "(1352.46 -3143.54 24) (1533.48 -3324.56 24) (1850.27 -3007.77 24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 -0.707107 0 -428.609] 0.25" + "vaxis" "[0.707107 0.707107 0 -794.083] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85678" - "plane" "(3792 240 160) (3792 240 280) (3912 240 280)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57680" + "plane" "(1533.48 -3324.56 24) (1352.46 -3143.54 24) (1352.46 -3143.54 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85677" - "plane" "(3912 260 160) (3912 260 280) (3792 260 280)" + "id" "57679" + "plane" "(1669.25 -2826.75 24) (1850.27 -3007.77 24) (1850.27 -3007.77 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -58560,21 +59814,21 @@ world } side { - "id" "85676" - "plane" "(3792 260 160) (3792 260 280) (3792 240 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57678" + "plane" "(1352.46 -3143.54 24) (1669.25 -2826.75 24) (1669.25 -2826.75 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85675" - "plane" "(3912 240 160) (3912 240 280) (3912 260 280)" + "id" "57677" + "plane" "(1850.27 -3007.77 24) (1533.48 -3324.56 24) (1533.48 -3324.56 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -58582,43 +59836,42 @@ world } editor { - "color" "163 140 0" - "groupid" "218600" + "color" "0 102 155" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218604" + "id" "163574" side { - "id" "85686" - "plane" "(3792 240 488) (3792 260 488) (3852 260 488)" + "id" "57688" + "plane" "(1533.48 -3324.56 -24) (1352.46 -3143.54 -24) (1386.41 -3109.59 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85685" - "plane" "(3792 240 488) (3852 240 488) (3820 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57687" + "plane" "(1352.46 -3143.54 -56) (1533.48 -3324.56 -56) (1550.45 -3307.58 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85684" - "plane" "(3792 260 488) (3792 260 472) (3820 260 472)" + "id" "57686" + "plane" "(1533.48 -3324.56 -56) (1352.46 -3143.54 -56) (1352.46 -3143.54 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -58626,65 +59879,64 @@ world } side { - "id" "85683" - "plane" "(3792 260 488) (3792 240 488) (3792 240 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57685" + "plane" "(1369.43 -3126.57 -56) (1550.45 -3307.58 -56) (1567.42 -3290.61 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-0.707107 0.707107 0 428.609] 0.25" + "vaxis" "[-0.424264 -0.424264 -0.8 -249.148] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85682" - "plane" "(3852 240 488) (3852 260 488) (3820 260 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57684" + "plane" "(1352.46 -3143.54 -56) (1369.43 -3126.57 -56) (1386.41 -3109.59 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85681" - "plane" "(3820 240 472) (3820 260 472) (3792 260 472)" + "id" "57683" + "plane" "(1550.45 -3307.58 -56) (1533.48 -3324.56 -56) (1533.48 -3324.56 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218600" + "color" "0 164 153" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218605" + "id" "163575" side { - "id" "85691" - "plane" "(3792 240 424) (3792 240 472) (3820 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57693" + "plane" "(1533.48 -3324.56 -56) (1352.46 -3143.54 -56) (1369.43 -3126.57 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85690" - "plane" "(3792 260 424) (3820 260 472) (3792 260 472)" + "id" "57692" + "plane" "(1533.48 -3324.56 -88) (1352.46 -3143.54 -88) (1352.46 -3143.54 -56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -58692,98 +59944,97 @@ world } side { - "id" "85689" - "plane" "(3792 240 424) (3792 260 424) (3792 260 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57691" + "plane" "(1352.46 -3143.54 -88) (1533.48 -3324.56 -88) (1550.45 -3307.58 -56)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-0.707107 0.707107 0 428.609] 0.25" + "vaxis" "[-0.424264 -0.424264 -0.8 -249.148] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85688" - "plane" "(3792 260 424) (3792 240 424) (3820 240 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57690" + "plane" "(1369.43 -3126.57 -56) (1352.46 -3143.54 -56) (1352.46 -3143.54 -88)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85687" - "plane" "(3792 240 472) (3792 260 472) (3820 260 472)" + "id" "57689" + "plane" "(1533.48 -3324.56 -88) (1533.48 -3324.56 -56) (1550.45 -3307.58 -56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218600" + "color" "0 242 243" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218606" + "id" "163576" side { - "id" "85697" - "plane" "(3852 240 488) (3852 260 488) (3912 260 488)" + "id" "57699" + "plane" "(1352.46 -3143.54 -24) (1533.48 -3324.56 -24) (1567.42 -3290.61 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85696" - "plane" "(3912 240 488) (3912 240 472) (3884 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57698" + "plane" "(1533.48 -3324.56 0) (1533.48 -3324.56 -24) (1352.46 -3143.54 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85695" - "plane" "(3912 260 488) (3852 260 488) (3884 260 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57697" + "plane" "(1414.69 -3081.31 0) (1386.41 -3109.59 -24) (1567.42 -3290.61 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-0.707107 0.707107 0 428.609] 0.25" + "vaxis" "[-0.606339 -0.606339 -0.514495 571.256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85694" - "plane" "(3912 240 488) (3912 260 488) (3912 260 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57696" + "plane" "(1352.46 -3143.54 0) (1352.46 -3143.54 -24) (1386.41 -3109.59 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85693" - "plane" "(3852 240 488) (3884 240 472) (3884 260 472)" + "id" "57695" + "plane" "(1595.71 -3262.33 0) (1567.42 -3290.61 -24) (1533.48 -3324.56 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -58791,219 +60042,227 @@ world } side { - "id" "85692" - "plane" "(3912 240 472) (3912 260 472) (3884 260 472)" + "id" "57694" + "plane" "(1533.48 -3324.56 0) (1352.46 -3143.54 0) (1414.69 -3081.31 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218600" + "color" "0 224 193" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218607" + "id" "163577" side { - "id" "85702" - "plane" "(3912 240 424) (3884 240 472) (3912 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57705" + "plane" "(1533.48 -3324.56 12) (1352.46 -3143.54 12) (1442.97 -3053.03 12)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85701" - "plane" "(3912 260 424) (3912 260 472) (3884 260 472)" + "id" "57704" + "plane" "(1352.46 -3143.54 0) (1352.46 -3143.54 12) (1533.48 -3324.56 12)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85700" - "plane" "(3912 260 424) (3912 240 424) (3912 240 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57703" + "plane" "(1595.71 -3262.33 0) (1623.99 -3234.05 12) (1442.97 -3053.03 12)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-0.707107 0.707107 0 428.609] 0.25" + "vaxis" "[-0.677285 -0.677285 -0.287348 88.9198] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85699" - "plane" "(3912 240 424) (3912 260 424) (3884 260 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57702" + "plane" "(1442.98 -3053.02 12) (1352.46 -3143.54 12) (1352.46 -3143.54 0)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85698" - "plane" "(3884 240 472) (3884 260 472) (3912 260 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "57701" + "plane" "(1533.48 -3324.56 0) (1533.48 -3324.56 12) (1623.99 -3234.05 12)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57700" + "plane" "(1352.46 -3143.54 0) (1533.48 -3324.56 0) (1595.71 -3262.33 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218600" + "color" "0 110 155" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218608" + "id" "163578" side { - "id" "85708" - "plane" "(3792 240 608) (3792 260 608) (3912 260 608)" + "id" "57711" + "plane" "(1533.48 -3324.56 24) (1352.46 -3143.54 24) (1496.71 -2999.29 24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85707" - "plane" "(3912 240 488) (3912 260 488) (3792 260 488)" + "id" "57710" + "plane" "(1352.46 -3143.54 12) (1352.46 -3143.54 24) (1533.48 -3324.56 24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85706" - "plane" "(3792 240 488) (3792 240 608) (3912 240 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57709" + "plane" "(1623.99 -3234.05 12) (1677.73 -3180.31 24) (1496.71 -2999.29 24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-0.707107 0.707107 0 428.609] 0.25" + "vaxis" "[-0.698454 -0.698454 -0.155962 -66.6939] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85705" - "plane" "(3912 260 488) (3912 260 608) (3792 260 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "57708" + "plane" "(1496.71 -2999.29 24) (1352.46 -3143.54 24) (1352.46 -3143.54 12)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85704" - "plane" "(3792 260 488) (3792 260 608) (3792 240 608)" + "id" "57707" + "plane" "(1533.48 -3324.56 12) (1533.48 -3324.56 24) (1677.73 -3180.31 24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85703" - "plane" "(3912 240 488) (3912 240 608) (3912 260 608)" + "id" "57706" + "plane" "(1352.46 -3143.54 12) (1533.48 -3324.56 12) (1623.99 -3234.05 12)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218600" + "color" "0 148 181" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218614" + "id" "163579" side { - "id" "85714" - "plane" "(3480 240 608) (3480 260 608) (3544 260 608)" + "id" "57717" + "plane" "(1706.02 -3152.02 24) (1525 -2971 24) (1669.25 -2826.75 24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85713" - "plane" "(3544 240 160) (3544 260 160) (3480 260 160)" + "id" "57716" + "plane" "(1850.27 -3007.77 12) (1850.27 -3007.77 24) (1669.25 -2826.75 24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85712" - "plane" "(3480 240 160) (3480 240 608) (3544 240 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57715" + "plane" "(1525 -2971 24) (1706.02 -3152.02 24) (1759.76 -3098.28 12)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 -0.707107 0 -428.609] 0.25" + "vaxis" "[0.698454 0.698454 -0.155962 -20.9252] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85711" - "plane" "(3544 260 160) (3544 260 608) (3480 260 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57714" + "plane" "(1669.25 -2826.75 12) (1669.25 -2826.75 24) (1525 -2971 24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85710" - "plane" "(3480 260 160) (3480 260 608) (3480 240 608)" + "id" "57713" + "plane" "(1706.02 -3152.02 24) (1850.27 -3007.77 24) (1850.27 -3007.77 12)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59011,76 +60270,75 @@ world } side { - "id" "85709" - "plane" "(3544 240 160) (3544 240 608) (3544 260 608)" + "id" "57712" + "plane" "(1578.74 -2917.26 12) (1759.76 -3098.28 12) (1850.27 -3007.77 12)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218613" + "color" "0 198 203" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218615" + "id" "163580" side { - "id" "85720" - "plane" "(3664 240 608) (3664 260 608) (3728 260 608)" + "id" "57723" + "plane" "(1759.76 -3098.28 12) (1578.74 -2917.26 12) (1669.25 -2826.75 12)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85719" - "plane" "(3728 240 160) (3728 260 160) (3664 260 160)" + "id" "57722" + "plane" "(1850.27 -3007.77 0) (1850.27 -3007.77 12) (1669.25 -2826.75 12)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85718" - "plane" "(3664 240 160) (3664 240 608) (3728 240 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57721" + "plane" "(1578.74 -2917.26 12) (1759.76 -3098.28 12) (1788.04 -3070 0)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 -0.707107 0 -428.609] 0.25" + "vaxis" "[0.677285 0.677285 -0.287348 -114.971] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85717" - "plane" "(3728 260 160) (3728 260 608) (3664 260 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57720" + "plane" "(1669.25 -2826.75 0) (1669.25 -2826.75 12) (1578.74 -2917.26 12)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85716" - "plane" "(3664 260 160) (3664 260 608) (3664 240 608)" + "id" "57719" + "plane" "(1759.76 -3098.28 12) (1850.27 -3007.77 12) (1850.27 -3007.77 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59088,76 +60346,75 @@ world } side { - "id" "85715" - "plane" "(3728 240 160) (3728 240 608) (3728 260 608)" + "id" "57718" + "plane" "(1607.02 -2888.98 0) (1788.04 -3070 0) (1850.27 -3007.77 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218613" + "color" "0 120 209" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218616" + "id" "163581" side { - "id" "85726" - "plane" "(3544 240 280) (3544 260 280) (3664 260 280)" + "id" "57729" + "plane" "(1635.31 -2860.69 -24) (1816.33 -3041.71 -24) (1850.27 -3007.77 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85725" - "plane" "(3664 240 160) (3664 260 160) (3544 260 160)" + "id" "57728" + "plane" "(1669.25 -2826.75 0) (1669.25 -2826.75 -24) (1850.27 -3007.77 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85724" - "plane" "(3544 240 160) (3544 240 280) (3664 240 280)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57727" + "plane" "(1788.04 -3070 0) (1816.33 -3041.71 -24) (1635.31 -2860.69 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 -0.707107 0 -428.609] 0.25" + "vaxis" "[0.606339 0.606339 -0.514495 -469.39] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85723" - "plane" "(3664 260 160) (3664 260 280) (3544 260 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57726" + "plane" "(1607.02 -2888.98 0) (1635.31 -2860.69 -24) (1669.25 -2826.75 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85722" - "plane" "(3544 260 160) (3544 260 280) (3544 240 280)" + "id" "57725" + "plane" "(1850.27 -3007.77 0) (1850.27 -3007.77 -24) (1816.33 -3041.71 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59165,54 +60422,53 @@ world } side { - "id" "85721" - "plane" "(3664 240 160) (3664 240 280) (3664 260 280)" + "id" "57724" + "plane" "(1788.04 -3070 0) (1607.02 -2888.98 0) (1669.25 -2826.75 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218613" + "color" "0 218 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218617" + "id" "163582" side { - "id" "85732" - "plane" "(3544 240 488) (3544 260 488) (3604 260 488)" + "id" "57735" + "plane" "(1816.33 -3041.71 -24) (1635.31 -2860.69 -24) (1669.25 -2826.75 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85731" - "plane" "(3544 240 488) (3604 240 488) (3572 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57734" + "plane" "(1652.28 -2843.72 -56) (1833.3 -3024.74 -56) (1850.27 -3007.77 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85730" - "plane" "(3544 260 488) (3544 260 472) (3572 260 472)" + "id" "57733" + "plane" "(1669.25 -2826.75 -56) (1850.27 -3007.77 -56) (1850.27 -3007.77 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59220,65 +60476,64 @@ world } side { - "id" "85729" - "plane" "(3544 260 488) (3544 240 488) (3544 240 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57732" + "plane" "(1833.3 -3024.74 -56) (1652.28 -2843.72 -56) (1635.31 -2860.69 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 -0.707107 0 -428.609] 0.25" + "vaxis" "[0.424264 0.424264 -0.8 -365.251] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85728" - "plane" "(3604 240 488) (3604 260 488) (3572 260 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57731" + "plane" "(1652.28 -2843.72 -56) (1669.25 -2826.75 -56) (1669.25 -2826.75 -24)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85727" - "plane" "(3572 240 472) (3572 260 472) (3544 260 472)" + "id" "57730" + "plane" "(1850.27 -3007.77 -56) (1833.3 -3024.74 -56) (1816.33 -3041.71 -24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218613" + "color" "0 144 233" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218618" + "id" "163583" side { - "id" "85737" - "plane" "(3544 240 424) (3544 240 472) (3572 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57740" + "plane" "(1833.3 -3024.74 -56) (1652.28 -2843.72 -56) (1669.25 -2826.75 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85736" - "plane" "(3544 260 424) (3572 260 472) (3544 260 472)" + "id" "57739" + "plane" "(1669.25 -2826.75 -88) (1850.27 -3007.77 -88) (1850.27 -3007.77 -56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59286,87 +60541,86 @@ world } side { - "id" "85735" - "plane" "(3544 240 424) (3544 260 424) (3544 260 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "57738" + "plane" "(1850.27 -3007.77 -88) (1669.25 -2826.75 -88) (1652.28 -2843.72 -56)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 -0.707107 0 -428.609] 0.25" + "vaxis" "[0.424264 0.424264 -0.8 -365.251] 0.25" + "rotation" "180" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85734" - "plane" "(3544 260 424) (3544 240 424) (3572 240 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57737" + "plane" "(1669.25 -2826.75 -88) (1669.25 -2826.75 -56) (1652.28 -2843.72 -56)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85733" - "plane" "(3544 240 472) (3544 260 472) (3572 260 472)" + "id" "57736" + "plane" "(1833.3 -3024.74 -56) (1850.27 -3007.77 -56) (1850.27 -3007.77 -88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218613" + "color" "0 130 255" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218619" + "id" "163584" side { - "id" "85743" - "plane" "(3604 240 488) (3604 260 488) (3664 260 488)" + "id" "57746" + "plane" "(1444.39 -3077.07 110) (1404.79 -3116.67 96) (1392.06 -3103.94 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85742" - "plane" "(3664 240 488) (3664 240 472) (3636 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57745" + "plane" "(1431.66 -3064.34 48) (1392.06 -3103.94 48) (1404.79 -3116.67 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85741" - "plane" "(3664 260 488) (3604 260 488) (3636 260 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57744" + "plane" "(1431.66 -3064.34 110) (1392.06 -3103.94 96) (1392.06 -3103.94 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85740" - "plane" "(3664 240 488) (3664 260 488) (3664 260 472)" + "id" "57743" + "plane" "(1444.39 -3077.07 48) (1404.79 -3116.67 48) (1404.79 -3116.67 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59374,10 +60628,10 @@ world } side { - "id" "85739" - "plane" "(3604 240 488) (3636 240 472) (3636 260 472)" + "id" "57742" + "plane" "(1431.66 -3064.34 48) (1444.39 -3077.07 48) (1444.39 -3077.07 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59385,54 +60639,53 @@ world } side { - "id" "85738" - "plane" "(3664 240 472) (3664 260 472) (3636 260 472)" + "id" "57741" + "plane" "(1404.79 -3116.67 48) (1392.06 -3103.94 48) (1392.06 -3103.94 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218613" + "color" "0 172 205" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218620" + "id" "163585" side { - "id" "85748" - "plane" "(3664 240 424) (3636 240 472) (3664 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57752" + "plane" "(1404.79 -3116.67 96) (1365.19 -3156.26 90) (1352.46 -3143.54 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85747" - "plane" "(3664 260 424) (3664 260 472) (3636 260 472)" + "id" "57751" + "plane" "(1392.06 -3103.94 48) (1352.46 -3143.54 48) (1365.19 -3156.26 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85746" - "plane" "(3664 260 424) (3664 240 424) (3664 240 472)" + "id" "57750" + "plane" "(1365.19 -3156.26 48) (1352.46 -3143.54 48) (1352.46 -3143.54 90)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59440,10 +60693,21 @@ world } side { - "id" "85745" - "plane" "(3664 240 424) (3664 260 424) (3636 260 472)" + "id" "57749" + "plane" "(1392.06 -3103.94 96) (1352.46 -3143.54 90) (1352.46 -3143.54 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57748" + "plane" "(1404.79 -3116.67 48) (1365.19 -3156.26 48) (1365.19 -3156.26 90)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59451,153 +60715,151 @@ world } side { - "id" "85744" - "plane" "(3636 240 472) (3636 260 472) (3664 260 472)" + "id" "57747" + "plane" "(1392.06 -3103.94 48) (1404.79 -3116.67 48) (1404.79 -3116.67 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218613" + "color" "0 158 195" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218621" + "id" "163586" side { - "id" "85754" - "plane" "(3544 240 608) (3544 260 608) (3664 260 608)" + "id" "57758" + "plane" "(1590.05 -2905.95 110) (1629.65 -2866.35 96) (1642.38 -2879.08 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85753" - "plane" "(3664 240 488) (3664 260 488) (3544 260 488)" + "id" "57757" + "plane" "(1602.78 -2918.68 48) (1642.38 -2879.08 48) (1629.65 -2866.35 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85752" - "plane" "(3544 240 488) (3544 240 608) (3664 240 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57756" + "plane" "(1590.05 -2905.95 48) (1629.65 -2866.35 48) (1629.65 -2866.35 96)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85751" - "plane" "(3664 260 488) (3664 260 608) (3544 260 608)" + "id" "57755" + "plane" "(1602.78 -2918.68 110) (1642.38 -2879.08 96) (1642.38 -2879.08 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85750" - "plane" "(3544 260 488) (3544 260 608) (3544 240 608)" + "id" "57754" + "plane" "(1602.78 -2918.68 48) (1590.05 -2905.95 48) (1590.05 -2905.95 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85749" - "plane" "(3664 240 488) (3664 240 608) (3664 260 608)" + "id" "57753" + "plane" "(1629.65 -2866.35 48) (1642.38 -2879.08 48) (1642.38 -2879.08 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218613" + "color" "0 188 181" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218627" + "id" "163587" side { - "id" "85760" - "plane" "(3232 240 608) (3232 260 608) (3296 260 608)" + "id" "57764" + "plane" "(1629.65 -2866.35 96) (1669.25 -2826.75 90) (1681.98 -2839.48 90)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85759" - "plane" "(3296 240 160) (3296 260 160) (3232 260 160)" + "id" "57763" + "plane" "(1642.38 -2879.08 48) (1681.98 -2839.48 48) (1669.25 -2826.75 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85758" - "plane" "(3232 240 160) (3232 240 608) (3296 240 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57762" + "plane" "(1669.25 -2826.75 48) (1681.98 -2839.48 48) (1681.98 -2839.48 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85757" - "plane" "(3296 260 160) (3296 260 608) (3232 260 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57761" + "plane" "(1629.65 -2866.35 48) (1669.25 -2826.75 48) (1669.25 -2826.75 90)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85756" - "plane" "(3232 260 160) (3232 260 608) (3232 240 608)" + "id" "57760" + "plane" "(1642.38 -2879.08 96) (1681.98 -2839.48 90) (1681.98 -2839.48 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59605,10 +60867,10 @@ world } side { - "id" "85755" - "plane" "(3296 240 160) (3296 240 608) (3296 260 608)" + "id" "57759" + "plane" "(1642.38 -2879.08 48) (1629.65 -2866.35 48) (1629.65 -2866.35 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59616,54 +60878,53 @@ world } editor { - "color" "163 140 0" - "groupid" "218626" + "color" "0 222 207" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218628" + "id" "163588" side { - "id" "85766" - "plane" "(3416 240 608) (3416 260 608) (3480 260 608)" + "id" "57770" + "plane" "(1510.86 -2985.14 122) (1550.45 -2945.55 118) (1563.18 -2958.27 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85765" - "plane" "(3480 240 160) (3480 260 160) (3416 260 160)" + "id" "57769" + "plane" "(1523.58 -2997.87 48) (1563.18 -2958.27 48) (1550.45 -2945.55 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85764" - "plane" "(3416 240 160) (3416 240 608) (3480 240 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57768" + "plane" "(1510.86 -2985.14 48) (1550.45 -2945.55 48) (1550.45 -2945.55 118)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85763" - "plane" "(3480 260 160) (3480 260 608) (3416 260 608)" + "id" "57767" + "plane" "(1523.58 -2997.87 122) (1563.18 -2958.27 118) (1563.18 -2958.27 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59671,10 +60932,10 @@ world } side { - "id" "85762" - "plane" "(3416 260 160) (3416 260 608) (3416 240 608)" + "id" "57766" + "plane" "(1523.58 -2997.87 48) (1510.86 -2985.14 48) (1510.86 -2985.14 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59682,10 +60943,10 @@ world } side { - "id" "85761" - "plane" "(3480 240 160) (3480 240 608) (3480 260 608)" + "id" "57765" + "plane" "(1550.45 -2945.55 48) (1563.18 -2958.27 48) (1563.18 -2958.27 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59693,54 +60954,53 @@ world } editor { - "color" "163 140 0" - "groupid" "218626" + "color" "0 216 121" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218629" + "id" "163589" side { - "id" "85772" - "plane" "(3296 240 280) (3296 260 280) (3416 260 280)" + "id" "57776" + "plane" "(1523.58 -2997.87 122) (1483.99 -3037.47 118) (1471.26 -3024.74 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85771" - "plane" "(3416 240 160) (3416 260 160) (3296 260 160)" + "id" "57775" + "plane" "(1510.86 -2985.14 48) (1471.26 -3024.74 48) (1483.99 -3037.47 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85770" - "plane" "(3296 240 160) (3296 240 280) (3416 240 280)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57774" + "plane" "(1510.86 -2985.14 122) (1471.26 -3024.74 118) (1471.26 -3024.74 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85769" - "plane" "(3416 260 160) (3416 260 280) (3296 260 280)" + "id" "57773" + "plane" "(1523.58 -2997.87 48) (1483.99 -3037.47 48) (1483.99 -3037.47 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59748,10 +61008,10 @@ world } side { - "id" "85768" - "plane" "(3296 260 160) (3296 260 280) (3296 240 280)" + "id" "57772" + "plane" "(1510.86 -2985.14 48) (1523.58 -2997.87 48) (1523.58 -2997.87 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59759,10 +61019,10 @@ world } side { - "id" "85767" - "plane" "(3416 240 160) (3416 240 280) (3416 260 280)" + "id" "57771" + "plane" "(1483.99 -3037.47 48) (1471.26 -3024.74 48) (1471.26 -3024.74 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59770,54 +61030,53 @@ world } editor { - "color" "163 140 0" - "groupid" "218626" + "color" "0 154 147" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218630" + "id" "163590" side { - "id" "85778" - "plane" "(3296 240 488) (3296 260 488) (3356 260 488)" + "id" "57782" + "plane" "(1483.99 -3037.47 118) (1444.39 -3077.07 110) (1431.66 -3064.34 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85777" - "plane" "(3296 240 488) (3356 240 488) (3324 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57781" + "plane" "(1471.26 -3024.74 48) (1431.66 -3064.34 48) (1444.39 -3077.07 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85776" - "plane" "(3296 260 488) (3296 260 472) (3324 260 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57780" + "plane" "(1471.26 -3024.74 118) (1431.66 -3064.34 110) (1431.66 -3064.34 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85775" - "plane" "(3296 260 488) (3296 240 488) (3296 240 472)" + "id" "57779" + "plane" "(1483.99 -3037.47 48) (1444.39 -3077.07 48) (1444.39 -3077.07 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59825,10 +61084,10 @@ world } side { - "id" "85774" - "plane" "(3356 240 488) (3356 260 488) (3324 260 472)" + "id" "57778" + "plane" "(1444.39 -3077.07 48) (1431.66 -3064.34 48) (1431.66 -3064.34 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59836,54 +61095,64 @@ world } side { - "id" "85773" - "plane" "(3324 240 472) (3324 260 472) (3296 260 472)" + "id" "57777" + "plane" "(1471.26 -3024.74 48) (1483.99 -3037.47 48) (1483.99 -3037.47 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218626" + "color" "0 184 229" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218631" + "id" "163591" side { - "id" "85783" - "plane" "(3296 240 424) (3296 240 472) (3324 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57788" + "plane" "(1550.45 -2945.55 118) (1590.05 -2905.95 110) (1602.78 -2918.68 110)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85782" - "plane" "(3296 260 424) (3324 260 472) (3296 260 472)" + "id" "57787" + "plane" "(1563.18 -2958.27 48) (1602.78 -2918.68 48) (1590.05 -2905.95 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57786" + "plane" "(1550.45 -2945.55 48) (1590.05 -2905.95 48) (1590.05 -2905.95 110)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 672] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85781" - "plane" "(3296 240 424) (3296 260 424) (3296 260 472)" + "id" "57785" + "plane" "(1563.18 -2958.27 118) (1602.78 -2918.68 110) (1602.78 -2918.68 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59891,10 +61160,10 @@ world } side { - "id" "85780" - "plane" "(3296 260 424) (3296 240 424) (3324 240 472)" + "id" "57784" + "plane" "(1590.05 -2905.95 48) (1602.78 -2918.68 48) (1602.78 -2918.68 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59902,54 +61171,53 @@ world } side { - "id" "85779" - "plane" "(3296 240 472) (3296 260 472) (3324 260 472)" + "id" "57783" + "plane" "(1563.18 -2958.27 48) (1550.45 -2945.55 48) (1550.45 -2945.55 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218626" + "color" "0 210 247" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218632" + "id" "163592" side { - "id" "85789" - "plane" "(3356 240 488) (3356 260 488) (3416 260 488)" + "id" "57794" + "plane" "(1573.08 -3284.96 96) (1533.48 -3324.56 90) (1520.76 -3311.83 90)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85788" - "plane" "(3416 240 488) (3416 240 472) (3388 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57793" + "plane" "(1560.35 -3272.23 48) (1520.76 -3311.83 48) (1533.48 -3324.56 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85787" - "plane" "(3416 260 488) (3356 260 488) (3388 260 472)" + "id" "57792" + "plane" "(1533.48 -3324.56 48) (1520.76 -3311.83 48) (1520.76 -3311.83 90)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59957,21 +61225,21 @@ world } side { - "id" "85786" - "plane" "(3416 240 488) (3416 260 488) (3416 260 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "57791" + "plane" "(1560.35 -3272.23 96) (1520.76 -3311.83 90) (1520.76 -3311.83 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85785" - "plane" "(3356 240 488) (3388 240 472) (3388 260 472)" + "id" "57790" + "plane" "(1573.08 -3284.96 48) (1533.48 -3324.56 48) (1533.48 -3324.56 90)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -59979,54 +61247,64 @@ world } side { - "id" "85784" - "plane" "(3416 240 472) (3416 260 472) (3388 260 472)" + "id" "57789" + "plane" "(1560.35 -3272.23 48) (1573.08 -3284.96 48) (1573.08 -3284.96 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218626" + "color" "0 244 197" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218633" + "id" "163593" side { - "id" "85794" - "plane" "(3416 240 424) (3388 240 472) (3416 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57800" + "plane" "(1612.68 -3245.36 110) (1573.08 -3284.96 96) (1560.35 -3272.23 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85793" - "plane" "(3416 260 424) (3416 260 472) (3388 260 472)" + "id" "57799" + "plane" "(1599.95 -3232.63 48) (1560.35 -3272.23 48) (1573.08 -3284.96 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57798" + "plane" "(1599.95 -3232.63 110) (1560.35 -3272.23 96) (1560.35 -3272.23 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85792" - "plane" "(3416 260 424) (3416 240 424) (3416 240 472)" + "id" "57797" + "plane" "(1612.68 -3245.36 48) (1573.08 -3284.96 48) (1573.08 -3284.96 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60034,10 +61312,10 @@ world } side { - "id" "85791" - "plane" "(3416 240 424) (3416 260 424) (3388 260 472)" + "id" "57796" + "plane" "(1599.95 -3232.63 48) (1612.68 -3245.36 48) (1612.68 -3245.36 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60045,142 +61323,140 @@ world } side { - "id" "85790" - "plane" "(3388 240 472) (3388 260 472) (3416 260 472)" + "id" "57795" + "plane" "(1573.08 -3284.96 48) (1560.35 -3272.23 48) (1560.35 -3272.23 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218626" + "color" "0 202 159" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218634" + "id" "163594" side { - "id" "85800" - "plane" "(3296 240 608) (3296 260 608) (3416 260 608)" + "id" "57806" + "plane" "(1652.28 -3205.76 118) (1612.68 -3245.36 110) (1599.95 -3232.63 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85799" - "plane" "(3416 240 488) (3416 260 488) (3296 260 488)" + "id" "57805" + "plane" "(1639.55 -3193.03 48) (1599.95 -3232.63 48) (1612.68 -3245.36 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85798" - "plane" "(3296 240 488) (3296 240 608) (3416 240 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57804" + "plane" "(1639.55 -3193.03 118) (1599.95 -3232.63 110) (1599.95 -3232.63 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85797" - "plane" "(3416 260 488) (3416 260 608) (3296 260 608)" + "id" "57803" + "plane" "(1652.28 -3205.76 48) (1612.68 -3245.36 48) (1612.68 -3245.36 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85796" - "plane" "(3296 260 488) (3296 260 608) (3296 240 608)" + "id" "57802" + "plane" "(1612.68 -3245.36 48) (1599.95 -3232.63 48) (1599.95 -3232.63 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85795" - "plane" "(3416 240 488) (3416 240 608) (3416 260 608)" + "id" "57801" + "plane" "(1639.55 -3193.03 48) (1652.28 -3205.76 48) (1652.28 -3205.76 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218626" + "color" "0 128 129" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218640" + "id" "163595" side { - "id" "85806" - "plane" "(2984 240 608) (2984 260 608) (3048 260 608)" + "id" "57812" + "plane" "(1691.88 -3166.16 122) (1652.28 -3205.76 118) (1639.55 -3193.03 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85805" - "plane" "(3048 240 160) (3048 260 160) (2984 260 160)" + "id" "57811" + "plane" "(1679.15 -3153.44 48) (1639.55 -3193.03 48) (1652.28 -3205.76 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85804" - "plane" "(2984 240 160) (2984 240 608) (3048 240 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57810" + "plane" "(1679.15 -3153.44 122) (1639.55 -3193.03 118) (1639.55 -3193.03 48)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85803" - "plane" "(3048 260 160) (3048 260 608) (2984 260 608)" + "id" "57809" + "plane" "(1691.88 -3166.16 48) (1652.28 -3205.76 48) (1652.28 -3205.76 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60188,10 +61464,10 @@ world } side { - "id" "85802" - "plane" "(2984 260 160) (2984 260 608) (2984 240 608)" + "id" "57808" + "plane" "(1679.15 -3153.44 48) (1691.88 -3166.16 48) (1691.88 -3166.16 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60199,10 +61475,10 @@ world } side { - "id" "85801" - "plane" "(3048 240 160) (3048 240 608) (3048 260 608)" + "id" "57807" + "plane" "(1652.28 -3205.76 48) (1639.55 -3193.03 48) (1639.55 -3193.03 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60210,54 +61486,53 @@ world } editor { - "color" "163 140 0" - "groupid" "218639" + "color" "0 146 227" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218641" + "id" "163596" side { - "id" "85812" - "plane" "(3168 240 608) (3168 260 608) (3232 260 608)" + "id" "57818" + "plane" "(1679.15 -3153.44 122) (1718.75 -3113.84 118) (1731.47 -3126.57 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85811" - "plane" "(3232 240 160) (3232 260 160) (3168 260 160)" + "id" "57817" + "plane" "(1691.88 -3166.16 48) (1731.47 -3126.57 48) (1718.75 -3113.84 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85810" - "plane" "(3168 240 160) (3168 240 608) (3232 240 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57816" + "plane" "(1679.15 -3153.44 48) (1718.75 -3113.84 48) (1718.75 -3113.84 118)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85809" - "plane" "(3232 260 160) (3232 260 608) (3168 260 608)" + "id" "57815" + "plane" "(1691.88 -3166.16 122) (1731.47 -3126.57 118) (1731.47 -3126.57 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60265,10 +61540,10 @@ world } side { - "id" "85808" - "plane" "(3168 260 160) (3168 260 608) (3168 240 608)" + "id" "57814" + "plane" "(1691.88 -3166.16 48) (1679.15 -3153.44 48) (1679.15 -3153.44 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60276,10 +61551,10 @@ world } side { - "id" "85807" - "plane" "(3232 240 160) (3232 240 608) (3232 260 608)" + "id" "57813" + "plane" "(1718.75 -3113.84 48) (1731.47 -3126.57 48) (1731.47 -3126.57 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60287,54 +61562,53 @@ world } editor { - "color" "163 140 0" - "groupid" "218639" + "color" "0 124 173" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218642" + "id" "163597" side { - "id" "85818" - "plane" "(3048 240 280) (3048 260 280) (3168 260 280)" + "id" "57824" + "plane" "(1718.75 -3113.84 118) (1758.34 -3074.24 110) (1771.07 -3086.97 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85817" - "plane" "(3168 240 160) (3168 260 160) (3048 260 160)" + "id" "57823" + "plane" "(1731.47 -3126.57 48) (1771.07 -3086.97 48) (1758.34 -3074.24 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85816" - "plane" "(3048 240 160) (3048 240 280) (3168 240 280)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57822" + "plane" "(1718.75 -3113.84 48) (1758.34 -3074.24 48) (1758.34 -3074.24 110)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85815" - "plane" "(3168 260 160) (3168 260 280) (3048 260 280)" + "id" "57821" + "plane" "(1731.47 -3126.57 118) (1771.07 -3086.97 110) (1771.07 -3086.97 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60342,10 +61616,10 @@ world } side { - "id" "85814" - "plane" "(3048 260 160) (3048 260 280) (3048 240 280)" + "id" "57820" + "plane" "(1758.34 -3074.24 48) (1771.07 -3086.97 48) (1771.07 -3086.97 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60353,10 +61627,10 @@ world } side { - "id" "85813" - "plane" "(3168 240 160) (3168 240 280) (3168 260 280)" + "id" "57819" + "plane" "(1731.47 -3126.57 48) (1718.75 -3113.84 48) (1718.75 -3113.84 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60364,120 +61638,118 @@ world } editor { - "color" "163 140 0" - "groupid" "218639" + "color" "0 218 163" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218643" + "id" "163598" side { - "id" "85824" - "plane" "(3048 240 608) (3048 260 608) (3168 260 608)" + "id" "57830" + "plane" "(1758.34 -3074.24 110) (1797.94 -3034.64 96) (1810.67 -3047.37 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85823" - "plane" "(3168 240 488) (3168 260 488) (3048 260 488)" + "id" "57829" + "plane" "(1771.07 -3086.97 48) (1810.67 -3047.37 48) (1797.94 -3034.64 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85822" - "plane" "(3048 240 488) (3048 240 608) (3168 240 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57828" + "plane" "(1758.34 -3074.24 48) (1797.94 -3034.64 48) (1797.94 -3034.64 96)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85821" - "plane" "(3168 260 488) (3168 260 608) (3048 260 608)" + "id" "57827" + "plane" "(1771.07 -3086.97 110) (1810.67 -3047.37 96) (1810.67 -3047.37 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85820" - "plane" "(3048 260 488) (3048 260 608) (3048 240 608)" + "id" "57826" + "plane" "(1771.07 -3086.97 48) (1758.34 -3074.24 48) (1758.34 -3074.24 110)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85819" - "plane" "(3168 240 488) (3168 240 608) (3168 260 608)" + "id" "57825" + "plane" "(1797.94 -3034.64 48) (1810.67 -3047.37 48) (1810.67 -3047.37 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218639" + "color" "0 156 189" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218644" + "id" "163599" side { - "id" "85829" - "plane" "(3048 240 424) (3048 240 472) (3076 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57836" + "plane" "(1797.94 -3034.64 96) (1837.54 -2995.04 90) (1850.27 -3007.77 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85828" - "plane" "(3048 260 424) (3076 260 472) (3048 260 472)" + "id" "57835" + "plane" "(1810.67 -3047.37 48) (1850.27 -3007.77 48) (1837.54 -2995.04 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85827" - "plane" "(3048 240 424) (3048 260 424) (3048 260 472)" + "id" "57834" + "plane" "(1837.54 -2995.04 48) (1850.27 -3007.77 48) (1850.27 -3007.77 90)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60485,10 +61757,21 @@ world } side { - "id" "85826" - "plane" "(3048 260 424) (3048 240 424) (3076 240 472)" + "id" "57833" + "plane" "(1797.94 -3034.64 48) (1837.54 -2995.04 48) (1837.54 -2995.04 90)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57832" + "plane" "(1810.67 -3047.37 96) (1850.27 -3007.77 90) (1850.27 -3007.77 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60496,131 +61779,212 @@ world } side { - "id" "85825" - "plane" "(3048 240 472) (3048 260 472) (3076 260 472)" + "id" "57831" + "plane" "(1810.67 -3047.37 48) (1797.94 -3034.64 48) (1797.94 -3034.64 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218639" + "color" "0 210 123" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218645" + "id" "163600" side { - "id" "85835" - "plane" "(3048 240 488) (3048 260 488) (3108 260 488)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "57842" + "plane" "(1520.76 -3311.83 64) (1365.19 -3156.26 64) (1681.98 -2839.48 64)" + "material" "STONE/INFFLRD_BLEND_DIRT" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 83.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1520.76 -3311.84 64]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 8.72384 22.7896 25.6621 20.1907 4.35275 0 0" + "row1" "0 0 10.1827 25.5304 27.147 22.7175 7.43949 0 0" + "row2" "0 0 11.7292 25.8815 27.6696 24.1757 8.70917 0 0" + "row3" "0 0 11.4823 25.7711 27.2674 19.7582 9.54561 0 0" + "row4" "0 0 5.8032 21.0732 22.2416 19.6183 3.99163 0 0" + "row5" "0 0 9.91635 26.8722 26.5464 24.7575 9.19771 0 0" + "row6" "0 0 9.46894 27.9154 28.3562 24.2906 8.30138 0 0" + "row7" "0 0 9.1328 28.1661 29.6615 23.2554 7.28686 0 0" + "row8" "0 0 9.75365 26.478 29.437 21.1696 5.54286 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "255 130 255 237.5 255 218.5 180.5 92.5 217.5" + "row1" "230 149.5 142.5 104.5 123.5 114 57 57 241.5" + "row2" "176 10.5 66.5 47.5 66.5 28.5 28.5 0 255" + "row3" "185.5 0 95 95 66.5 38 57 0 255" + "row4" "255 130.5 180.5 161.5 142.5 114 152 52 255" + "row5" "255 1 66.5 66.5 66.5 38 57 1 255" + "row6" "207 0 19 47.5 47.5 28.5 19 41.5 191.5" + "row7" "255 0 76 76 95 66.5 76 23.5 255" + "row8" "180.5 209 171 171 142.5 161.5 152 237.5 255" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "85834" - "plane" "(3048 240 488) (3108 240 488) (3076 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "57841" + "plane" "(1365.19 -3156.26 48) (1520.76 -3311.83 48) (1837.54 -2995.04 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85833" - "plane" "(3048 260 488) (3048 260 472) (3076 260 472)" + "id" "57840" + "plane" "(1520.76 -3311.83 48) (1365.19 -3156.26 48) (1365.19 -3156.26 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85832" - "plane" "(3048 260 488) (3048 240 488) (3048 240 472)" + "id" "57839" + "plane" "(1681.98 -2839.48 48) (1837.54 -2995.04 48) (1837.54 -2995.04 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85831" - "plane" "(3108 240 488) (3108 260 488) (3076 260 472)" + "id" "57838" + "plane" "(1365.19 -3156.26 48) (1681.98 -2839.48 48) (1681.98 -2839.48 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85830" - "plane" "(3076 240 472) (3076 260 472) (3048 260 472)" + "id" "57837" + "plane" "(1837.54 -2995.04 48) (1520.76 -3311.83 48) (1520.76 -3311.83 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218639" + "color" "0 236 241" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218646" + "id" "164268" side { - "id" "85841" - "plane" "(3108 240 488) (3108 260 488) (3168 260 488)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "58094" + "plane" "(720 -2272 72) (720 -2240 72) (1008 -2240 72)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85840" - "plane" "(3168 240 488) (3168 240 472) (3140 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "58093" + "plane" "(720 -2240 64) (720 -2272 64) (1008 -2272 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" "85839" - "plane" "(3168 260 488) (3108 260 488) (3140 260 472)" + "id" "58092" + "plane" "(720 -2272 64) (720 -2240 64) (720 -2240 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60628,8 +61992,8 @@ world } side { - "id" "85838" - "plane" "(3168 240 488) (3168 260 488) (3168 260 472)" + "id" "58091" + "plane" "(1008 -2240 64) (1008 -2272 64) (1008 -2272 72)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -60639,10 +62003,10 @@ world } side { - "id" "85837" - "plane" "(3108 240 488) (3140 240 472) (3140 260 472)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "58090" + "plane" "(720 -2240 64) (1008 -2240 64) (1008 -2240 72)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60650,52 +62014,52 @@ world } side { - "id" "85836" - "plane" "(3168 240 472) (3168 260 472) (3140 260 472)" + "id" "58089" + "plane" "(1008 -2272 64) (720 -2272 64) (720 -2272 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218639" + "color" "0 103 232" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218647" + "id" "164281" side { - "id" "85846" - "plane" "(3168 240 424) (3140 240 472) (3168 240 472)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 520.321] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "58136" + "plane" "(1008 -2112 64) (1008 -1792 64) (1024 -1792 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85845" - "plane" "(3168 260 424) (3168 260 472) (3140 260 472)" + "id" "58135" + "plane" "(1008 -1792 -128) (1008 -2112 -128) (1024 -2112 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85844" - "plane" "(3168 260 424) (3168 240 424) (3168 240 472)" + "id" "58134" + "plane" "(1008 -2112 -128) (1008 -1792 -128) (1008 -1792 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -60705,9 +62069,9 @@ world } side { - "id" "85843" - "plane" "(3168 240 424) (3168 260 424) (3140 260 472)" - "material" "TOOLS/TOOLSNODRAW" + "id" "58133" + "plane" "(1024 -1792 -128) (1024 -2112 -128) (1024 -2112 64)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -60716,54 +62080,65 @@ world } side { - "id" "85842" - "plane" "(3140 240 472) (3140 260 472) (3168 260 472)" + "id" "58132" + "plane" "(1008 -1792 -128) (1024 -1792 -128) (1024 -1792 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58131" + "plane" "(1024 -2112 -128) (1008 -2112 -128) (1008 -2112 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" "163 140 0" - "groupid" "218639" + "color" "0 103 232" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218653" + "id" "164311" side { - "id" "85851" - "plane" "(2700 432 984) (2700 772 984) (2692 780 984)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "58184" + "plane" "(720 -2624 80) (720 -2272 80) (1008 -2272 80)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85850" - "plane" "(2692 424 984) (2700 432 992) (2700 432 984)" + "id" "58183" + "plane" "(720 -2272 64) (720 -2624 64) (1008 -2624 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85849" - "plane" "(2700 772 984) (2700 772 992) (2692 780 984)" + "id" "58182" + "plane" "(720 -2624 64) (720 -2272 64) (720 -2272 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60771,54 +62146,76 @@ world } side { - "id" "85848" - "plane" "(2692 424 984) (2692 780 984) (2700 772 992)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0.707107 0 0.707107 18.699] 0.25" - "vaxis" "[0 1 0 67] 0.25" + "id" "58181" + "plane" "(1008 -2272 64) (1008 -2624 64) (1008 -2624 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85847" - "plane" "(2700 772 984) (2700 432 984) (2700 432 992)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "58180" + "plane" "(720 -2272 64) (1008 -2272 64) (1008 -2272 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor + side { - "color" "163 140 0" - "groupid" "218652" + "id" "58179" + "plane" "(1008 -2624 64) (720 -2624 64) (720 -2624 80)" + "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 103 232" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218654" + "id" "164386" side { - "id" "85856" - "plane" "(2700 772 984) (2700 432 984) (2692 424 984)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "58196" + "plane" "(384 -2624 80) (384 -2320 80) (720 -2320 80)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85855" - "plane" "(2700 432 984) (2700 432 976) (2692 424 984)" + "id" "58195" + "plane" "(384 -2320 64) (384 -2624 64) (720 -2624 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58194" + "plane" "(384 -2624 64) (384 -2320 64) (384 -2320 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60826,10 +62223,10 @@ world } side { - "id" "85854" - "plane" "(2692 780 984) (2700 772 976) (2700 772 984)" + "id" "58193" + "plane" "(720 -2320 64) (720 -2624 64) (720 -2624 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60837,21 +62234,21 @@ world } side { - "id" "85853" - "plane" "(2692 424 984) (2700 432 976) (2700 772 976)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -48] 0.25" - "vaxis" "[0 1 0 67] 0.25" - "rotation" "90" + "id" "58192" + "plane" "(384 -2320 64) (720 -2320 64) (720 -2320 80)" + "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" "85852" - "plane" "(2700 432 984) (2700 772 984) (2700 772 976)" + "id" "58191" + "plane" "(720 -2624 64) (384 -2624 64) (384 -2624 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60859,32 +62256,32 @@ world } editor { - "color" "163 140 0" - "groupid" "218652" + "color" "0 103 232" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218656" + "id" "164402" side { - "id" "85861" - "plane" "(2700 772 984) (3040 772 984) (3048 780 984)" + "id" "58208" + "plane" "(1032 -1800 264) (904 -1928 264) (872 -1896 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85860" - "plane" "(2692 780 984) (2700 772 992) (2700 772 984)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "id" "58207" + "plane" "(1024 -1792 256) (896 -1920 256) (904 -1928 264)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60892,32 +62289,43 @@ world } side { - "id" "85859" - "plane" "(3040 772 984) (3040 772 992) (3048 780 984)" + "id" "58206" + "plane" "(1000 -1768 264) (872 -1896 264) (872 -1896 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58205" + "plane" "(1000 -1768 264) (1000 -1768 256) (1024 -1792 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85858" - "plane" "(2692 780 984) (3048 780 984) (3040 772 992)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 -0.707107 0.707107 -17] 0.25" - "vaxis" "[1 0 0 75] 0.25" + "id" "58204" + "plane" "(896 -1920 256) (1024 -1792 256) (1000 -1768 256)" + "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" "85857" - "plane" "(3040 772 984) (2700 772 984) (2700 772 992)" + "id" "58203" + "plane" "(896 -1920 256) (872 -1896 256) (872 -1896 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60925,65 +62333,64 @@ world } editor { - "color" "163 140 0" - "groupid" "218655" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218657" + "id" "164404" side { - "id" "85866" - "plane" "(3040 772 984) (2700 772 984) (2692 780 984)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "58218" + "plane" "(896 -1920 264) (832 -1856 384) (960 -1728 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-0.707107 -0.707107 0 -25.0166] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85865" - "plane" "(2700 772 984) (2700 772 976) (2692 780 984)" + "id" "58217" + "plane" "(832 -1856 384) (832 -1856 264) (960 -1728 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.707107 -0.707107 0 -57.0166] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85864" - "plane" "(3048 780 984) (3040 772 976) (3040 772 984)" + "id" "58216" + "plane" "(1024 -1792 264) (960 -1728 384) (960 -1728 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 21.0867] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85863" - "plane" "(2692 780 984) (2700 772 976) (3040 772 976)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -48] 0.25" - "vaxis" "[1 0 0 75] 0.25" - "rotation" "90" + "id" "58215" + "plane" "(1024 -1792 264) (960 -1728 264) (832 -1856 264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 21.0867] 0.25" + "vaxis" "[0.707107 0.707107 0 57.0166] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85862" - "plane" "(2700 772 984) (3040 772 984) (3040 772 976)" + "id" "58214" + "plane" "(832 -1856 384) (896 -1920 264) (832 -1856 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[-0.707107 0.707107 0 21.0867] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60991,351 +62398,360 @@ world } editor { - "color" "163 140 0" - "groupid" "218655" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218659" + "id" "150196" side { - "id" "85872" - "plane" "(2980 432 1056) (2980 492 1056) (3040 492 1056)" + "id" "55933" + "plane" "(3344.85 -87.0562 202) (3388.33 75.2193 202) (3559.8 174.214 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0.965926 -0.258819 0 42.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85871" - "plane" "(3040 492 1056) (2980 492 1056) (2980 492 624)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -320.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55932" + "plane" "(3388.33 75.2193 144) (3344.85 -87.0562 144) (3443.85 -258.521 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.965926 -0.258819 0 42.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85870" - "plane" "(2980 432 1056) (3040 432 1056) (3040 432 624)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -320.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55931" + "plane" "(3344.85 -87.0562 144) (3388.33 75.2193 144) (3388.33 75.2193 202)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.258819 0.965926 0 -248.968] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85869" - "plane" "(3040 432 1056) (3040 492 1056) (3040 492 624)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -456.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55930" + "plane" "(3821.07 -40.7317 144) (3777.59 -203.007 144) (3777.59 -203.007 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "vaxis" "[0 0 -1 62] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85868" - "plane" "(2980 492 1056) (2980 432 1056) (2980 432 624)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -456.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55929" + "plane" "(3559.8 174.214 144) (3722.07 130.733 144) (3722.07 130.733 202)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 293.296] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85867" - "plane" "(3040 432 624) (3040 492 624) (2980 492 624)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "55928" + "plane" "(3606.12 -302.002 144) (3443.85 -258.521 144) (3443.85 -258.521 202)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[-0.965926 0.258819 0 -238.941] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor + side { - "color" "163 140 0" - "groupid" "218658" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "55927" + "plane" "(3722.07 130.733 144) (3821.07 -40.7317 144) (3821.07 -40.7317 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "vaxis" "[0 0 -1 62] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - solid - { - "id" "218660" side { - "id" "85878" - "plane" "(2978 430 1056) (2978 494 1056) (3042 494 1056)" + "id" "55926" + "plane" "(3777.59 -203.007 144) (3606.12 -302.002 144) (3606.12 -302.002 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "vaxis" "[0 0 -1 62] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85877" - "plane" "(2980 492 1054) (2978 494 1056) (2978 430 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -456.002] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "55925" + "plane" "(3443.85 -258.521 144) (3344.85 -87.0562 144) (3344.85 -87.0562 202)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[-0.5 0.866026 0 -384.279] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85876" - "plane" "(2980 432 1054) (3040 432 1054) (3040 492 1054)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" + "id" "55924" + "plane" "(3388.33 75.2193 144) (3559.8 174.214 144) (3559.8 174.214 202)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.866026 0.5 0 -362.063] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + editor + { + "color" "0 101 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "155013" side { - "id" "85875" - "plane" "(2978 494 1056) (2980 492 1054) (3040 492 1054)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -320.002] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "56141" + "plane" "(3384.86 77.7014 202) (3340.6 -87.468 202) (3441.36 -261.996 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "vaxis" "[0.965926 -0.258819 0 42.355] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85874" - "plane" "(2980 432 1054) (2978 430 1056) (3042 430 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -320.002] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "56140" + "plane" "(3340.6 -87.4699 206) (3340.6 -87.4699 202) (3384.86 77.7034 202)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.258819 0.965926 0 -248.968] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85873" - "plane" "(3040 432 1054) (3042 430 1056) (3042 494 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -456.002] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "56139" + "plane" "(3825.32 -40.318 206) (3825.32 -40.318 202) (3781.06 -205.491 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor + side { - "color" "163 140 0" - "groupid" "218658" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "56138" + "plane" "(3559.38 178.466 206) (3559.38 178.466 202) (3724.56 134.208 202)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 293.296] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - solid - { - "id" "218661" side { - "id" "85884" - "plane" "(2978 710 1056) (2978 774 1056) (3042 774 1056)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" + "id" "56137" + "plane" "(3606.54 -306.254 206) (3606.54 -306.254 202) (3441.36 -261.996 202)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[-0.965926 0.258819 0 -238.941] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85883" - "plane" "(2980 772 1054) (2978 774 1056) (2978 710 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -456.002] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "56136" + "plane" "(3724.56 134.208 206) (3724.56 134.208 202) (3825.32 -40.318 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85882" - "plane" "(2980 712 1054) (3040 712 1054) (3040 772 1054)" + "id" "56135" + "plane" "(3781.06 -205.491 206) (3781.06 -205.491 202) (3606.54 -306.254 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85881" - "plane" "(2978 774 1056) (2980 772 1054) (3040 772 1054)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -320.002] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "56134" + "plane" "(3441.36 -261.996 206) (3441.36 -261.996 202) (3340.6 -87.4699 202)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[-0.5 0.866026 0 -384.279] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85880" - "plane" "(2980 712 1054) (2978 710 1056) (3042 710 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -320.002] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "56133" + "plane" "(3384.86 77.6996 206) (3384.86 77.6996 202) (3559.38 178.466 202)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.866026 0.5 0 -362.063] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85879" - "plane" "(3040 712 1054) (3042 710 1056) (3042 774 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -80.0017] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "56132" + "plane" "(3340.6 -87.4679 206) (3384.86 77.7014 206) (3559.38 178.466 206)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.965926 -0.258819 0 101.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 326.487] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218658" + "color" "220 220 220" + "groupid" "155031" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218662" + "id" "155015" side { - "id" "85890" - "plane" "(2980 712 1056) (2980 772 1056) (3040 772 1056)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" + "id" "56149" + "plane" "(3340.6 -87.4699 208) (3340.6 -87.4699 206) (3384.86 77.7034 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.258819 0.965926 0 -248.968] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85889" - "plane" "(3040 772 1056) (2980 772 1056) (2980 772 624)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -320.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "56148" + "plane" "(3559.38 178.467 208) (3559.38 178.467 206) (3580.15 172.902 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 293.296] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85888" - "plane" "(2980 712 1056) (3040 712 1056) (3040 712 624)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -320.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "56147" + "plane" "(3462.13 -267.561 206) (3441.36 -261.995 206) (3441.36 -261.995 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[-0.965926 0.258819 0 -238.941] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85887" - "plane" "(3040 712 1056) (3040 772 1056) (3040 772 624)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -456.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "56146" + "plane" "(3441.36 -261.996 208) (3441.36 -261.996 206) (3340.6 -87.4699 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[-0.5 0.866026 0 -384.279] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85886" - "plane" "(2980 772 1056) (2980 712 1056) (2980 712 624)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -456.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "56145" + "plane" "(3384.86 77.7015 208) (3384.86 77.7015 206) (3559.38 178.466 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.866026 0.5 0 -362.063] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85885" - "plane" "(3040 712 624) (3040 772 624) (2980 772 624)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "56144" + "plane" "(3462.13 -267.561 208) (3441.36 -261.996 208) (3340.6 -87.4679 208)" + "material" "CONCRETE/CONCRETE_FLOOR_10" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "163 140 0" - "groupid" "218658" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "218672" side { - "id" "85895" - "plane" "(3040 432 984) (2700 432 984) (2692 424 984)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "id" "56143" + "plane" "(3580.15 172.902 206) (3559.38 178.466 206) (3384.86 77.7014 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85894" - "plane" "(3048 424 984) (3040 432 992) (3040 432 984)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "56142" + "plane" "(3580.15 172.902 208) (3580.15 172.902 206) (3462.13 -267.561 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.258819 0.965926 0 -75.4871] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + editor + { + "color" "220 220 220" + "groupid" "155031" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "155017" side { - "id" "85893" - "plane" "(2700 432 984) (2700 432 992) (2692 424 984)" + "id" "56157" + "plane" "(3825.32 -40.318 208) (3825.32 -40.318 206) (3781.06 -205.491 206)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -61343,54 +62759,43 @@ world } side { - "id" "85892" - "plane" "(3048 424 984) (2692 424 984) (2700 432 992)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0.707107 0.707107 33.5743] 0.25" - "vaxis" "[-1 0 0 267] 0.25" + "id" "56156" + "plane" "(3703.79 139.773 206) (3724.56 134.208 206) (3724.56 134.208 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 293.296] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85891" - "plane" "(2700 432 984) (3040 432 984) (3040 432 992)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "56155" + "plane" "(3606.54 -306.254 208) (3606.54 -306.254 206) (3585.77 -300.69 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[-0.965926 0.258819 0 -238.941] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "163 140 0" - "groupid" "218671" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "218673" side { - "id" "85900" - "plane" "(3048 424 984) (2692 424 984) (2700 432 984)" + "id" "56154" + "plane" "(3724.56 134.208 208) (3724.56 134.208 206) (3825.32 -40.3199 206)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85899" - "plane" "(3040 432 984) (3040 432 976) (3048 424 984)" + "id" "56153" + "plane" "(3781.06 -205.491 208) (3781.06 -205.491 206) (3606.54 -306.254 206)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -61398,1231 +62803,1581 @@ world } side { - "id" "85898" - "plane" "(2692 424 984) (2700 432 976) (2700 432 984)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "56152" + "plane" "(3703.79 139.773 208) (3724.56 134.208 208) (3825.32 -40.318 208)" + "material" "CONCRETE/CONCRETE_FLOOR_10" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85897" - "plane" "(3048 424 984) (3040 432 976) (2700 432 976)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -48] 0.25" - "vaxis" "[-1 0 0 267] 0.25" - "rotation" "90" + "id" "56151" + "plane" "(3585.77 -300.69 206) (3606.54 -306.254 206) (3781.06 -205.491 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85896" - "plane" "(3040 432 984) (2700 432 984) (2700 432 976)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "56150" + "plane" "(3585.77 -300.69 208) (3585.77 -300.69 206) (3703.79 139.773 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.258819 0.965926 0 -75.4871] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218671" + "color" "220 220 220" + "groupid" "155031" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218675" + "id" "155019" side { - "id" "85906" - "plane" "(3726 602 852) (3726 240 612) (3726 240 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 31.6183] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56163" + "plane" "(3580.15 172.902 206) (3703.79 139.773 206) (3703.79 139.773 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 293.296] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85905" - "plane" "(3730 240 612) (3726 240 612) (3726 602 852)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -75.6183] 0.188" - "vaxis" "[1 0 0 51.9553] 0.188" + "id" "56162" + "plane" "(3537.71 14.4897 208) (3580.15 172.902 208) (3703.79 139.773 208)" + "material" "CONCRETE/CONCRETE_FLOOR_10" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85904" - "plane" "(3730 240 612) (3730 602 852) (3730 602 849.333)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -75.6183] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56161" + "plane" "(3703.79 139.773 206) (3580.15 172.902 206) (3537.71 14.4897 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85903" - "plane" "(3726 602 849.332) (3730 602 849.333) (3730 602 852)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -8] 0.25" - "vaxis" "[0 0 -1 34.6616] 0.25" + "id" "56160" + "plane" "(3537.71 14.4897 206) (3580.15 172.902 206) (3580.15 172.902 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.258819 0.965926 0 -262.487] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85902" - "plane" "(3726 240 612) (3730 240 612) (3730 240 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -15.9553] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56159" + "plane" "(3703.79 139.773 208) (3703.79 139.773 206) (3661.34 -18.6391 206)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85901" - "plane" "(3726 240 608) (3730 240 608) (3730 602 849.333)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 40] 0.25" + "id" "56158" + "plane" "(3661.34 -18.6391 206) (3537.71 14.4897 206) (3537.71 14.4897 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 101.355] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218674" + "color" "220 220 220" + "groupid" "155031" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218676" + "id" "155021" side { - "id" "85912" - "plane" "(3726 964 612) (3726 602 852) (3726 602 849.332)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -92.128] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56169" + "plane" "(3585.77 -300.69 206) (3462.13 -267.561 206) (3462.13 -267.561 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[-0.965926 0.258819 0 -238.941] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85911" - "plane" "(3730 602 852) (3726 602 852) (3726 964 612)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 48.128] 0.188" - "vaxis" "[1 0 0 51.9553] 0.188" + "id" "56168" + "plane" "(3585.77 -300.69 208) (3462.13 -267.561 208) (3504.58 -109.149 208)" + "material" "CONCRETE/CONCRETE_FLOOR_10" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85910" - "plane" "(3730 602 852) (3730 964 612) (3730 964 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 48.128] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56167" + "plane" "(3504.58 -109.149 206) (3462.13 -267.561 206) (3585.77 -300.69 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85909" - "plane" "(3726 602 852) (3730 602 852) (3730 602 849.332)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -8] 0.25" - "vaxis" "[0 0 -1 34.6616] 0.25" + "id" "56166" + "plane" "(3462.13 -267.561 208) (3462.13 -267.561 206) (3504.58 -109.149 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.258819 0.965926 0 -262.487] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85908" - "plane" "(3726 964 608) (3730 964 608) (3730 964 612)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -15.9553] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56165" + "plane" "(3628.22 -142.278 206) (3585.77 -300.69 206) (3585.77 -300.69 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85907" - "plane" "(3726 602 849.332) (3730 602 849.332) (3730 964 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 40] 0.25" + "id" "56164" + "plane" "(3504.58 -109.149 206) (3628.22 -142.278 206) (3628.22 -142.278 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 101.355] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218674" + "color" "220 220 220" + "groupid" "155031" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218678" - side - { - "id" "85918" - "plane" "(3478 602 852) (3478 240 612) (3478 240 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 31.6183] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "155023" side { - "id" "85917" - "plane" "(3482 240 612) (3478 240 612) (3478 602 852)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -75.6183] 0.188" - "vaxis" "[1 0 0 91.1037] 0.188" + "id" "56174" + "plane" "(3622.71 -8.28632 208) (3661.34 -18.6391 208) (3650.99 -57.2761 208)" + "material" "CONCRETE/CONCRETE_FLOOR_10" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85916" - "plane" "(3482 240 612) (3482 602 852) (3482 602 849.333)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -75.6183] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56173" + "plane" "(3650.99 -57.2761 206) (3661.34 -18.6391 206) (3622.71 -8.28632 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85915" - "plane" "(3478 602 849.332) (3482 602 849.333) (3482 602 852)" + "id" "56172" + "plane" "(3661.34 -18.6391 206) (3650.99 -57.2761 206) (3650.99 -57.2761 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -40] 0.25" - "vaxis" "[0 0 -1 34.6616] 0.25" + "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85914" - "plane" "(3478 240 612) (3482 240 612) (3482 240 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -55.1037] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56171" + "plane" "(3622.71 -8.28632 206) (3661.34 -18.6391 206) (3661.34 -18.6391 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85913" - "plane" "(3478 240 608) (3482 240 608) (3482 602 849.333)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 8] 0.25" + "id" "56170" + "plane" "(3650.99 -57.2761 206) (3622.71 -8.28632 206) (3622.71 -8.28632 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 101.355] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218677" + "color" "220 220 220" + "groupid" "155031" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218679" - side - { - "id" "85924" - "plane" "(3478 964 612) (3478 602 852) (3478 602 849.332)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -92.128] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "155025" side { - "id" "85923" - "plane" "(3482 602 852) (3478 602 852) (3478 964 612)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 48.128] 0.188" - "vaxis" "[1 0 0 91.1037] 0.188" + "id" "56179" + "plane" "(3638.57 -103.641 208) (3628.22 -142.278 208) (3589.58 -131.925 208)" + "material" "CONCRETE/CONCRETE_FLOOR_10" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85922" - "plane" "(3482 602 852) (3482 964 612) (3482 964 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 48.128] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56178" + "plane" "(3589.58 -131.925 206) (3628.22 -142.278 206) (3638.57 -103.641 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85921" - "plane" "(3478 602 852) (3482 602 852) (3482 602 849.332)" + "id" "56177" + "plane" "(3638.57 -103.641 206) (3628.22 -142.278 206) (3628.22 -142.278 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -40] 0.25" - "vaxis" "[0 0 -1 34.6616] 0.25" + "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85920" - "plane" "(3478 964 608) (3482 964 608) (3482 964 612)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -55.1037] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56176" + "plane" "(3628.22 -142.278 206) (3589.58 -131.925 206) (3589.58 -131.925 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85919" - "plane" "(3478 602 849.332) (3482 602 849.332) (3482 964 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 8] 0.25" + "id" "56175" + "plane" "(3589.58 -131.925 206) (3638.57 -103.641 206) (3638.57 -103.641 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.258819 0.965926 0 -75.4871] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218677" + "color" "220 220 220" + "groupid" "155031" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218681" - side - { - "id" "85930" - "plane" "(3230 602 852) (3230 240 612) (3230 240 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 31.6183] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "155027" side { - "id" "85929" - "plane" "(3234 240 612) (3230 240 612) (3230 602 852)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -75.6183] 0.188" - "vaxis" "[1 0 0 2.25409] 0.188" + "id" "56184" + "plane" "(3543.21 -119.502 208) (3504.58 -109.149 208) (3514.93 -70.5117 208)" + "material" "CONCRETE/CONCRETE_FLOOR_10" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85928" - "plane" "(3234 240 612) (3234 602 852) (3234 602 849.333)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -75.6183] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56183" + "plane" "(3514.93 -70.5117 206) (3504.58 -109.149 206) (3543.21 -119.502 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85927" - "plane" "(3230 602 849.332) (3234 602 849.333) (3234 602 852)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -8] 0.25" - "vaxis" "[0 0 -1 34.6616] 0.25" + "id" "56182" + "plane" "(3504.58 -109.149 206) (3514.93 -70.5117 206) (3514.93 -70.5117 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.258819 0.965926 0 -262.487] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85926" - "plane" "(3230 240 612) (3234 240 612) (3234 240 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -94.2541] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56181" + "plane" "(3543.21 -119.502 206) (3504.58 -109.149 206) (3504.58 -109.149 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85925" - "plane" "(3230 240 608) (3234 240 608) (3234 602 849.333)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 40] 0.25" + "id" "56180" + "plane" "(3514.93 -70.5117 206) (3543.21 -119.502 206) (3543.21 -119.502 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.258819 0.965926 0 -75.4871] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218680" + "color" "220 220 220" + "groupid" "155031" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218682" - side - { - "id" "85936" - "plane" "(3230 964 612) (3230 602 852) (3230 602 849.332)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -92.128] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "155029" side { - "id" "85935" - "plane" "(3234 602 852) (3230 602 852) (3230 964 612)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 48.128] 0.188" - "vaxis" "[1 0 0 2.25409] 0.188" + "id" "56189" + "plane" "(3527.35 -24.1473 208) (3537.71 14.4897 208) (3576.34 4.13696 208)" + "material" "CONCRETE/CONCRETE_FLOOR_10" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85934" - "plane" "(3234 602 852) (3234 964 612) (3234 964 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 48.128] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56188" + "plane" "(3576.34 4.13696 206) (3537.71 14.4897 206) (3527.35 -24.1473 206)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85933" - "plane" "(3230 602 852) (3234 602 852) (3234 602 849.332)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -8] 0.25" - "vaxis" "[0 0 -1 34.6616] 0.25" + "id" "56187" + "plane" "(3527.35 -24.1473 206) (3537.71 14.4897 206) (3537.71 14.4897 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.258819 0.965926 0 -262.487] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85932" - "plane" "(3230 964 608) (3234 964 608) (3234 964 612)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -94.2541] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56186" + "plane" "(3537.71 14.4897 206) (3576.34 4.13696 206) (3576.34 4.13696 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85931" - "plane" "(3230 602 849.332) (3234 602 849.332) (3234 964 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 40] 0.25" + "id" "56185" + "plane" "(3576.34 4.13696 206) (3527.35 -24.1473 206) (3527.35 -24.1473 208)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[0.965926 -0.258819 0 101.355] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218680" + "color" "220 220 220" + "groupid" "155031" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218684" + "id" "155088" side { - "id" "85942" - "plane" "(3040 964 612) (3040 602 852) (3040 602 849.333)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -92.128] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56201" + "plane" "(4544 64 704) (5184 64 704) (5184 -576 704)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85941" - "plane" "(3044 602 852) (3040 602 852) (3040 964 612)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 48.128] 0.188" - "vaxis" "[1 0 0 116.893] 0.188" + "id" "56200" + "plane" "(4544 64 704) (4544 -576 704) (4544 -576 24)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85940" - "plane" "(3044 602 852) (3044 964 612) (3044 964 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 48.128] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56199" + "plane" "(5184 64 24) (5184 -576 24) (5184 -576 704)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85939" - "plane" "(3040 602 852) (3044 602 852) (3044 602 849.336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 34.6616] 0.25" + "id" "56198" + "plane" "(5184 64 704) (4544 64 704) (4544 64 24)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85938" - "plane" "(3040 964 608) (3044 964 608) (3044 964 612)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -80.8928] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56197" + "plane" "(5184 -576 24) (4544 -576 24) (4544 -576 704)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85937" - "plane" "(3040 602 849.333) (3044 602 849.336) (3044 964 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "56196" + "plane" "(5120 -512 640) (5120 0 640) (4608 0 640)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218683" + "color" "220 220 220" + "groupid" "155100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218685" + "id" "155090" side { - "id" "85948" - "plane" "(3040 602 852) (3040 240 612) (3040 240 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 31.6183] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56207" + "plane" "(4544 -576 24) (5184 -576 24) (5184 64 24)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85947" - "plane" "(3044 240 612) (3040 240 612) (3040 602 852)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -75.6183] 0.188" - "vaxis" "[1 0 0 116.893] 0.188" + "id" "56206" + "plane" "(4544 64 704) (4544 -576 704) (4544 -576 24)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85946" - "plane" "(3044 240 612) (3044 602 852) (3044 602 849.333)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -75.6183] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56205" + "plane" "(5184 64 24) (5184 -576 24) (5184 -576 704)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85945" - "plane" "(3040 602 849.336) (3044 602 849.333) (3044 602 852)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 34.6616] 0.25" + "id" "56204" + "plane" "(5184 64 704) (4544 64 704) (4544 64 24)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85944" - "plane" "(3040 240 612) (3044 240 612) (3044 240 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -80.8928] 0.188" - "vaxis" "[0 0 -1 77.0638] 0.188" + "id" "56203" + "plane" "(5184 -576 24) (4544 -576 24) (4544 -576 704)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85943" - "plane" "(3040 240 608) (3044 240 608) (3044 602 849.333)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "56202" + "plane" "(5120 0 88) (5120 -512 88) (4608 -512 88)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "218683" + "color" "220 220 220" + "groupid" "155100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218686" + "id" "155092" side { - "id" "85953" - "plane" "(3004 1004 632) (3004 984 632) (2984 1004 612)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "id" "56213" + "plane" "(4544 64 704) (4544 -576 704) (4544 -576 24)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85952" - "plane" "(3004 1004 424) (2984 1004 424) (3004 984 424)" - "material" "TOOLS/TOOLSNODRAW" + "id" "56212" + "plane" "(5184 64 704) (4544 64 704) (4544 64 24)" + "material" "TOOLS/TOOLSSKYBOX" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85951" - "plane" "(2984 1004 612) (2984 1004 424) (3004 1004 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 155.998] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "56211" + "plane" "(5184 -576 24) (4544 -576 24) (4544 -576 704)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85950" - "plane" "(3004 984 424) (3004 984 632) (3004 1004 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "56210" + "plane" "(4608 0 640) (5120 0 640) (5120 -512 640)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85949" - "plane" "(2984 1004 424) (2984 1004 612) (3004 984 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "56209" + "plane" "(4608 -512 88) (5120 -512 88) (5120 0 88)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56208" + "plane" "(4608 -512 88) (4608 -512 640) (4608 0 640)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "155100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218687" + "id" "155094" side { - "id" "85958" - "plane" "(3024 984 632) (3004 984 632) (3024 1004 612)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "id" "56219" + "plane" "(5184 64 24) (5184 -576 24) (5184 -576 704)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85957" - "plane" "(3024 984 424) (3024 1004 424) (3004 984 424)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "56218" + "plane" "(5184 64 704) (4544 64 704) (4544 64 24)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85956" - "plane" "(3024 1004 612) (3024 1004 424) (3024 984 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -376.002] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "56217" + "plane" "(5184 -576 24) (4544 -576 24) (4544 -576 704)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85955" - "plane" "(3004 984 424) (3004 984 632) (3024 984 632)" - "material" "TOOLS/TOOLSNODRAW" + "id" "56216" + "plane" "(4608 0 640) (5120 0 640) (5120 -512 640)" + "material" "TOOLS/TOOLSSKYBOX" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85954" - "plane" "(3024 1004 424) (3024 1004 612) (3004 984 632)" - "material" "TOOLS/TOOLSNODRAW" + "id" "56215" + "plane" "(4608 -512 88) (5120 -512 88) (5120 0 88)" + "material" "TOOLS/TOOLSSKYBOX" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56214" + "plane" "(5120 -512 640) (5120 -512 88) (5120 0 88)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "155100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218688" + "id" "155096" side { - "id" "85963" - "plane" "(3024 1004 612) (3004 984 632) (3004 1004 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "56225" + "plane" "(5184 64 704) (4544 64 704) (4544 64 24)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85962" - "plane" "(3004 1004 424) (3004 984 424) (3024 1004 424)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "56224" + "plane" "(4608 0 640) (5120 0 640) (5120 -512 640)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85961" - "plane" "(3024 1004 424) (3024 1004 612) (3004 1004 632)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "56223" + "plane" "(4608 -512 88) (5120 -512 88) (5120 0 88)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85960" - "plane" "(3004 1004 424) (3004 1004 632) (3004 984 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "56222" + "plane" "(4608 0 640) (4608 -512 640) (4608 -512 88)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85959" - "plane" "(3024 1004 612) (3024 1004 424) (3004 984 424)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "56221" + "plane" "(5120 0 88) (5120 -512 88) (5120 -512 640)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56220" + "plane" "(4608 0 88) (4608 0 640) (5120 0 640)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "155100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218689" + "id" "155098" side { - "id" "85968" - "plane" "(3024 964 612) (3004 984 632) (3024 984 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "56231" + "plane" "(5184 -576 24) (4544 -576 24) (4544 -576 704)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85967" - "plane" "(3024 984 424) (3004 984 424) (3024 964 424)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "56230" + "plane" "(4608 0 640) (5120 0 640) (5120 -512 640)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56229" + "plane" "(4608 -512 88) (5120 -512 88) (5120 0 88)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85966" - "plane" "(3024 964 424) (3024 964 612) (3024 984 632)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 24.0017] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "56228" + "plane" "(4608 0 640) (4608 -512 640) (4608 -512 88)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85965" - "plane" "(3024 984 424) (3024 984 632) (3004 984 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "56227" + "plane" "(5120 0 88) (5120 -512 88) (5120 -512 640)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85964" - "plane" "(3024 964 612) (3024 964 424) (3004 984 424)" - "material" "TOOLS/TOOLSNODRAW" + "id" "56226" + "plane" "(4608 -512 640) (4608 -512 88) (5120 -512 88)" + "material" "TOOLS/TOOLSSKYBOX" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "155100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218690" + "id" "147682" + side + { + "id" "55768" + "plane" "(2752 1.52588e-05 96) (3072 1.52588e-05 96) (3072 -320 96)" + "material" "NATURE/BLEND_GRASS_GRAVEL_02" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[2752 -320 96]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "11.504 15.0161 17.1085 16.3327 8.30555" + "row1" "17.8935 21.4036 22.0629 23.4014 24.589" + "row2" "19.9632 23.5321 26.4527 34.1234 43.3441" + "row3" "18.559 26.2845 29.2457 40.0207 49.7986" + "row4" "21.3565 26.4204 29.2845 39.7141 47.4668" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 12.5 25 0 0" + "row1" "12.5 37.5 93.75 12.5 0" + "row2" "31.25 106.25 193.75 25 0" + "row3" "50 156.25 211.25 56.25 6.25" + "row4" "31.25 125 200 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } side { - "id" "85973" - "plane" "(3004 964 632) (3004 984 632) (3024 964 612)" + "id" "55769" + "plane" "(2752 -320 64) (3072 -320 64) (3072 1.52588e-05 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85972" - "plane" "(3004 964 424) (3024 964 424) (3004 984 424)" + "id" "55770" + "plane" "(2752 1.52588e-05 96) (2752 -320 96) (2752 -320 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85971" - "plane" "(3024 964 612) (3024 964 424) (3004 964 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "55771" + "plane" "(3072 1.52588e-05 64) (3072 -320 64) (3072 -320 96)" + "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" "85970" - "plane" "(3004 984 424) (3004 984 632) (3004 964 632)" + "id" "55772" + "plane" "(3072 1.52588e-05 96) (2752 1.52588e-05 96) (2752 1.52588e-05 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85969" - "plane" "(3024 964 424) (3024 964 612) (3004 984 632)" + "id" "55773" + "plane" "(3072 -320 64) (2752 -320 64) (2752 -320 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "213 106 0" + "groupid" "148044" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218691" + "id" "147703" side { - "id" "85978" - "plane" "(2984 964 612) (3004 984 632) (3004 964 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "id" "55797" + "plane" "(3072 0 96) (3392 0 96) (3392 -320 96)" + "material" "NATURE/BLEND_GRASS_GRAVEL_02" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[3072 -320 96]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "8.30555 5.61645 0.801247 11.2046 6.53531" + "row1" "24.589 24.3274 18.7894 16.0475 22.5716" + "row2" "43.3441 43.6063 45.0102 52.1873 59.3569" + "row3" "49.7986 53.6579 58.8564 68.5224 78.8228" + "row4" "47.4668 51.5869 59.1033 72.244 82.6946" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 18.75 43.75 243.75 200" + "row1" "0 6.25 43.75 230 212.5" + "row2" "0 12.5 81.25 255 175" + "row3" "6.25 37.5 205 231.25 75" + "row4" "0 6.25 187.5 206.25 106.25" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "85977" - "plane" "(3004 964 424) (3004 984 424) (2984 964 424)" + "id" "55796" + "plane" "(3072 -320 64) (3392 -320 64) (3392 0 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85976" - "plane" "(2984 964 424) (2984 964 612) (3004 964 632)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 155.998] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "55795" + "plane" "(3072 0 96) (3072 -320 96) (3072 -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" "85975" - "plane" "(3004 964 424) (3004 964 632) (3004 984 632)" + "id" "55794" + "plane" "(3392 0 64) (3392 -320 64) (3392 -320 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85974" - "plane" "(2984 964 612) (2984 964 424) (3004 984 424)" + "id" "55793" + "plane" "(3392 0 96) (3072 0 96) (3072 0 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55792" + "plane" "(3392 -320 64) (3072 -320 64) (3072 -320 96)" + "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" "163 140 0" - "groupid" "219643" + "color" "213 106 0" + "groupid" "148044" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218692" + "id" "147704" + side + { + "id" "55809" + "plane" "(3392 0 96) (3712 0 96) (3712 -320 96)" + "material" "NATURE/BLEND_GRASS_GRAVEL_02" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[3392 -320 96]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "6.53531 2.13487 4.86508 8.47142 11.1003" + "row1" "22.5716 24.8233 23.809 27.9572 29.2342" + "row2" "59.3569 60.2115 63.3455 62.248 56.0144" + "row3" "78.8228 86.0599 90.9793 91.2455 83.3257" + "row4" "82.6946 88.7154 93.9125 97.2602 88.5573" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "200 81.25 12.5 0 0" + "row1" "212.5 100 18.75 0 0" + "row2" "175 43.75 0 0 0" + "row3" "75 6.25 0 0 0" + "row4" "106.25 200 175 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } side { - "id" "85983" - "plane" "(2984 984 632) (3004 984 632) (2984 964 612)" + "id" "55808" + "plane" "(3392 -320 64) (3712 -320 64) (3712 0 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85982" - "plane" "(2984 964 424) (3004 984 424) (2984 984 424)" + "id" "55807" + "plane" "(3392 0 96) (3392 -320 96) (3392 -320 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85981" - "plane" "(2984 964 612) (2984 964 424) (2984 984 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 24.0017] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "55806" + "plane" "(3712 0 64) (3712 -320 64) (3712 -320 96)" + "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" "85980" - "plane" "(3004 984 424) (3004 984 632) (2984 984 632)" + "id" "55805" + "plane" "(3712 0 96) (3392 0 96) (3392 0 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85979" - "plane" "(2984 964 424) (2984 964 612) (3004 984 632)" + "id" "55804" + "plane" "(3712 -320 64) (3392 -320 64) (3392 -320 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "213 106 0" + "groupid" "148044" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218693" + "id" "147705" + side + { + "id" "55833" + "plane" "(3392 320 96) (3712 320 96) (3712 0 96)" + "material" "NATURE/BLEND_GRASS_GRAVEL_02" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[3392 0 96]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "82.6946 88.7154 93.9125 97.2602 88.5573" + "row1" "82.7051 84.0012 80.5315 76.8796 67.4157" + "row2" "79.5404 76.5387 70.5652 58.6945 46.4415" + "row3" "83.3797 78.3208 67.0365 61.1737 47.0005" + "row4" "82.2625 85.1196 77.3626 75.2888 55.0113" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "106.25 200 175 0 0" + "row1" "225 50 0 0 0" + "row2" "225 0 0 0 0" + "row3" "175 0 0 0 0" + "row4" "25 225 50 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } side { - "id" "85988" - "plane" "(2984 1004 612) (3004 984 632) (2984 984 632)" + "id" "55832" + "plane" "(3392 0 64) (3712 0 64) (3712 320 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85987" - "plane" "(2984 984 424) (3004 984 424) (2984 1004 424)" + "id" "55831" + "plane" "(3392 320 96) (3392 0 96) (3392 0 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85986" - "plane" "(2984 1004 424) (2984 1004 612) (2984 984 632)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -376.002] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "55830" + "plane" "(3712 320 64) (3712 0 64) (3712 0 96)" + "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" "85985" - "plane" "(2984 984 424) (2984 984 632) (3004 984 632)" + "id" "55829" + "plane" "(3712 320 96) (3392 320 96) (3392 320 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85984" - "plane" "(2984 1004 612) (2984 1004 424) (3004 984 424)" + "id" "55828" + "plane" "(3712 0 64) (3392 0 64) (3392 0 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "213 106 0" + "groupid" "148044" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218694" + "id" "147706" + side + { + "id" "55839" + "plane" "(3072 320 96) (3392 320 96) (3392 0 96)" + "material" "NATURE/BLEND_GRASS_GRAVEL_02" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[3072 0 96]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "47.4668 51.5869 59.1033 72.244 82.6946" + "row1" "44.4186 47.6372 57.4464 73.6798 82.7051" + "row2" "40.6872 51.2597 64.3743 74.4908 79.5404" + "row3" "39.8486 57.165 68.9036 79.7486 83.3797" + "row4" "43.4646 52.6037 68.5684 77.6504 82.2625" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 6.25 187.5 206.25 106.25" + "row1" "0 0 18.75 231.25 225" + "row2" "0 0 50 200 225" + "row3" "0 0 0 0 175" + "row4" "0 0 0 0 25" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } side { - "id" "85993" - "plane" "(2668 452 460) (2688 472 480) (2688 452 480)" + "id" "55838" + "plane" "(3072 0 64) (3392 0 64) (3392 320 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85992" - "plane" "(2688 452 400) (2688 472 400) (2668 452 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -240.002] 0.2" - "vaxis" "[0 1 0 167.002] 0.2" + "id" "55837" + "plane" "(3072 320 96) (3072 0 96) (3072 0 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" "85991" - "plane" "(2668 452 400) (2668 452 460) (2688 452 480)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -304.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55836" + "plane" "(3392 320 64) (3392 0 64) (3392 0 96)" + "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" "85990" - "plane" "(2688 452 400) (2688 452 480) (2688 472 480)" + "id" "55835" + "plane" "(3392 320 96) (3072 320 96) (3072 320 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -62630,10 +64385,10 @@ world } side { - "id" "85989" - "plane" "(2668 452 460) (2668 452 400) (2688 472 400)" + "id" "55834" + "plane" "(3392 0 64) (3072 0 64) (3072 0 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -62641,54 +64396,124 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "213 106 0" + "groupid" "148044" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218695" + "id" "147707" + side + { + "id" "55845" + "plane" "(2752 320 96) (3072 320 96) (3072 0 96)" + "material" "NATURE/BLEND_GRASS_GRAVEL_02" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[2752 0 96]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "21.3565 26.4204 29.2845 39.7141 47.4668" + "row1" "33.4891 35.7172 32.7752 38.1383 44.4186" + "row2" "2.8403 47.914 42.1599 38.3632 40.6872" + "row3" "23.5955 59.3062 50.7801 38.5922 39.8486" + "row4" "53.6182 60.7187 54.6164 46.76 43.4646" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "31.25 125 200 0 0" + "row1" "50 118.75 223.75 37.5 0" + "row2" "62.5 150 162.5 31.25 0" + "row3" "31.25 68.75 93.75 0 0" + "row4" "0 31.25 31.25 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } side { - "id" "85998" - "plane" "(2688 492 480) (2688 472 480) (2668 492 460)" + "id" "55844" + "plane" "(2752 0 64) (3072 0 64) (3072 320 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85997" - "plane" "(2688 492 400) (2668 492 400) (2688 472 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -240.002] 0.2" - "vaxis" "[0 -1 0 -233.002] 0.2" + "id" "55843" + "plane" "(2752 320 96) (2752 0 96) (2752 0 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" "85996" - "plane" "(2668 492 460) (2668 492 400) (2688 492 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -304.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55842" + "plane" "(3072 320 64) (3072 0 64) (3072 0 96)" + "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" "85995" - "plane" "(2688 472 400) (2688 472 480) (2688 492 480)" + "id" "55841" + "plane" "(3072 320 96) (2752 320 96) (2752 320 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -62696,10 +64521,10 @@ world } side { - "id" "85994" - "plane" "(2668 492 400) (2668 492 460) (2688 472 480)" + "id" "55840" + "plane" "(3072 0 64) (2752 0 64) (2752 0 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -62707,54 +64532,124 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "213 106 0" + "groupid" "148044" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218696" + "id" "147708" + side + { + "id" "55869" + "plane" "(3712 640 96) (3712 320 96) (3392 320 96)" + "material" "NATURE/BLEND_GRASS_GRAVEL_02" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[3392 320 96]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "82.2625 85.1196 77.3626 75.2888 55.0113" + "row1" "74.9956 84.7092 86.6656 89.728 70.3482" + "row2" "74.1789 78.5434 76.1951 85.5458 67.4682" + "row3" "95.5306 75.2748 60.0716 59.0545 49.7721" + "row4" "98.319 90.4589 58.2112 37.9875 26.5557" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1" + "row1" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1" + "row2" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1" + "row3" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1" + "row4" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1" + } + alphas + { + "row0" "25 225 50 0 0" + "row1" "0 50 25 0 0" + "row2" "0 0 0 0 0" + "row3" "0 0 0 0 0" + "row4" "0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } side { - "id" "86003" - "plane" "(2668 492 460) (2688 472 480) (2668 472 480)" + "id" "55868" + "plane" "(3712 320 64) (3712 640 64) (3328 640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86002" - "plane" "(2668 472 400) (2688 472 400) (2668 492 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -312.002] 0.2" - "vaxis" "[1 0 0 -161.002] 0.2" + "id" "55867" + "plane" "(3392 320 96) (3392 320 64) (3328 640 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" "86001" - "plane" "(2668 492 400) (2668 492 460) (2668 472 480)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -384.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55866" + "plane" "(3712 320 64) (3712 320 96) (3712 640 96)" + "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" "86000" - "plane" "(2668 472 400) (2668 472 480) (2688 472 480)" + "id" "55865" + "plane" "(3328 640 96) (3328 640 64) (3712 640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -62762,10 +64657,10 @@ world } side { - "id" "85999" - "plane" "(2668 492 460) (2668 492 400) (2688 472 400)" + "id" "55864" + "plane" "(3392 320 64) (3392 320 96) (3712 320 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -62773,54 +64668,124 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "213 106 0" + "groupid" "148044" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218697" + "id" "147709" + side + { + "id" "55875" + "plane" "(3328 640 96) (3392 320 96) (3072 320 96)" + "material" "NATURE/BLEND_GRASS_GRAVEL_02" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[3072 320 96]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "43.4646 52.6037 68.5684 77.6504 82.2625" + "row1" "46.6297 47.3046 59.7506 67.8692 74.9956" + "row2" "43.7404 45.4218 56.519 66.8632 74.1789" + "row3" "45.5725 49.6557 58.9988 82.097 95.5306" + "row4" "31.2802 38.7296 56.4284 92.9499 98.319" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 25" + "row1" "0 0 0 0 0" + "row2" "0 0 0 0 0" + "row3" "0 0 0 0 0" + "row4" "0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } side { - "id" "86008" - "plane" "(2668 472 480) (2688 472 480) (2668 452 460)" + "id" "55874" + "plane" "(3392 320 64) (3328 640 64) (3072 640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86007" - "plane" "(2668 452 400) (2688 472 400) (2668 472 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[1 0 0 -161.002] 0.2" + "id" "55873" + "plane" "(3072 320 96) (3072 320 64) (3072 640 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" "86006" - "plane" "(2668 452 460) (2668 452 400) (2668 472 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55872" + "plane" "(3392 320 64) (3392 320 96) (3328 640 96)" + "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" "86005" - "plane" "(2688 472 400) (2688 472 480) (2668 472 480)" + "id" "55871" + "plane" "(3072 640 96) (3072 640 64) (3328 640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -62828,10 +64793,10 @@ world } side { - "id" "86004" - "plane" "(2668 452 400) (2668 452 460) (2688 472 480)" + "id" "55870" + "plane" "(3072 320 64) (3072 320 96) (3392 320 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -62839,197 +64804,337 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "213 106 0" + "groupid" "148044" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218698" + "id" "147710" side { - "id" "86013" - "plane" "(2984 1004 616) (3004 984 636) (2984 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 69.6183] 0.188" - "vaxis" "[1 0 0 122.211] 0.188" + "id" "55881" + "plane" "(2752 640 96) (3072 640 96) (3072 320 96)" + "material" "NATURE/BLEND_GRASS_GRAVEL_02" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[2752 320 96]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "53.6182 60.7187 54.6164 46.76 43.4646" + "row1" "42.9219 55.7531 53.4924 47.7501 46.6297" + "row2" "30.7672 49.3019 56.937 51.3292 43.7404" + "row3" "19.2516 38.6454 49.1986 51.3169 45.5725" + "row4" "7.77762 22.1455 32.1785 36.528 31.2802" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 31.25 31.25 0 0" + "row1" "0 0 12.5 0 0" + "row2" "0 0 0 0 0" + "row3" "0 0 0 0 0" + "row4" "0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "86012" - "plane" "(2984 1004 612) (2984 984 632) (3004 984 632)" + "id" "55880" + "plane" "(2752 320 64) (3072 320 64) (3072 640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86011" - "plane" "(2984 1004 612) (2984 1004 616) (2984 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 69.8302] 0.188" - "vaxis" "[0 0 -1 80.0638] 0.188" + "id" "55879" + "plane" "(2752 640 96) (2752 320 96) (2752 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" "86010" - "plane" "(3004 984 632) (3004 984 636) (2984 1004 616)" + "id" "55878" + "plane" "(3072 640 64) (3072 320 64) (3072 320 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86009" - "plane" "(2984 984 632) (2984 984 636) (3004 984 636)" + "id" "55877" + "plane" "(3072 640 96) (2752 640 96) (2752 640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55876" + "plane" "(3072 320 64) (2752 320 64) (2752 320 96)" + "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" "163 140 0" - "groupid" "219643" + "color" "213 106 0" + "groupid" "148044" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218699" + "id" "147711" side { - "id" "86018" - "plane" "(2984 964 616) (2984 984 636) (3004 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -86.2989] 0.188" - "vaxis" "[1 0 0 122.211] 0.188" + "id" "55893" + "plane" "(3328 640 96) (3392 800 96) (3712 1088 96)" + "material" "NATURE/BLEND_GRASS_GRAVEL_02" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[3328 640 96]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "98.319 90.4589 58.2112 37.9875 26.5557" + "row1" "86.101 72.2523 63.2874 20.5278 10.1993" + "row2" "73.0614 64.7419 65.6566 43.9237 32.248" + "row3" "52.6215 61.0278 69.0243 53.2467 47.2206" + "row4" "55.7753 67.8565 53.5728 50.0645 33.8807" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0" + "row1" "0 0 0 0 0" + "row2" "0 0 0 0 0" + "row3" "0 0 0 0 0" + "row4" "0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9" + "row2" "1 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "86017" - "plane" "(2984 964 612) (3004 984 632) (2984 984 632)" + "id" "55892" + "plane" "(3392 800 64) (3328 640 64) (3712 640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86016" - "plane" "(2984 964 616) (2984 964 612) (2984 984 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -89.8302] 0.188" - "vaxis" "[0 0 -1 80.0638] 0.188" + "id" "55891" + "plane" "(3392 800 64) (3392 800 96) (3328 640 96)" + "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" "86015" - "plane" "(2984 964 612) (2984 964 616) (3004 984 636)" + "id" "55890" + "plane" "(3712 1088 96) (3712 1088 64) (3712 640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86014" - "plane" "(3004 984 632) (3004 984 636) (2984 984 636)" + "id" "55889" + "plane" "(3712 1088 64) (3712 1088 96) (3392 800 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55888" + "plane" "(3712 640 96) (3712 640 64) (3328 640 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" "163 140 0" - "groupid" "219643" + "color" "213 106 0" + "groupid" "148044" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218700" + "id" "145294" side { - "id" "86024" - "plane" "(2657.33 492 402.671) (2660 492 400) (2668 492 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -240.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55441" + "plane" "(2112 -1472 256) (1856 -1472 256) (1856 -1344 256)" + "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" "86023" - "plane" "(2660 452 400) (2657.33 452 402.671) (2668 452 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -304.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55440" + "plane" "(2112 -1344 192) (1856 -1344 192) (1856 -1472 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86022" - "plane" "(2657.33 452 402.671) (2657.33 492 402.671) (2668 492 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55439" + "plane" "(2112 -1472 192) (1856 -1472 192) (1856 -1472 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86021" - "plane" "(2668 452 400) (2668 492 400) (2660 492 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[1 0 0 -161.002] 0.2" + "id" "55438" + "plane" "(1856 -1344 192) (2112 -1344 192) (2112 -1344 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86020" - "plane" "(2668 492 400) (2668 452 400) (2668 452 424)" + "id" "55437" + "plane" "(1856 -1472 192) (1856 -1344 192) (1856 -1344 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -63037,87 +65142,86 @@ world } side { - "id" "86019" - "plane" "(2660 452 400) (2660 492 400) (2657.33 492 402.671)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0.707107 0 -0.707107 28.6907] 0.2" + "id" "55436" + "plane" "(2112 -1344 192) (2112 -1472 192) (2112 -1472 256)" + "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" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218701" + "id" "145298" side { - "id" "86030" - "plane" "(2668 432 192) (2668 452 192) (2700 452 192)" + "id" "55466" + "plane" "(2368 -960 256) (2368 -992 256) (2144 -1216 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86029" - "plane" "(2700 432 160) (2700 452 160) (2668 452 160)" + "id" "55465" + "plane" "(2112 -1216 64) (2144 -1216 64) (2368 -992 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86028" - "plane" "(2668 432 160) (2668 432 192) (2700 432 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -37.7853] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "55464" + "plane" "(2368 -960 256) (2112 -1216 256) (2112 -1216 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86027" - "plane" "(2700 452 160) (2700 452 192) (2668 452 192)" + "id" "55463" + "plane" "(2368 -992 64) (2144 -1216 64) (2144 -1216 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86026" - "plane" "(2668 452 160) (2668 452 192) (2668 432 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 61.7882] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "55462" + "plane" "(2368 -992 256) (2368 -960 256) (2368 -960 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" "86025" - "plane" "(2700 432 160) (2700 432 192) (2700 452 192)" + "id" "55461" + "plane" "(2144 -1216 64) (2112 -1216 64) (2112 -1216 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -63125,76 +65229,75 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 100 229" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218702" + "id" "145317" side { - "id" "86036" - "plane" "(2648 452 192) (2648 492 192) (2700 492 192)" + "id" "55478" + "plane" "(2556 -960 201.5) (2556 -956 201.5) (2560 -956 201.5)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86035" - "plane" "(2700 452 160) (2700 492 160) (2648 492 160)" + "id" "55477" + "plane" "(2556 -956 95.5) (2556 -960 95.5) (2560 -960 95.5)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86034" - "plane" "(2648 452 160) (2648 452 192) (2700 452 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -59.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "55476" + "plane" "(2556 -960 95.5) (2556 -956 95.5) (2556 -956 201.5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86033" - "plane" "(2700 492 160) (2700 492 192) (2648 492 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 91.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "55475" + "plane" "(2560 -956 95.5) (2560 -960 95.5) (2560 -960 201.5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86032" - "plane" "(2648 492 160) (2648 492 192) (2648 452 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 105.023] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "55474" + "plane" "(2556 -956 95.5) (2560 -956 95.5) (2560 -956 201.5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86031" - "plane" "(2700 452 160) (2700 452 192) (2700 492 192)" + "id" "55473" + "plane" "(2560 -960 95.5) (2556 -960 95.5) (2556 -960 201.5)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -63202,43 +65305,42 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 139 168" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218703" + "id" "145328" side { - "id" "86042" - "plane" "(2652 456 352) (2654 458 352) (2660 458 352)" + "id" "55490" + "plane" "(2368 -960 256) (2560 -960 256) (2560 -992 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86041" - "plane" "(2660 456 208) (2660 458 208) (2654 458 208)" + "id" "55489" + "plane" "(2368 -992 64) (2560 -992 64) (2560 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86040" - "plane" "(2660 458 208) (2660 458 352) (2654 458 352)" + "id" "55488" + "plane" "(2368 -960 256) (2368 -992 256) (2368 -992 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -63246,21 +65348,21 @@ world } side { - "id" "86039" - "plane" "(2652 456 208) (2652 456 352) (2660 456 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" - "rotation" "0" - "lightmapscale" "16" + "id" "55487" + "plane" "(2560 -960 64) (2560 -992 64) (2560 -992 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86038" - "plane" "(2654 458 208) (2654 458 352) (2652 456 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "id" "55486" + "plane" "(2560 -960 256) (2368 -960 256) (2368 -960 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -63268,10 +65370,10 @@ world } side { - "id" "86037" - "plane" "(2660 456 208) (2660 456 352) (2660 458 352)" + "id" "55485" + "plane" "(2560 -992 64) (2368 -992 64) (2368 -992 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -63279,340 +65381,346 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 100 229" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218704" + "id" "145330" side { - "id" "86047" - "plane" "(3024 964 616) (3004 984 636) (3024 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -86.2989] 0.188" - "vaxis" "[-1 0 0 -48.3381] 0.188" + "id" "55502" + "plane" "(2528 -1216 256) (2528 -992 256) (2560 -992 256)" + "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" "86046" - "plane" "(3024 964 612) (3024 984 632) (3004 984 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -89.8302] 0.188" - "vaxis" "[-1 0 0 -127.934] 0.188" + "id" "55501" + "plane" "(2528 -992 64) (2528 -1216 64) (2560 -1216 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" "86045" - "plane" "(3024 964 612) (3024 964 616) (3024 984 636)" + "id" "55500" + "plane" "(2528 -992 64) (2528 -992 256) (2528 -1216 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55499" + "plane" "(2560 -992 256) (2560 -992 64) (2560 -1216 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86044" - "plane" "(3004 984 632) (3004 984 636) (3024 964 616)" + "id" "55498" + "plane" "(2560 -992 64) (2560 -992 256) (2528 -992 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86043" - "plane" "(3024 984 632) (3024 984 636) (3004 984 636)" + "id" "55497" + "plane" "(2560 -1216 256) (2560 -1216 64) (2528 -1216 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 100 229" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218705" + "id" "145344" side { - "id" "86053" - "plane" "(3024 984 632) (3026 984 632) (3026 984 636)" + "id" "55514" + "plane" "(2528 -1248 256) (2528 -1216 256) (2752 -1216 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86052" - "plane" "(3026 964 612) (3024 964 612) (3024 964 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0.338074] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "55513" + "plane" "(2528 -1216 64) (2528 -1248 64) (2752 -1248 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" "86051" - "plane" "(3026 984 632) (3026 964 612) (3026 964 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -86.2989] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "55512" + "plane" "(2528 -1216 64) (2528 -1216 256) (2528 -1248 256)" + "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" "86050" - "plane" "(3024 964 612) (3024 984 632) (3024 984 636)" + "id" "55511" + "plane" "(2752 -1216 256) (2752 -1216 64) (2752 -1248 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86049" - "plane" "(3026 964 612) (3026 984 632) (3024 984 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0.338074] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "55510" + "plane" "(2752 -1216 64) (2752 -1216 256) (2528 -1216 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86048" - "plane" "(3024 964 616) (3024 984 636) (3026 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0.338074] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "55509" + "plane" "(2752 -1248 256) (2752 -1248 64) (2528 -1248 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" "163 140 0" - "groupid" "219643" + "color" "0 100 229" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218706" + "id" "145386" side { - "id" "86059" - "plane" "(3026 984 632) (3024 984 632) (3024 984 636)" + "id" "55532" + "plane" "(2112 -1536 256) (2112 -1216 256) (2144 -1216 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86058" - "plane" "(3024 1004 612) (3026 1004 612) (3026 1004 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0.338074] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "55531" + "plane" "(2112 -1216 64) (2112 -1536 64) (2144 -1568 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" "86057" - "plane" "(3026 1004 612) (3026 984 632) (3026 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 69.6183] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "55530" + "plane" "(2112 -1536 64) (2112 -1216 64) (2112 -1216 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86056" - "plane" "(3024 984 632) (3024 1004 612) (3024 1004 616)" + "id" "55529" + "plane" "(2144 -1216 64) (2144 -1568 64) (2144 -1568 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86055" - "plane" "(3024 1004 612) (3024 984 632) (3026 984 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0.338074] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "55528" + "plane" "(2112 -1216 64) (2144 -1216 64) (2144 -1216 256)" + "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" "86054" - "plane" "(3026 1004 616) (3026 984 636) (3024 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0.338074] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "55527" + "plane" "(2144 -1568 64) (2112 -1536 64) (2112 -1536 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 100 229" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218707" + "id" "145389" side { - "id" "86064" - "plane" "(3024 1004 616) (3024 984 636) (3004 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 69.6183] 0.188" - "vaxis" "[-1 0 0 -48.3381] 0.188" + "id" "55538" + "plane" "(2144 -1568 256) (2752 -1568 256) (2752 -1600 256)" + "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" "86063" - "plane" "(3024 1004 612) (3004 984 632) (3024 984 632)" + "id" "55537" + "plane" "(2144 -1568 64) (2176 -1600 64) (2752 -1600 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86062" - "plane" "(3024 1004 616) (3024 1004 612) (3024 984 632)" + "id" "55536" + "plane" "(2752 -1568 64) (2752 -1600 64) (2752 -1600 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86061" - "plane" "(3024 1004 612) (3024 1004 616) (3004 984 636)" + "id" "55535" + "plane" "(2144 -1568 64) (2752 -1568 64) (2752 -1568 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86060" - "plane" "(3004 984 632) (3004 984 636) (3024 984 636)" - "material" "TOOLS/TOOLSNODRAW" + "id" "55534" + "plane" "(2752 -1600 64) (2176 -1600 64) (2176 -1600 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55533" + "plane" "(2176 -1600 64) (2144 -1568 64) (2144 -1568 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 100 229" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218708" - side - { - "id" "86070" - "plane" "(3032 1004 400) (3034.67 1004 402.67) (3024 1004 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "145390" side { - "id" "86069" - "plane" "(3034.67 1004 402.67) (3034.67 964 402.672) (3024 964 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55549" + "plane" "(2096 -1200 256) (2096 -1552 256) (2144 -1504 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86068" - "plane" "(3032 1004 400) (3024 1004 400) (3024 964 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[-1 0 0 139.002] 0.2" + "id" "55548" + "plane" "(2096 -1552 256) (2096 -1200 256) (2144 -1248 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86067" - "plane" "(3024 1004 400) (3024 1004 424) (3024 964 424)" + "id" "55547" + "plane" "(2144 -1248 256) (2144 -1504 256) (2144 -1504 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -63620,21 +65728,21 @@ world } side { - "id" "86066" - "plane" "(3032 1004 400) (3032 964 400) (3034.67 964 402.672)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[-0.707107 0 -0.707107 184.957] 0.2" + "id" "55546" + "plane" "(2144 -1248 256) (2144 -1248 320) (2096 -1200 256)" + "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" "86065" - "plane" "(3034.67 964 402.672) (3032 964 400) (3024 964 400)" + "id" "55545" + "plane" "(2096 -1552 256) (2144 -1504 320) (2144 -1504 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -63642,65 +65750,53 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 100 229" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218709" - side - { - "id" "86076" - "plane" "(2984 1012 400) (2984 1014.66 402.668) (2984 1004 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -312.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "145397" side { - "id" "86075" - "plane" "(3024 1014.67 402.669) (3024 1012 400) (3024 1004 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -376.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55560" + "plane" "(2096 -1200 256) (2144 -1248 256) (2400 -992 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86074" - "plane" "(2984 1014.66 402.668) (3024 1014.67 402.669) (3024 1004 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55559" + "plane" "(2352 -944 256) (2400 -992 320) (2144 -1248 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86073" - "plane" "(2984 1004 400) (3024 1004 400) (3024 1012 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 -1 0 -233.002] 0.2" + "id" "55558" + "plane" "(2144 -1248 256) (2144 -1248 320) (2400 -992 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" "86072" - "plane" "(3024 1004 400) (2984 1004 400) (2984 1004 424)" + "id" "55557" + "plane" "(2400 -992 320) (2352 -944 256) (2400 -992 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -63708,87 +65804,64 @@ world } side { - "id" "86071" - "plane" "(2984 1012 400) (3024 1012 400) (3024 1014.67 402.669)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 -0.707107 -0.707107 -300.826] 0.2" + "id" "55556" + "plane" "(2144 -1248 320) (2144 -1248 256) (2096 -1200 256)" + "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" "163 140 0" - "groupid" "219643" + "color" "0 100 229" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218710" - side - { - "id" "86083" - "plane" "(3036 1004 384) (3038.67 1004 386.667) (3032 1004 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 80.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "145399" side { - "id" "86082" - "plane" "(3038.67 1004 386.667) (3038.66 964 386.664) (3032 964 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55570" + "plane" "(2528 -992 256) (2576 -944 256) (2352 -944 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86081" - "plane" "(3036 1004 384) (3024 1004 384) (3024 964 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[-1 0 0 239.002] 0.2" + "id" "55569" + "plane" "(2400 -992 320) (2352 -944 256) (2576 -944 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86080" - "plane" "(3024 1004 400) (3032 1004 400) (3032 964 400)" + "id" "55568" + "plane" "(2528 -992 320) (2528 -992 256) (2400 -992 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86079" - "plane" "(3038.67 1004 386.667) (3036 1004 384) (3036 964 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[-0.707107 0 -0.707107 228.053] 0.2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86078" - "plane" "(3024 1004 384) (3024 1004 400) (3024 964 400)" + "id" "55567" + "plane" "(2528 -992 256) (2528 -992 320) (2576 -944 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -63796,10 +65869,10 @@ world } side { - "id" "86077" - "plane" "(3038.66 964 386.664) (3036 964 384) (3024 964 384)" + "id" "55566" + "plane" "(2352 -944 256) (2400 -992 320) (2400 -992 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -63807,87 +65880,64 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 100 229" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218711" - side - { - "id" "86090" - "plane" "(2984 1016 384) (2984 1018.67 386.67) (2984 1012 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -292.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86089" - "plane" "(3024 1018.67 386.674) (3024 1016 384) (3024 972 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -356.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "145401" side { - "id" "86088" - "plane" "(2984 1018.67 386.67) (3024 1018.67 386.674) (3024 1012 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55580" + "plane" "(2528 -1248 256) (2576 -1200 256) (2576 -944 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86087" - "plane" "(2984 972 384) (3024 972 384) (3024 1016 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 -1 0 -133.002] 0.2" + "id" "55579" + "plane" "(2528 -992 320) (2576 -944 256) (2576 -1200 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86086" - "plane" "(3024 972 400) (2984 972 400) (2984 1012 400)" + "id" "55578" + "plane" "(2528 -1248 320) (2528 -1248 256) (2528 -992 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86085" - "plane" "(2984 1016 384) (3024 1016 384) (3024 1018.67 386.674)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 -0.707107 -0.707107 -257.729] 0.2" + "id" "55577" + "plane" "(2528 -1248 256) (2528 -1248 320) (2576 -1200 256)" + "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" "86084" - "plane" "(3024 972 384) (2984 972 384) (2984 972 400)" + "id" "55576" + "plane" "(2576 -944 256) (2528 -992 320) (2528 -992 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -63895,65 +65945,53 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 100 229" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218712" - side - { - "id" "86096" - "plane" "(3044 1004 368) (3024 1004 368) (3024 964 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "145408" side { - "id" "86095" - "plane" "(3044 1004 368) (3036 1004 384) (3024 1004 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55590" + "plane" "(3072 -1200 256) (2576 -1200 256) (2528 -1248 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86094" - "plane" "(3044 1004 368) (3044 964 368) (3036 964 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55589" + "plane" "(2576 -1200 256) (3072 -1200 256) (3072 -1248 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86093" - "plane" "(3024 1004 384) (3036 1004 384) (3036 964 384)" + "id" "55588" + "plane" "(3072 -1248 256) (2528 -1248 256) (2528 -1248 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86092" - "plane" "(3024 1004 368) (3024 1004 384) (3024 964 384)" + "id" "55587" + "plane" "(3072 -1248 320) (3072 -1200 256) (3072 -1248 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -63961,10 +65999,10 @@ world } side { - "id" "86091" - "plane" "(3044 964 368) (3024 964 368) (3024 964 384)" + "id" "55586" + "plane" "(2528 -1248 320) (2528 -1248 256) (2576 -1200 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -63972,76 +66010,64 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 100 229" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218713" - side - { - "id" "86102" - "plane" "(2984 972 368) (3024 972 368) (3024 1024 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "145412" side { - "id" "86101" - "plane" "(2984 1024 368) (2984 1016 384) (2984 972 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -312.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55600" + "plane" "(2160 -1616 256) (2208 -1568 256) (2144 -1504 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86100" - "plane" "(3024 1024 368) (3024 972 368) (3024 972 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -376.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55599" + "plane" "(2096 -1552 256) (2144 -1504 320) (2208 -1568 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86099" - "plane" "(2984 1024 368) (3024 1024 368) (3024 1016 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 60.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55598" + "plane" "(2208 -1568 256) (2208 -1568 320) (2144 -1504 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" "86098" - "plane" "(3024 972 384) (2984 972 384) (2984 1016 384)" + "id" "55597" + "plane" "(2144 -1504 320) (2096 -1552 256) (2144 -1504 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86097" - "plane" "(3024 972 368) (2984 972 368) (2984 972 384)" + "id" "55596" + "plane" "(2208 -1568 320) (2208 -1568 256) (2160 -1616 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64049,43 +66075,42 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 100 229" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218714" + "id" "145414" side { - "id" "86108" - "plane" "(3020 1012 352) (3018 1012 352) (3018 1018 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "55610" + "plane" "(3072 -1568 256) (2208 -1568 256) (2160 -1616 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86107" - "plane" "(3018 1012 208) (3020 1012 208) (3020 1020 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "55609" + "plane" "(2208 -1568 320) (3072 -1568 320) (3072 -1616 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86106" - "plane" "(3018 1018 208) (3018 1018 352) (3018 1012 352)" + "id" "55608" + "plane" "(3072 -1568 320) (2208 -1568 320) (2208 -1568 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64093,21 +66118,10 @@ world } side { - "id" "86105" - "plane" "(3020 1012 208) (3020 1012 352) (3020 1020 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86104" - "plane" "(3020 1020 208) (3020 1020 352) (3018 1018 352)" + "id" "55607" + "plane" "(2160 -1616 256) (2208 -1568 256) (2208 -1568 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64115,10 +66129,10 @@ world } side { - "id" "86103" - "plane" "(3018 1012 208) (3018 1012 352) (3020 1012 352)" + "id" "55606" + "plane" "(3072 -1568 256) (3072 -1616 256) (3072 -1568 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64126,76 +66140,75 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 100 229" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218715" + "id" "145440" side { - "id" "86114" - "plane" "(3020 972 352) (2988 972 352) (2988 1012 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "id" "55622" + "plane" "(2560 -1216 96) (2560 -960 96) (3072 -960 96)" + "material" "DE_CBBLE/GRASSFLOOR01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86113" - "plane" "(2988 972 208) (3020 972 208) (3020 1012 208)" + "id" "55621" + "plane" "(2560 -960 64) (2560 -1216 64) (3072 -1216 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86112" - "plane" "(3020 972 208) (3020 972 352) (3020 1012 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "55620" + "plane" "(2560 -1216 64) (2560 -960 64) (2560 -960 96)" + "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" "86111" - "plane" "(2988 1012 208) (2988 1012 352) (2988 972 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "55619" + "plane" "(3072 -960 64) (3072 -1216 64) (3072 -1216 96)" + "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" "86110" - "plane" "(3020 1012 208) (3020 1012 352) (2988 1012 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -64.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "55618" + "plane" "(2560 -960 64) (3072 -960 64) (3072 -960 96)" + "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" "86109" - "plane" "(2988 972 208) (2988 972 352) (3020 972 352)" + "id" "55617" + "plane" "(3072 -1216 64) (2560 -1216 64) (2560 -1216 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64203,54 +66216,53 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 115 148" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218716" + "id" "145442" side { - "id" "86120" - "plane" "(3040 964 352) (3020 964 352) (3020 1000 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "55634" + "plane" "(2736 -912 96) (3072 -912 96) (3072 -960 96)" + "material" "DE_CBBLE/GRASSFLOOR01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86119" - "plane" "(3020 964 208) (3040 964 208) (3040 1000 208)" + "id" "55633" + "plane" "(2688 -960 64) (3072 -960 64) (3072 -912 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86118" - "plane" "(3040 964 208) (3040 964 352) (3040 1000 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 148.002] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "55632" + "plane" "(2736 -912 64) (2736 -912 96) (2688 -960 96)" + "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" "86117" - "plane" "(3020 1000 208) (3020 1000 352) (3020 964 352)" + "id" "55631" + "plane" "(3072 -960 64) (3072 -960 96) (3072 -912 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64258,21 +66270,21 @@ world } side { - "id" "86116" - "plane" "(3040 1000 208) (3040 1000 352) (3020 1000 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -264.002] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "55630" + "plane" "(3072 -912 64) (3072 -912 96) (2736 -912 96)" + "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" "86115" - "plane" "(3020 964 208) (3020 964 352) (3040 964 352)" + "id" "55629" + "plane" "(2688 -960 64) (2688 -960 96) (3072 -960 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64280,43 +66292,53 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 115 148" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218717" + "id" "145455" side { - "id" "86126" - "plane" "(2990 1012 352) (2988 1012 352) (2988 1020 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "55641" + "plane" "(2496 -960 96) (2496 -704 96) (2752 -704 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86125" - "plane" "(2988 1012 208) (2990 1012 208) (2990 1018 208)" + "id" "55640" + "plane" "(2496 -704 64) (2496 -960 64) (2688 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55639" + "plane" "(2496 -960 64) (2496 -704 64) (2496 -704 96)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86124" - "plane" "(2990 1012 208) (2990 1012 352) (2990 1018 352)" + "id" "55638" + "plane" "(2752 -704 64) (2752 -896 64) (2752 -896 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64324,21 +66346,21 @@ world } side { - "id" "86123" - "plane" "(2988 1020 208) (2988 1020 352) (2988 1012 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "55637" + "plane" "(2496 -704 64) (2752 -704 64) (2752 -704 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86122" - "plane" "(2990 1018 208) (2990 1018 352) (2988 1020 352)" + "id" "55636" + "plane" "(2688 -960 64) (2496 -960 64) (2496 -960 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64346,10 +66368,10 @@ world } side { - "id" "86121" - "plane" "(2988 1012 208) (2988 1012 352) (2990 1012 352)" + "id" "55635" + "plane" "(2752 -896 64) (2688 -960 64) (2688 -960 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64357,76 +66379,87 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 115 148" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218718" + "id" "145631" side { - "id" "86132" - "plane" "(3044 964 192) (3024 964 192) (3024 1004 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "55667" + "plane" "(2240 -832 72) (2240 -640 72) (2480 -640 72)" + "material" "TEROUST/ARPEGGIO/CRETE/TILE_STREET" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86131" - "plane" "(3024 964 160) (3044 964 160) (3044 1004 160)" + "id" "55666" + "plane" "(2240 -640 64) (2240 -832 64) (2368 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86130" - "plane" "(3044 964 160) (3044 964 192) (3044 1004 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 14.2989] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "55665" + "plane" "(2240 -832 64) (2240 -640 64) (2240 -640 72)" + "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" "86129" - "plane" "(3024 1004 160) (3024 1004 192) (3024 964 192)" + "id" "55664" + "plane" "(2480 -640 64) (2480 -960 64) (2480 -960 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86128" - "plane" "(3044 1004 160) (3044 1004 192) (3024 1004 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -8.84979] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "55663" + "plane" "(2240 -640 64) (2480 -640 64) (2480 -640 72)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86127" - "plane" "(3024 964 160) (3024 964 192) (3044 964 192)" + "id" "55662" + "plane" "(2480 -960 64) (2368 -960 64) (2368 -960 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55661" + "plane" "(2368 -960 64) (2240 -832 64) (2240 -832 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64434,76 +66467,65 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 139 240" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218719" + "id" "145641" side { - "id" "86138" - "plane" "(3024 972 192) (2984 972 192) (2984 1024 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "55692" + "plane" "(2240 -832 72) (2208 -800 72) (2240 -800 72)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86137" - "plane" "(2984 972 160) (3024 972 160) (3024 1024 160)" + "id" "55691" + "plane" "(2208 -800 64) (2240 -832 64) (2240 -800 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86136" - "plane" "(3024 972 160) (3024 972 192) (3024 1024 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 121.022] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86135" - "plane" "(2984 1024 160) (2984 1024 192) (2984 972 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -89.0216] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "55690" + "plane" "(2240 -832 64) (2208 -800 64) (2208 -800 72)" + "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" "86134" - "plane" "(3024 1024 160) (3024 1024 192) (2984 1024 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -93.6154] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "55689" + "plane" "(2240 -800 64) (2240 -832 64) (2240 -832 72)" + "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" "86133" - "plane" "(2984 972 160) (2984 972 192) (3024 972 192)" + "id" "55688" + "plane" "(2208 -800 64) (2240 -800 64) (2240 -800 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64511,43 +66533,43 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 139 240" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218720" + "id" "145710" side { - "id" "86144" - "plane" "(2654 486 352) (2652 488 352) (2660 488 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "55693" + "plane" "(1952 -1024 64) (2208 -800 70) (2368 -960 70)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86143" - "plane" "(2660 486 208) (2660 488 208) (2652 488 208)" + "id" "55694" + "plane" "(2208 -800 64) (1952 -1024 64) (2112 -1184 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86142" - "plane" "(2654 486 208) (2654 486 352) (2660 486 352)" + "id" "55696" + "plane" "(2368 -960 64) (2368 -960 70) (2208 -800 70)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64555,21 +66577,10 @@ world } side { - "id" "86141" - "plane" "(2660 488 208) (2660 488 352) (2652 488 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86140" - "plane" "(2652 488 208) (2652 488 352) (2654 486 352)" + "id" "55697" + "plane" "(1952 -1024 64) (2208 -800 64) (2208 -800 70)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64577,10 +66588,10 @@ world } side { - "id" "86139" - "plane" "(2660 486 208) (2660 486 352) (2660 488 352)" + "id" "55698" + "plane" "(2112 -1184 64) (2368 -960 70) (2368 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64588,76 +66599,76 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 160 161" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218721" + "id" "140872" side { - "id" "86150" - "plane" "(2660 456 352) (2660 488 352) (2700 488 352)" + "id" "54596" + "plane" "(2848 -544 224) (2848 -528 224) (3072 -528 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86149" - "plane" "(2700 456 208) (2700 488 208) (2660 488 208)" + "id" "54595" + "plane" "(2848 -528 96) (2848 -544 96) (3072 -544 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86148" - "plane" "(2660 456 208) (2660 456 352) (2700 456 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54594" + "plane" "(2848 -544 96) (2848 -528 96) (2848 -528 224)" + "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" "86147" - "plane" "(2700 488 208) (2700 488 352) (2660 488 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54593" + "plane" "(3072 -528 96) (3072 -544 96) (3072 -544 224)" + "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" "86146" - "plane" "(2660 488 208) (2660 488 352) (2660 456 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -92.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54592" + "plane" "(2848 -528 96) (3072 -528 96) (3072 -528 224)" + "material" "BRICK/INFWLLG" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86145" - "plane" "(2700 456 208) (2700 456 352) (2700 488 352)" + "id" "54591" + "plane" "(3072 -544 96) (2848 -544 96) (2848 -544 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64665,32 +66676,31 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218722" + "id" "140876" side { - "id" "86155" - "plane" "(2760 200 612) (2780 220 632) (2780 200 632)" + "id" "54608" + "plane" "(3072 -896 224) (3072 -912 224) (2848 -912 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86154" - "plane" "(2780 200 424) (2780 220 424) (2760 200 424)" + "id" "54607" + "plane" "(3072 -912 96) (3072 -896 96) (2848 -896 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64698,164 +66708,173 @@ world } side { - "id" "86153" - "plane" "(2760 200 424) (2760 200 612) (2780 200 632)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -252.002] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "54606" + "plane" "(3072 -896 96) (3072 -912 96) (3072 -912 224)" + "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" "86152" - "plane" "(2780 200 424) (2780 200 632) (2780 220 632)" + "id" "54605" + "plane" "(2848 -912 96) (2848 -896 96) (2848 -896 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54604" + "plane" "(3072 -912 96) (2848 -912 96) (2848 -912 224)" + "material" "BRICK/INFWLLG" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86151" - "plane" "(2760 200 612) (2760 200 424) (2780 220 424)" + "id" "54603" + "plane" "(2848 -896 96) (3072 -896 96) (3072 -896 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218723" + "id" "141378" side { - "id" "86161" - "plane" "(2780 200 632) (2780 220 632) (2792 208 620)" + "id" "54812" + "plane" "(3072 -1600 256) (2752 -1600 256) (2752 -1216 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86160" - "plane" "(2780 200 424) (2792 200 424) (2792 208 424)" + "id" "54811" + "plane" "(3072 -1216 64) (2752 -1216 64) (2752 -1600 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86159" - "plane" "(2792 200 620) (2792 200 424) (2780 200 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -99.9983] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "54810" + "plane" "(3072 -1600 64) (2752 -1600 64) (2752 -1600 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86158" - "plane" "(2780 220 424) (2780 220 632) (2780 200 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "54809" + "plane" "(2752 -1216 64) (3072 -1216 64) (3072 -1216 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86157" - "plane" "(2792 208 424) (2792 208 620) (2780 220 632)" + "id" "54808" + "plane" "(2752 -1600 64) (2752 -1216 64) (2752 -1216 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86156" - "plane" "(2792 200 424) (2792 200 620) (2792 208 620)" + "id" "54807" + "plane" "(3072 -1216 64) (3072 -1600 64) (3072 -1600 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218724" + "id" "141403" side { - "id" "86167" - "plane" "(2760 189.331 402.673) (2760 192 400) (2760 200 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54813" + "plane" "(2480 -704 112) (2480 -640 112) (2496 -640 112)" + "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" "86166" - "plane" "(2760 189.331 402.673) (2760 200 424) (2792 200 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54814" + "plane" "(2480 -640 64) (2480 -704 64) (2496 -704 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" "86165" - "plane" "(2760 192 400) (2792 192 400) (2792 200 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 1 0 403.002] 0.2" + "id" "54815" + "plane" "(2480 -704 64) (2480 -640 64) (2480 -640 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86164" - "plane" "(2760 200 400) (2792 200 400) (2792 200 424)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "54816" + "plane" "(2496 -640 64) (2496 -704 64) (2496 -704 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64863,21 +66882,21 @@ world } side { - "id" "86163" - "plane" "(2760 192 400) (2760 189.331 402.673) (2792 189.333 402.671)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0.707107 -0.707107 50.3921] 0.2" + "id" "54817" + "plane" "(2480 -640 64) (2496 -640 64) (2496 -640 112)" + "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" "86162" - "plane" "(2792 192 400) (2792 189.333 402.671) (2792 200 424)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "id" "54818" + "plane" "(2496 -704 64) (2480 -704 64) (2480 -704 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -64885,153 +66904,144 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 133 142" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218725" - side - { - "id" "86174" - "plane" "(2760 185.334 386.666) (2760 188 384) (2760 200 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 344.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "141413" side { - "id" "86173" - "plane" "(2760 185.334 386.666) (2760 192 400) (2792 192 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54866" + "plane" "(2480 -704 116) (2480 -640 116) (2496 -640 116)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86172" - "plane" "(2760 188 384) (2792 188 384) (2792 200 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 1 0 503.002] 0.2" + "id" "54865" + "plane" "(2478 -640 112) (2478 -706 112) (2498 -706 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86171" - "plane" "(2760 192 400) (2760 200 400) (2792 200 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 48] 0.25" + "id" "54864" + "plane" "(2478 -706 112) (2478 -640 112) (2480 -640 116)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86170" - "plane" "(2760 188 384) (2760 185.334 386.666) (2792 185.336 386.664)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0.707107 -0.707107 93.4888] 0.2" + "id" "54863" + "plane" "(2498 -640 112) (2498 -706 112) (2496 -704 116)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86169" - "plane" "(2760 200 384) (2792 200 384) (2792 200 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "54862" + "plane" "(2478 -640 112) (2498 -640 112) (2496 -640 116)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86168" - "plane" "(2792 188 384) (2792 185.336 386.664) (2792 192 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "54861" + "plane" "(2498 -706 112) (2478 -706 112) (2480 -704 116)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 133 142" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218726" + "id" "141430" side { - "id" "86180" - "plane" "(2760 180 368) (2792 180 368) (2792 200 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "54878" + "plane" "(2752 -320 192) (2752 32 192) (2760 32 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86179" - "plane" "(2760 180 368) (2760 200 368) (2760 200 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54877" + "plane" "(2752 32 96) (2752 -320 96) (2760 -320 96)" + "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" "86178" - "plane" "(2760 180 368) (2760 188 384) (2792 188 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54876" + "plane" "(2752 -320 96) (2752 32 96) (2752 32 192)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86177" - "plane" "(2760 188 384) (2760 200 384) (2792 200 384)" + "id" "54875" + "plane" "(2760 32 96) (2760 -320 96) (2760 -320 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86176" - "plane" "(2760 200 368) (2792 200 368) (2792 200 384)" + "id" "54874" + "plane" "(2752 32 96) (2760 32 96) (2760 32 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -65039,98 +67049,86 @@ world } side { - "id" "86175" - "plane" "(2792 180 368) (2792 188 384) (2792 200 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "54873" + "plane" "(2760 -320 96) (2752 -320 96) (2752 -320 192)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218727" - side - { - "id" "86187" - "plane" "(2745.33 240 386.672) (2748 240 384) (2792 240 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -168.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "141459" side { - "id" "86186" - "plane" "(2748 200 384) (2745.33 200 386.672) (2752 200 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -232.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54903" + "plane" "(1856 -192 96) (1856 320 96) (2752 320 96)" + "material" "DEV/DEV_BLENDMEASURE2" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86185" - "plane" "(2745.33 200 386.672) (2745.33 240 386.672) (2752 240 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54902" + "plane" "(1856 320 64) (1856 -192 64) (2752 -192 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" "86184" - "plane" "(2792 200 384) (2792 240 384) (2748 240 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[1 0 0 -9.00171] 0.2" + "id" "54901" + "plane" "(1856 320 64) (1856 320 96) (1856 -192 96)" + "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" "86183" - "plane" "(2752 200 400) (2752 240 400) (2792 240 400)" + "id" "54900" + "plane" "(2752 320 64) (2752 320 96) (1856 320 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86182" - "plane" "(2748 200 384) (2748 240 384) (2745.33 240 386.672)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0.707107 0 -0.707107 -253.482] 0.2" + "id" "54899" + "plane" "(1856 -192 64) (1856 -192 96) (2752 -192 96)" + "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" "86181" - "plane" "(2792 240 384) (2792 200 384) (2792 200 400)" + "id" "54898" + "plane" "(2752 -192 64) (2752 -192 96) (2752 320 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -65138,98 +67136,97 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218728" + "id" "141460" side { - "id" "86193" - "plane" "(2792 200 368) (2792 240 368) (2740 240 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "54915" + "plane" "(2752 -320 224) (2752 -304 224) (2768 -304 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86192" - "plane" "(2740 240 368) (2792 240 368) (2792 240 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -188.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54914" + "plane" "(2752 -304 192) (2752 -320 192) (2768 -320 192)" + "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" "86191" - "plane" "(2740 200 368) (2748 200 384) (2792 200 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -252.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54913" + "plane" "(2752 -320 192) (2752 -304 192) (2752 -304 224)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86190" - "plane" "(2740 200 368) (2740 240 368) (2748 240 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54912" + "plane" "(2768 -304 192) (2768 -320 192) (2768 -320 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86189" - "plane" "(2748 200 384) (2748 240 384) (2792 240 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "54911" + "plane" "(2752 -304 192) (2768 -304 192) (2768 -304 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86188" - "plane" "(2792 240 368) (2792 200 368) (2792 200 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "54910" + "plane" "(2768 -320 192) (2752 -320 192) (2752 -320 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218729" + "id" "141464" side { - "id" "86199" - "plane" "(2752 204 352) (2752 236 352) (2792 236 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "id" "54927" + "plane" "(2752 16 224) (2752 32 224) (2768 32 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -65237,10 +67234,10 @@ world } side { - "id" "86198" - "plane" "(2792 204 208) (2792 236 208) (2752 236 208)" + "id" "54926" + "plane" "(2752 32 192) (2752 16 192) (2768 16 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -65248,120 +67245,119 @@ world } side { - "id" "86197" - "plane" "(2752 204 208) (2752 204 352) (2792 204 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54925" + "plane" "(2752 16 192) (2752 32 192) (2752 32 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86196" - "plane" "(2792 236 208) (2792 236 352) (2752 236 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54924" + "plane" "(2768 32 192) (2768 16 192) (2768 16 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86195" - "plane" "(2752 236 208) (2752 236 352) (2752 204 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -328.002] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54923" + "plane" "(2752 32 192) (2768 32 192) (2768 32 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86194" - "plane" "(2792 204 208) (2792 204 352) (2792 236 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "54922" + "plane" "(2768 16 192) (2752 16 192) (2752 16 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218730" + "id" "141467" side { - "id" "86205" - "plane" "(2764 184 352) (2764 204 352) (2792 204 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "54951" + "plane" "(3088 -320 192) (2760 -320 192) (2760 -312 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86204" - "plane" "(2792 184 208) (2792 204 208) (2764 204 208)" + "id" "54950" + "plane" "(3088 -312 96) (2760 -312 96) (2760 -320 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86203" - "plane" "(2764 184 208) (2764 184 352) (2792 184 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 24.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54949" + "plane" "(3088 -320 96) (2760 -320 96) (2760 -320 192)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[-1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86202" - "plane" "(2792 204 208) (2792 204 352) (2764 204 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "54948" + "plane" "(2760 -312 96) (3088 -312 96) (3088 -312 192)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[-1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86201" - "plane" "(2764 204 208) (2764 204 352) (2764 184 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -16.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54947" + "plane" "(2760 -320 96) (2760 -312 96) (2760 -312 192)" + "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" "86200" - "plane" "(2792 184 208) (2792 184 352) (2792 204 352)" + "id" "54946" + "plane" "(3088 -312 96) (3088 -320 96) (3088 -320 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -65369,285 +67365,283 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218731" + "id" "141471" side { - "id" "86211" - "plane" "(2740 200 192) (2740 240 192) (2792 240 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "54963" + "plane" "(3072 -320 224) (3072 -304 224) (3088 -304 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86210" - "plane" "(2792 200 160) (2792 240 160) (2740 240 160)" + "id" "54962" + "plane" "(3072 -304 192) (3072 -320 192) (3088 -320 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86209" - "plane" "(2740 200 160) (2740 200 192) (2792 200 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -81.7014] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "54961" + "plane" "(3072 -320 192) (3072 -304 192) (3072 -304 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86208" - "plane" "(2792 240 160) (2792 240 192) (2740 240 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 113.701] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "54960" + "plane" "(3088 -304 192) (3088 -320 192) (3088 -320 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86207" - "plane" "(2740 240 160) (2740 240 192) (2740 200 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 37.4474] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "54959" + "plane" "(3072 -304 192) (3088 -304 192) (3088 -304 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86206" - "plane" "(2792 200 160) (2792 200 192) (2792 240 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "54958" + "plane" "(3088 -320 192) (3072 -320 192) (3072 -320 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218732" + "id" "141602" side { - "id" "86217" - "plane" "(2700 432 1056) (2700 492 1056) (2760 492 1056)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "54975" + "plane" "(2752 -528 96) (2752 -320 96) (3072 -320 96)" + "material" "TEROUST/ARPEGGIO/CRETE/TILE_STREET" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86216" - "plane" "(2760 432 160.125) (2760 492 160.125) (2700 492 160.125)" + "id" "54974" + "plane" "(2752 -320 64) (2752 -528 64) (3072 -528 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86215" - "plane" "(2700 432 160.125) (2700 432 1056) (2760 432 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 220.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54973" + "plane" "(2752 -528 64) (2752 -320 64) (2752 -320 96)" + "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" "86214" - "plane" "(2760 492 160.125) (2760 492 1056) (2700 492 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 220.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54972" + "plane" "(3072 -320 64) (3072 -528 64) (3072 -528 96)" + "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" "86213" - "plane" "(2700 492 160.125) (2700 492 1056) (2700 432 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 180.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54971" + "plane" "(2752 -320 64) (3072 -320 64) (3072 -320 96)" + "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" "86212" - "plane" "(2760 432 160.125) (2760 432 1056) (2760 492 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 180.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54970" + "plane" "(3072 -528 64) (2752 -528 64) (2752 -528 96)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 251 136" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218733" + "id" "142101" side { - "id" "86223" - "plane" "(2700 712 1056) (2700 772 1056) (2760 772 1056)" + "id" "55104" + "plane" "(-100 456 0) (-128 768 0) (-192 768 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -41.9115] 0.25" + "vaxis" "[0 -1 0 -2.7832] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86222" - "plane" "(2760 712 160.125) (2760 772 160.125) (2700 772 160.125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "55105" + "plane" "(-128 768 64) (-100 456 64) (-192 448 64)" + "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" + "uaxis" "[0.992495 0.0863039 0.0866296 -182.597] 0.25" + "vaxis" "[0.0866296 -0.996241 0 83.7947] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86221" - "plane" "(2700 712 160.125) (2700 712 1056) (2760 712 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 220.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55106" + "plane" "(-192 448 0) (-192 768 0) (-192 768 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 2.7832] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86220" - "plane" "(2760 772 160.125) (2760 772 1056) (2700 772 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 220.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55107" + "plane" "(-100 456 64) (-128 768 64) (-128 768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 2.7832] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86219" - "plane" "(2700 772 160.125) (2700 772 1056) (2700 712 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 180.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55108" + "plane" "(-192 448 0) (-192 448 64) (-100 456 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86218" - "plane" "(2760 712 160.125) (2760 712 1056) (2760 772 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 180.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55109" + "plane" "(-128 768 0) (-128 768 64) (-192 768 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -41.9115] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "142100" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218734" + "id" "142102" side { - "id" "86229" - "plane" "(2688 452 480) (2688 472 480) (2700 460 468)" + "id" "55110" + "plane" "(-8 476 0) (-96 784 0) (-128 768 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -41.9115] 0.25" + "vaxis" "[0 -1 0 -2.7832] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86228" - "plane" "(2688 452 400) (2700 452 400) (2700 460 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 1 0 167.002] 0.2" + "id" "55111" + "plane" "(-96 784 64) (-8 476 64) (-100 456 64)" + "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" + "uaxis" "[0.954873 0.207581 0.21243 -451.061] 0.25" + "vaxis" "[0.21243 -0.977176 0 99.3413] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86227" - "plane" "(2700 452 468) (2700 452 400) (2688 452 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -47.9983] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55112" + "plane" "(-100 456 0) (-128 768 0) (-128 768 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 2.7832] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86226" - "plane" "(2688 472 400) (2688 472 480) (2688 452 480)" + "id" "55113" + "plane" "(-8 476 64) (-96 784 64) (-96 784 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 1 0 2.7832] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -65655,21 +67649,21 @@ world } side { - "id" "86225" - "plane" "(2700 460 400) (2700 460 468) (2688 472 480)" + "id" "55114" + "plane" "(-100 456 0) (-100 456 64) (-8 476 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86224" - "plane" "(2700 452 400) (2700 452 468) (2700 460 468)" + "id" "55115" + "plane" "(-96 784 0) (-96 784 64) (-128 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -41.9115] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -65677,76 +67671,77 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "142100" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218735" + "id" "142103" side { - "id" "86235" - "plane" "(2760 180 192) (2760 200 192) (2792 200 192)" + "id" "55116" + "plane" "(80 504 0) (-32 816 0) (-96 784 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 -41.9115] 0.25" + "vaxis" "[0 -1 0 -2.7832] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86234" - "plane" "(2792 180 160) (2792 200 160) (2760 200 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "55117" + "plane" "(-32 816 64) (80 504 64) (-8 476 64)" + "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" + "uaxis" "[0.908067 0.288931 0.303204 -630.686] 0.25" + "vaxis" "[0.303204 -0.952926 0 56.0731] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86233" - "plane" "(2760 180 160) (2760 180 192) (2792 180 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -60.424] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "55118" + "plane" "(-8 476 0) (-96 784 0) (-96 784 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 2.7832] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86232" - "plane" "(2792 200 160) (2792 200 192) (2760 200 192)" + "id" "55119" + "plane" "(80 504 64) (-32 816 64) (-32 816 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[0 1 0 2.7832] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86231" - "plane" "(2760 200 160) (2760 200 192) (2760 180 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 122.214] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "55120" + "plane" "(-8 476 0) (-8 476 64) (80 504 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86230" - "plane" "(2792 180 160) (2792 180 192) (2792 200 192)" + "id" "55121" + "plane" "(-32 816 0) (-32 816 64) (-96 784 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 -41.9115] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -65754,186 +67749,200 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "142100" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218736" + "id" "142104" side { - "id" "86240" - "plane" "(2780 240 632) (2780 220 632) (2760 240 612)" + "id" "55122" + "plane" "(164 552 0) (0 832 0) (-32 816 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 -41.9115] 0.25" + "vaxis" "[0 -1 0 -2.7832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55123" + "plane" "(0 832 64) (164 552 64) (80 504 64)" + "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" + "uaxis" "[0.753846 0.430769 0.496139 -916.673] 0.25" + "vaxis" "[0.496139 -0.868243 0 847.614] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86239" - "plane" "(2780 240 424) (2760 240 424) (2780 220 424)" + "id" "55124" + "plane" "(80 504 0) (-32 816 0) (-32 816 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 2.7832] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86238" - "plane" "(2760 240 612) (2760 240 424) (2780 240 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -252.002] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "55125" + "plane" "(164 552 64) (0 832 64) (0 832 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 2.7832] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86237" - "plane" "(2780 220 424) (2780 220 632) (2780 240 632)" + "id" "55126" + "plane" "(80 504 0) (80 504 64) (164 552 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86236" - "plane" "(2760 240 424) (2760 240 612) (2780 220 632)" + "id" "55127" + "plane" "(0 832 0) (0 832 64) (-32 816 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -41.9115] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "142100" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218737" + "id" "142105" side { - "id" "86246" - "plane" "(2792 240 620) (2792 232 620) (2780 220 632)" + "id" "55128" + "plane" "(240 608 0) (64 864 0) (0 832 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 -41.9115] 0.25" + "vaxis" "[0 -1 0 -2.7832] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86245" - "plane" "(2780 240 424) (2780 220 424) (2792 232 424)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "55129" + "plane" "(64 864 64) (240 608 64) (164 552 64)" + "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" + "uaxis" "[0.648115 0.477558 0.593199 -975.471] 0.25" + "vaxis" "[0.593199 -0.805056 0 644.425] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86244" - "plane" "(2792 240 424) (2792 240 620) (2780 240 632)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -99.9983] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "55130" + "plane" "(164 552 0) (0 832 0) (0 832 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 2.7832] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86243" - "plane" "(2780 240 424) (2780 240 632) (2780 220 632)" + "id" "55131" + "plane" "(240 608 64) (64 864 64) (64 864 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 2.7832] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86242" - "plane" "(2792 232 620) (2792 232 424) (2780 220 424)" + "id" "55132" + "plane" "(164 552 0) (164 552 64) (240 608 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86241" - "plane" "(2792 232 424) (2792 232 620) (2792 240 620)" + "id" "55133" + "plane" "(64 864 0) (64 864 64) (0 832 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -41.9115] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "142100" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218738" + "id" "142106" side { - "id" "86251" - "plane" "(2760 240 592) (2780 240 612) (2780 220 612)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -84.424] 0.188" - "vaxis" "[0 -1 0 -8.85166] 0.188" + "id" "55134" + "plane" "(320 672 0) (128 896 0) (64 864 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -41.9115] 0.25" + "vaxis" "[0 -1 0 -2.7832] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86250" - "plane" "(2760 240 588) (2780 220 608) (2780 240 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "55135" + "plane" "(128 896 64) (320 672 64) (240 608 64)" + "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" + "uaxis" "[0.609756 0.487805 0.624695 -971.629] 0.25" + "vaxis" "[0.624695 -0.780869 0 555.366] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86249" - "plane" "(2760 240 592) (2760 240 588) (2780 240 608)" + "id" "55136" + "plane" "(240 608 0) (64 864 0) (64 864 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 2.7832] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -65941,10 +67950,10 @@ world } side { - "id" "86248" - "plane" "(2760 240 588) (2760 240 592) (2780 220 612)" + "id" "55137" + "plane" "(320 672 64) (128 896 64) (128 896 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 2.7832] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -65952,10 +67961,21 @@ world } side { - "id" "86247" - "plane" "(2780 220 608) (2780 220 612) (2780 240 612)" + "id" "55138" + "plane" "(240 608 0) (240 608 64) (320 672 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55139" + "plane" "(128 896 0) (128 896 64) (64 864 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -41.9115] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -65963,1011 +67983,975 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "142100" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218739" + "id" "143056" side { - "id" "86257" - "plane" "(2762 710 1056) (2698 710 1056) (2698 774 1056)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "55163" + "plane" "(-192 452 70) (-100 456 70) (-100 452 70)" + "material" "CONCRETE/ROADPARKINGLOT" + "uaxis" "[1 0 0 -921] 0.25" + "vaxis" "[0 -1 0 158] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86256" - "plane" "(2760 712 1054) (2762 710 1056) (2762 774 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 180.002] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "55162" + "plane" "(-100 456 64) (-192 452 64) (-100 452 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" "86255" - "plane" "(2760 712 1054) (2760 772 1054) (2700 772 1054)" + "id" "55161" + "plane" "(-192 452 70) (-192 452 64) (-100 456 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86254" - "plane" "(2762 710 1056) (2760 712 1054) (2700 712 1054)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 220.002] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86253" - "plane" "(2760 772 1054) (2762 774 1056) (2698 774 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 220.002] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "55160" + "plane" "(-100 456 70) (-100 456 64) (-100 452 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86252" - "plane" "(2700 772 1054) (2698 774 1056) (2698 710 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 180.002] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "55158" + "plane" "(-100 452 70) (-100 452 64) (-192 452 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218740" + "id" "143060" side { - "id" "86263" - "plane" "(2744 204 352) (2746 206 352) (2752 206 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "55175" + "plane" "(-8.00001 476 70) (0 452 70) (-100 452 70)" + "material" "CONCRETE/ROADPARKINGLOT" + "uaxis" "[1 0 0 -921] 0.25" + "vaxis" "[0 -1 0 158] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86262" - "plane" "(2752 204 208) (2752 206 208) (2746 206 208)" + "id" "55174" + "plane" "(0 452 64) (-8.00001 476 64) (-100 456 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86261" - "plane" "(2752 206 208) (2752 206 352) (2746 206 352)" + "id" "55173" + "plane" "(-100 456 70) (-100 452 70) (-100 452 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86260" - "plane" "(2744 204 208) (2744 204 352) (2752 204 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "55172" + "plane" "(0 452 70) (-8.00001 476 70) (-8.00001 476 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86259" - "plane" "(2746 206 208) (2746 206 352) (2744 204 352)" + "id" "55171" + "plane" "(-8.00001 476 70) (-100 456 70) (-100 456 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86258" - "plane" "(2752 204 208) (2752 204 352) (2752 206 352)" + "id" "55170" + "plane" "(-100 452 70) (0 452 70) (0 452 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218741" + "id" "143064" side { - "id" "86269" - "plane" "(2746 234 352) (2744 236 352) (2752 236 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "55187" + "plane" "(80 448 70) (0 452 70) (-8 476 70)" + "material" "CONCRETE/ROADPARKINGLOT" + "uaxis" "[1 0 0 -921] 0.25" + "vaxis" "[0 -1 0 158] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86268" - "plane" "(2752 234 208) (2752 236 208) (2744 236 208)" + "id" "55186" + "plane" "(80 504 64) (-8 476 64) (0 452 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86267" - "plane" "(2746 234 208) (2746 234 352) (2752 234 352)" + "id" "55185" + "plane" "(0 452 70) (0 452 64) (-8 476 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86266" - "plane" "(2752 236 208) (2752 236 352) (2744 236 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "55184" + "plane" "(80 504 70) (80 504 64) (80 448 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86265" - "plane" "(2744 236 208) (2744 236 352) (2746 234 352)" + "id" "55183" + "plane" "(-8 476 70) (-8 476 64) (80 504 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86264" - "plane" "(2752 234 208) (2752 234 352) (2752 236 352)" + "id" "55182" + "plane" "(80 448 70) (80 448 64) (0 452 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218742" + "id" "143066" side { - "id" "86275" - "plane" "(2760 236 368) (2760 240 368) (2792 240 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "55199" + "plane" "(128 448 70) (80 448 70) (80 504 70)" + "material" "CONCRETE/ROADPARKINGLOT" + "uaxis" "[1 0 0 -921] 0.25" + "vaxis" "[0 -1 0 158] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86274" - "plane" "(2792 236 192) (2792 240 192) (2760 240 192)" + "id" "55198" + "plane" "(164 552 64) (80 504 64) (80 448 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86273" - "plane" "(2760 236 192) (2760 236 368) (2792 236 368)" + "id" "55197" + "plane" "(80 448 70) (80 448 64) (80 504 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86272" - "plane" "(2792 240 192) (2792 240 368) (2760 240 368)" + "id" "55196" + "plane" "(164 552 70) (164 552 64) (128 448 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86271" - "plane" "(2760 240 192) (2760 240 368) (2760 236 368)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "55195" + "plane" "(80 504 70) (80 504 64) (164 552 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86270" - "plane" "(2792 236 192) (2792 236 368) (2792 240 368)" + "id" "55194" + "plane" "(128 448 70) (128 448 64) (80 448 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218743" + "id" "143068" side { - "id" "86280" - "plane" "(2760 200 616) (2780 220 636) (2780 200 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -5.1037] 0.188" - "vaxis" "[0 1 0 82.7247] 0.188" + "id" "55211" + "plane" "(128 448 70) (164 552 70) (240 608 70)" + "material" "CONCRETE/ROADPARKINGLOT" + "uaxis" "[1 0 0 -921] 0.25" + "vaxis" "[0 -1 0 158] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86279" - "plane" "(2760 200 612) (2780 200 632) (2780 220 632)" + "id" "55210" + "plane" "(164 552 64) (128 448 64) (384 640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86278" - "plane" "(2760 200 612) (2760 200 616) (2780 200 636)" + "id" "55209" + "plane" "(128 448 64) (164 552 64) (164 552 70)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86277" - "plane" "(2780 220 632) (2780 220 636) (2760 200 616)" + "id" "55208" + "plane" "(240 608 64) (384 640 64) (384 640 70)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86276" - "plane" "(2780 200 632) (2780 200 636) (2780 220 636)" + "id" "55207" + "plane" "(164 552 64) (240 608 64) (240 608 70)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55206" + "plane" "(384 640 64) (128 448 64) (128 448 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218744" - side - { - "id" "86286" - "plane" "(2780 200 632) (2780 198 632) (2780 198 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "143071" side { - "id" "86285" - "plane" "(2760 198 612) (2760 200 612) (2760 200 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -2.7247] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "55223" + "plane" "(240 608 70) (320 672 70) (384 640 70)" + "material" "CONCRETE/ROADPARKINGLOT" + "uaxis" "[1 0 0 -921] 0.25" + "vaxis" "[0 -1 0 158] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86284" - "plane" "(2780 198 632) (2760 198 612) (2760 198 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -5.1037] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "55222" + "plane" "(384 640 64) (320 672 64) (240 608 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86283" - "plane" "(2760 200 612) (2780 200 632) (2780 200 636)" + "id" "55221" + "plane" "(240 608 64) (240 608 70) (384 640 70)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86282" - "plane" "(2760 198 612) (2780 198 632) (2780 200 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -2.7247] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "55220" + "plane" "(384 640 64) (384 640 70) (320 672 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86281" - "plane" "(2760 200 616) (2780 200 636) (2780 198 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -2.7247] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "55219" + "plane" "(320 672 64) (320 672 70) (240 608 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218745" + "id" "143073" side { - "id" "86291" - "plane" "(2688 732 480) (2700 732 480) (2700 720 468)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "55233" + "plane" "(384 736 70) (384 640 70) (320 672 70)" + "material" "CONCRETE/ROADPARKINGLOT" + "uaxis" "[1 0 0 -921] 0.25" + "vaxis" "[0 -1 0 158] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86290" - "plane" "(2688 732 400) (2700 720 400) (2700 732 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[-1 0 0 95.0017] 0.2" + "id" "55232" + "plane" "(384 736 64) (320 672 64) (384 640 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86289" - "plane" "(2700 732 400) (2700 732 480) (2688 732 480)" + "id" "55231" + "plane" "(320 672 70) (384 640 70) (384 640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86288" - "plane" "(2700 720 468) (2700 720 400) (2688 732 400)" + "id" "55230" + "plane" "(384 640 70) (384 736 70) (384 736 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86287" - "plane" "(2700 720 400) (2700 720 468) (2700 732 480)" + "id" "55229" + "plane" "(384 736 70) (320 672 70) (320 672 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218746" - side - { - "id" "86297" - "plane" "(2688 712 480) (2688 732 480) (2700 720 468)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "143079" side { - "id" "86296" - "plane" "(2688 712 400) (2700 712 400) (2700 720 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 1 0 403.002] 0.2" + "id" "55243" + "plane" "(0 448 70) (0 452 70) (80 448 70)" + "material" "CONCRETE/ROADPARKINGLOT" + "uaxis" "[1 0 0 -921] 0.25" + "vaxis" "[0 -1 0 158] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86295" - "plane" "(2700 712 468) (2700 712 400) (2688 712 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -47.9983] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55242" + "plane" "(0 448 64) (80 448 64) (0 452 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86294" - "plane" "(2688 732 400) (2688 732 480) (2688 712 480)" + "id" "55241" + "plane" "(0 452 70) (0 452 64) (80 448 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86293" - "plane" "(2700 720 400) (2700 720 468) (2688 732 480)" + "id" "55240" + "plane" "(0 448 70) (0 448 64) (0 452 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86292" - "plane" "(2700 712 400) (2700 712 468) (2700 720 468)" + "id" "55239" + "plane" "(80 448 70) (80 448 64) (0 448 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218747" + "id" "143095" side { - "id" "86303" - "plane" "(2700 752 468) (2700 744 468) (2688 732 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "55255" + "plane" "(592 944 70) (736 1088 70) (784 1040 70)" + "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" "86302" - "plane" "(2688 752 400) (2688 732 400) (2700 744 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 -1 0 -469.002] 0.2" + "id" "55254" + "plane" "(736 1088 64) (592 944 64) (640 896 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86301" - "plane" "(2700 752 400) (2700 752 468) (2688 752 480)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -47.9983] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55253" + "plane" "(592 944 64) (592 944 70) (640 896 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86300" - "plane" "(2688 752 400) (2688 752 480) (2688 732 480)" + "id" "55252" + "plane" "(784 1040 64) (784 1040 70) (736 1088 70)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86299" - "plane" "(2700 744 468) (2700 744 400) (2688 732 400)" + "id" "55251" + "plane" "(736 1088 64) (736 1088 70) (592 944 70)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86298" - "plane" "(2700 744 400) (2700 744 468) (2700 752 468)" + "id" "55250" + "plane" "(640 896 64) (640 896 70) (784 1040 70)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218748" + "id" "143098" side { - "id" "86308" - "plane" "(2688 732 480) (2700 744 468) (2700 732 480)" + "id" "55267" + "plane" "(608 928 70) (448 768 70) (432 784 70)" + "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" "55266" + "plane" "(592 944 64) (432 784 64) (448 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86307" - "plane" "(2700 732 400) (2700 744 400) (2688 732 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[-1 0 0 95.0017] 0.2" + "id" "55265" + "plane" "(448 768 70) (448 768 64) (432 784 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86306" - "plane" "(2688 732 400) (2688 732 480) (2700 732 480)" + "id" "55264" + "plane" "(592 944 70) (592 944 64) (608 928 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86305" - "plane" "(2700 744 400) (2700 744 468) (2688 732 480)" + "id" "55263" + "plane" "(432 784 70) (432 784 64) (592 944 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86304" - "plane" "(2700 744 468) (2700 744 400) (2700 732 400)" + "id" "55262" + "plane" "(608 928 70) (608 928 64) (448 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218749" + "id" "143495" side { - "id" "86314" - "plane" "(2668 760 400) (2668 762.668 402.668) (2668 752 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55279" + "plane" "(2752 -136 224) (2752 -120 224) (2768 -120 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86313" - "plane" "(2668 762.668 402.668) (2700 762.669 402.669) (2700 752 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55278" + "plane" "(2752 -120 192) (2752 -136 192) (2768 -136 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86312" - "plane" "(2668 752 400) (2700 752 400) (2700 760 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 -1 0 -469.002] 0.2" + "id" "55277" + "plane" "(2752 -136 192) (2752 -120 192) (2752 -120 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86311" - "plane" "(2668 752 400) (2668 752 424) (2700 752 424)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55276" + "plane" "(2768 -120 192) (2768 -136 192) (2768 -136 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86310" - "plane" "(2668 760 400) (2700 760 400) (2700 762.669 402.669)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 -0.707107 -0.707107 -167.781] 0.2" + "id" "55275" + "plane" "(2752 -120 192) (2768 -120 192) (2768 -120 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86309" - "plane" "(2700 762.669 402.669) (2700 760 400) (2700 752 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55274" + "plane" "(2768 -136 192) (2752 -136 192) (2752 -136 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218750" - side - { - "id" "86321" - "plane" "(2653.33 752 386.674) (2656 752 384) (2700 752 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -220.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "143496" side { - "id" "86320" - "plane" "(2656 712 384) (2653.33 712 386.672) (2660 712 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -284.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55291" + "plane" "(2752 -176 224) (2752 -160 224) (2768 -160 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86319" - "plane" "(2653.33 712 386.672) (2653.33 752 386.674) (2660 752 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55290" + "plane" "(2752 -160 192) (2752 -176 192) (2768 -176 192)" + "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" "86318" - "plane" "(2700 712 384) (2700 752 384) (2656 752 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[1 0 0 -61.0017] 0.2" + "id" "55289" + "plane" "(2752 -176 192) (2752 -160 192) (2752 -160 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86317" - "plane" "(2660 712 400) (2660 752 400) (2700 752 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "55288" + "plane" "(2768 -160 192) (2768 -176 192) (2768 -176 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86316" - "plane" "(2656 712 384) (2656 752 384) (2653.33 752 386.674)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0.707107 0 -0.707107 71.7864] 0.2" + "id" "55287" + "plane" "(2752 -160 192) (2768 -160 192) (2768 -160 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86315" - "plane" "(2700 752 384) (2700 712 384) (2700 712 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55286" + "plane" "(2768 -176 192) (2752 -176 192) (2752 -176 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218751" - side - { - "id" "86328" - "plane" "(2668 764 384) (2668 766.666 386.665) (2668 760 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -16.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "143527" side { - "id" "86327" - "plane" "(2668 766.666 386.665) (2700 766.665 386.665) (2700 760 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55327" + "plane" "(2752 64 224) (2768 64 224) (2768 48 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[1 0 0 12] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86326" - "plane" "(2668 752 384) (2700 752 384) (2700 764 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 -1 0 -369.002] 0.2" + "id" "55326" + "plane" "(2752 48 192) (2768 48 192) (2768 64 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[1 0 0 -20] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86325" - "plane" "(2668 752 400) (2668 760 400) (2700 760 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "id" "55325" + "plane" "(2752 64 192) (2752 64 224) (2752 48 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86324" - "plane" "(2668 764 384) (2700 764 384) (2700 766.665 386.665)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 -0.707107 -0.707107 -124.685] 0.2" + "id" "55324" + "plane" "(2768 48 192) (2768 48 224) (2768 64 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86323" - "plane" "(2668 752 384) (2668 752 400) (2700 752 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55323" + "plane" "(2768 64 192) (2768 64 224) (2752 64 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86322" - "plane" "(2700 766.665 386.665) (2700 764 384) (2700 752 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55322" + "plane" "(2752 48 192) (2752 48 224) (2768 48 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218752" + "id" "143540" side { - "id" "86334" - "plane" "(2668 752 368) (2700 752 368) (2700 772 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "55339" + "plane" "(2896 -320 224) (2896 -304 224) (2912 -304 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -66975,186 +68959,184 @@ world } side { - "id" "86333" - "plane" "(2668 772 368) (2668 764 384) (2668 752 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55338" + "plane" "(2896 -304 192) (2896 -320 192) (2912 -320 192)" + "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" "86332" - "plane" "(2668 772 368) (2700 772 368) (2700 764 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55337" + "plane" "(2896 -320 192) (2896 -304 192) (2896 -304 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86331" - "plane" "(2668 752 384) (2668 764 384) (2700 764 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "55336" + "plane" "(2912 -304 192) (2912 -320 192) (2912 -320 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86330" - "plane" "(2668 752 368) (2668 752 384) (2700 752 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55335" + "plane" "(2896 -304 192) (2912 -304 192) (2912 -304 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86329" - "plane" "(2700 772 368) (2700 752 368) (2700 752 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55334" + "plane" "(2912 -320 192) (2896 -320 192) (2896 -320 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218753" + "id" "143541" side { - "id" "86340" - "plane" "(2700 712 368) (2700 752 368) (2648 752 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "55351" + "plane" "(2928 -320 224) (2928 -304 224) (2944 -304 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86339" - "plane" "(2648 752 368) (2700 752 368) (2700 752 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -240.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55350" + "plane" "(2928 -304 192) (2928 -320 192) (2944 -320 192)" + "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" "86338" - "plane" "(2648 712 368) (2656 712 384) (2700 712 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -304.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55349" + "plane" "(2928 -320 192) (2928 -304 192) (2928 -304 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86337" - "plane" "(2648 712 368) (2648 752 368) (2656 752 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55348" + "plane" "(2944 -304 192) (2944 -320 192) (2944 -320 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[0 1 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86336" - "plane" "(2656 712 384) (2656 752 384) (2700 752 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "55347" + "plane" "(2928 -304 192) (2944 -304 192) (2944 -304 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86335" - "plane" "(2700 752 368) (2700 712 368) (2700 712 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55346" + "plane" "(2944 -320 192) (2928 -320 192) (2928 -320 224)" + "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" + "uaxis" "[1 0 0 50] 0.188" + "vaxis" "[0 0 -1 297] 0.188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218754" + "id" "143638" side { - "id" "86346" - "plane" "(2672 436 352) (2672 456 352) (2700 456 352)" + "id" "55357" + "plane" "(2736 -544 224) (2736 -528 224) (2760 -528 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86345" - "plane" "(2700 436 208) (2700 456 208) (2672 456 208)" + "id" "55356" + "plane" "(2736 -528 96) (2736 -544 96) (2760 -544 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86344" - "plane" "(2672 436 208) (2672 436 352) (2700 436 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 76.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "55355" + "plane" "(2736 -544 96) (2736 -528 96) (2736 -528 224)" + "material" "BRICK/INFWLLG" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86343" - "plane" "(2700 456 208) (2700 456 352) (2672 456 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "id" "55354" + "plane" "(2760 -544 96) (2736 -544 96) (2736 -544 224)" + "material" "BRICK/INFWLLG" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -67162,19 +69144,19 @@ world } side { - "id" "86342" - "plane" "(2672 456 208) (2672 456 352) (2672 436 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -292.002] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "55353" + "plane" "(2736 -528 96) (2760 -528 96) (2760 -528 224)" + "material" "BRICK/INFWLLG" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86341" - "plane" "(2700 436 208) (2700 436 352) (2700 456 352)" + "id" "55352" + "plane" "(2760 -528 96) (2760 -544 96) (2760 -544 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -67184,54 +69166,53 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218755" + "id" "143639" side { - "id" "86352" - "plane" "(2668 441.335 402.669) (2668 444 400) (2668 452 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55363" + "plane" "(2760 -528 224) (2848 -528 224) (2848 -544 224)" + "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" "86351" - "plane" "(2668 441.335 402.669) (2668 452 424) (2700 452 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55362" + "plane" "(2760 -544 96) (2848 -544 96) (2848 -528 96)" + "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" "86350" - "plane" "(2668 444 400) (2700 444 400) (2700 452 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 1 0 167.002] 0.2" + "id" "55361" + "plane" "(2848 -528 96) (2848 -544 96) (2848 -544 224)" + "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" "86349" - "plane" "(2668 452 400) (2700 452 400) (2700 452 424)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "id" "55360" + "plane" "(2848 -544 96) (2760 -544 96) (2760 -544 224)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -67239,19 +69220,19 @@ world } side { - "id" "86348" - "plane" "(2668 444 400) (2668 441.335 402.669) (2700 441.335 402.669)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0.707107 -0.707107 183.437] 0.2" + "id" "55359" + "plane" "(2760 -528 96) (2848 -528 96) (2848 -528 224)" + "material" "BRICK/INFWLLG" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86347" - "plane" "(2700 444 400) (2700 441.335 402.669) (2700 452 424)" + "id" "55358" + "plane" "(2760 -544 96) (2760 -528 96) (2760 -528 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -67261,76 +69242,64 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218756" + "id" "143642" side { - "id" "86359" - "plane" "(2668 437.334 386.67) (2668 440 384) (2668 452 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 108.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55369" + "plane" "(2736 -912 224) (2736 -896 224) (2760 -896 224)" + "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" "86358" - "plane" "(2668 437.334 386.67) (2668 444 400) (2700 444 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55368" + "plane" "(2736 -896 96) (2736 -912 96) (2760 -912 96)" + "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" "86357" - "plane" "(2668 440 384) (2700 440 384) (2700 452 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 1 0 267.002] 0.2" + "id" "55367" + "plane" "(2736 -912 96) (2736 -896 96) (2736 -896 224)" + "material" "BRICK/INFWLLG" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86356" - "plane" "(2668 444 400) (2668 452 400) (2700 452 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86355" - "plane" "(2668 440 384) (2668 437.334 386.67) (2700 437.336 386.668)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0.707107 -0.707107 226.534] 0.2" + "id" "55366" + "plane" "(2736 -896 96) (2760 -896 96) (2760 -896 224)" + "material" "BRICK/INFWLLG" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86354" - "plane" "(2668 452 384) (2700 452 384) (2700 452 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "id" "55365" + "plane" "(2760 -912 96) (2736 -912 96) (2736 -912 224)" + "material" "BRICK/INFWLLG" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -67338,8 +69307,8 @@ world } side { - "id" "86353" - "plane" "(2700 440 384) (2700 437.336 386.668) (2700 444 400)" + "id" "55364" + "plane" "(2760 -896 96) (2760 -912 96) (2760 -912 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -67349,65 +69318,64 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218757" + "id" "143643" side { - "id" "86365" - "plane" "(2668 432 368) (2700 432 368) (2700 452 368)" + "id" "55375" + "plane" "(2760 -896 224) (2848 -896 224) (2848 -912 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86364" - "plane" "(2668 432 368) (2668 452 368) (2668 452 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55374" + "plane" "(2760 -912 96) (2848 -912 96) (2848 -896 96)" + "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" "86363" - "plane" "(2668 432 368) (2668 440 384) (2700 440 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55373" + "plane" "(2848 -896 96) (2848 -912 96) (2848 -912 224)" + "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" "86362" - "plane" "(2668 440 384) (2668 452 384) (2700 452 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 48] 0.25" + "id" "55372" + "plane" "(2760 -896 96) (2848 -896 96) (2848 -896 224)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86361" - "plane" "(2668 452 368) (2700 452 368) (2700 452 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "id" "55371" + "plane" "(2848 -912 96) (2760 -912 96) (2760 -912 224)" + "material" "BRICK/INFWLLG" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -67415,8 +69383,8 @@ world } side { - "id" "86360" - "plane" "(2700 432 368) (2700 440 384) (2700 452 384)" + "id" "55370" + "plane" "(2760 -912 96) (2760 -896 96) (2760 -896 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -67426,516 +69394,515 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218758" + "id" "143650" side { - "id" "86372" - "plane" "(2632 788 160) (2760 788 160) (2760 700 160)" - "material" "DEV/REFLECTIVITY_20B" - "uaxis" "[0 1 0 2.12802] 0.188" - "vaxis" "[1 0 0 26.8928] 0.188" + "id" "55387" + "plane" "(-4144 -5184 5713.33) (-4144 2112 5713.33) (4176 2112 5713.33)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86371" - "plane" "(2760 788 128) (2632 788 128) (2632 704 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "55386" + "plane" "(-4144 2112 5542.67) (-4144 2112 5713.33) (-4144 -5184 5713.33)" + "material" "TOOLS/TOOLSSKYBOX" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86370" - "plane" "(2760 788 128) (2760 788 160) (2632 788 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[-1 0 0 137.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86369" - "plane" "(2632 788 128) (2632 788 160) (2632 704 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 257.873] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "55385" + "plane" "(4176 -5184 5542.67) (4176 -5184 5713.33) (4176 2112 5713.33)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86368" - "plane" "(2760 700 128) (2760 700 160) (2760 788 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55384" + "plane" "(4176 2112 5542.67) (4176 2112 5713.33) (-4144 2112 5713.33)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86367" - "plane" "(2636 700 128) (2636 700 160) (2760 700 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[-1 0 0 137.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "55383" + "plane" "(-4144 -5184 5542.67) (-4144 -5184 5713.33) (4176 -5184 5713.33)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86366" - "plane" "(2632 704 128) (2632 704 160) (2636 700 160)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[-1 0 0 137.107] 0.188" - "vaxis" "[0 0 -1 339.064] 0.188" + "id" "55382" + "plane" "(-4144 2112 5542.67) (-4144 -5184 5542.67) (4176 -5184 5542.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "143662" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218759" + "id" "143652" side { - "id" "86377" - "plane" "(2688 472 480) (2700 472 480) (2700 460 468)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "55393" + "plane" "(-4144 2112 -1454.67) (-4144 -5184 -1454.67) (4176 -5184 -1454.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86376" - "plane" "(2688 472 400) (2700 460 400) (2700 472 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[-1 0 0 95.0017] 0.2" + "id" "55392" + "plane" "(-4144 -5184 -1284) (-4144 -5184 -1454.67) (-4144 2112 -1454.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86375" - "plane" "(2700 472 400) (2700 472 480) (2688 472 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55391" + "plane" "(4176 2112 -1284) (4176 2112 -1454.67) (4176 -5184 -1454.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86374" - "plane" "(2700 460 468) (2700 460 400) (2688 472 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55390" + "plane" "(-4144 2112 -1284) (-4144 2112 -1454.67) (4176 2112 -1454.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86373" - "plane" "(2700 460 400) (2700 460 468) (2700 472 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55389" + "plane" "(4176 -5184 -1284) (4176 -5184 -1454.67) (-4144 -5184 -1454.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 112] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55388" + "plane" "(-4144 -5184 -1284) (-4144 2112 -1284) (4176 2112 -1284)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "143662" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218760" + "id" "143654" side { - "id" "86382" - "plane" "(2688 472 480) (2700 484 468) (2700 472 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "id" "55399" + "plane" "(-4144 -5184 5542.67) (-4144 -5184 -1284) (-4144 2112 -1284)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86381" - "plane" "(2700 472 400) (2700 484 400) (2688 472 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -312.002] 0.2" - "vaxis" "[-1 0 0 95.0017] 0.2" + "id" "55398" + "plane" "(-4144 2112 5542.67) (-4144 2112 -1284) (-4080 2112 -1284)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86380" - "plane" "(2688 472 400) (2688 472 480) (2700 472 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55397" + "plane" "(-4080 -5184 -1284) (-4144 -5184 -1284) (-4144 -5184 5542.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86379" - "plane" "(2700 484 400) (2700 484 468) (2688 472 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55396" + "plane" "(-4080 -5184 5542.67) (-4144 -5184 5542.67) (-4144 2112 5542.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86378" - "plane" "(2700 484 468) (2700 484 400) (2700 472 400)" - "material" "TOOLS/TOOLSNODRAW" + "id" "55395" + "plane" "(-4080 2112 -1284) (-4144 2112 -1284) (-4144 -5184 -1284)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55394" + "plane" "(-4080 2112 5542.67) (-4080 2112 -1284) (-4080 -5184 -1284)" + "material" "TOOLS/TOOLSSKYBOX" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "143662" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218761" + "id" "143656" side { - "id" "86388" - "plane" "(2700 492 468) (2700 484 468) (2688 472 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "55405" + "plane" "(4176 2112 5542.67) (4176 2112 -1284) (4176 -5184 -1284)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86387" - "plane" "(2688 492 400) (2688 472 400) (2700 484 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 -1 0 -233.002] 0.2" + "id" "55404" + "plane" "(4112 2112 -1284) (4176 2112 -1284) (4176 2112 5542.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86386" - "plane" "(2700 492 400) (2700 492 468) (2688 492 480)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -47.9983] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55403" + "plane" "(4176 -5184 5542.67) (4176 -5184 -1284) (4112 -5184 -1284)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86385" - "plane" "(2688 492 400) (2688 492 480) (2688 472 480)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55402" + "plane" "(4112 2112 5542.67) (4176 2112 5542.67) (4176 -5184 5542.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86384" - "plane" "(2700 484 468) (2700 484 400) (2688 472 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55401" + "plane" "(4112 -5184 -1284) (4176 -5184 -1284) (4176 2112 -1284)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86383" - "plane" "(2700 484 400) (2700 484 468) (2700 492 468)" - "material" "TOOLS/TOOLSNODRAW" + "id" "55400" + "plane" "(4112 -5184 5542.67) (4112 -5184 -1284) (4112 2112 -1284)" + "material" "TOOLS/TOOLSSKYBOX" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "143662" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218762" + "id" "143658" side { - "id" "86394" - "plane" "(2700 452 368) (2700 492 368) (2648 492 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "55411" + "plane" "(-4080 2112 -1284) (4112 2112 -1284) (4112 2112 5542.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86393" - "plane" "(2648 492 368) (2700 492 368) (2700 492 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -240.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55410" + "plane" "(-4080 2048 5542.67) (-4080 2112 5542.67) (4112 2112 5542.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86392" - "plane" "(2648 452 368) (2656 452 384) (2700 452 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -304.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55409" + "plane" "(4112 2112 -1284) (-4080 2112 -1284) (-4080 2048 -1284)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86391" - "plane" "(2648 452 368) (2648 492 368) (2656 492 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55408" + "plane" "(-4080 2048 -1284) (-4080 2112 -1284) (-4080 2112 5542.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86390" - "plane" "(2656 452 384) (2656 492 384) (2700 492 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "55407" + "plane" "(4112 2112 5542.67) (4112 2112 -1284) (4112 2048 -1284)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86389" - "plane" "(2700 492 368) (2700 452 368) (2700 452 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55406" + "plane" "(4112 2048 -1284) (-4080 2048 -1284) (-4080 2048 5542.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "143662" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218763" - side - { - "id" "86401" - "plane" "(2653.33 492 386.674) (2656 492 384) (2700 492 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -220.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "143660" side { - "id" "86400" - "plane" "(2656 452 384) (2653.33 452 386.672) (2660 452 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -284.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55417" + "plane" "(4112 -5184 -1284) (-4080 -5184 -1284) (-4080 -5184 5542.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86399" - "plane" "(2653.33 452 386.672) (2653.33 492 386.674) (2660 492 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "55416" + "plane" "(4112 -5184 5542.67) (-4080 -5184 5542.67) (-4080 -5120 5542.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86398" - "plane" "(2700 452 384) (2700 492 384) (2656 492 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[1 0 0 -61.0017] 0.2" + "id" "55415" + "plane" "(-4080 -5120 -1284) (-4080 -5184 -1284) (4112 -5184 -1284)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86397" - "plane" "(2660 452 400) (2660 492 400) (2700 492 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "55414" + "plane" "(-4080 -5184 5542.67) (-4080 -5184 -1284) (-4080 -5120 -1284)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86396" - "plane" "(2656 452 384) (2656 492 384) (2653.33 492 386.674)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 88.0017] 0.2" - "vaxis" "[0.707107 0 -0.707107 71.7864] 0.2" + "id" "55413" + "plane" "(4112 -5120 -1284) (4112 -5184 -1284) (4112 -5184 5542.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86395" - "plane" "(2700 492 384) (2700 452 384) (2700 452 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "55412" + "plane" "(-4080 -5120 -1284) (4112 -5120 -1284) (4112 -5120 5542.67)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 112] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "220 220 220" + "groupid" "143662" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218764" + "id" "137445" side { - "id" "86407" - "plane" "(2672 748 352) (2672 768 352) (2700 768 352)" + "id" "54403" + "plane" "(2816 -912 384) (2816 -896 384) (3072 -896 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86406" - "plane" "(2700 748 208) (2700 768 208) (2672 768 208)" + "id" "54402" + "plane" "(2816 -896 224) (2816 -912 224) (3072 -912 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86405" - "plane" "(2700 768 208) (2700 768 352) (2672 768 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 76.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54401" + "plane" "(2816 -912 224) (2816 -896 224) (2816 -896 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" "86404" - "plane" "(2672 748 208) (2672 748 352) (2700 748 352)" + "id" "54400" + "plane" "(3072 -896 224) (3072 -912 224) (3072 -912 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -67943,21 +69910,21 @@ world } side { - "id" "86403" - "plane" "(2672 768 208) (2672 768 352) (2672 748 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 344.002] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54399" + "plane" "(2816 -896 224) (3072 -896 224) (3072 -896 384)" + "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" "86402" - "plane" "(2700 748 208) (2700 748 352) (2700 768 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "54398" + "plane" "(3072 -912 224) (2816 -912 224) (2816 -912 384)" + "material" "BRICK/INFWLLG" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -67965,175 +69932,194 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218765" + "id" "137451" side { - "id" "86412" - "plane" "(2780 220 632) (2792 232 620) (2792 220 632)" + "id" "54415" + "plane" "(2816 -544 384) (2816 -528 384) (3072 -528 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86411" - "plane" "(2792 220 424) (2792 232 424) (2780 220 424)" + "id" "54414" + "plane" "(2816 -528 224) (2816 -544 224) (3072 -544 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86410" - "plane" "(2780 220 424) (2780 220 632) (2792 220 632)" + "id" "54413" + "plane" "(2816 -544 224) (2816 -528 224) (2816 -528 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86409" - "plane" "(2792 232 424) (2792 232 620) (2780 220 632)" + "id" "54412" + "plane" "(3072 -528 224) (3072 -544 224) (3072 -544 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" "54411" + "plane" "(2816 -528 224) (3072 -528 224) (3072 -528 384)" + "material" "BRICK/INFWLLG" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86408" - "plane" "(2792 232 620) (2792 232 424) (2792 220 424)" + "id" "54410" + "plane" "(3072 -544 224) (2816 -544 224) (2816 -544 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218766" + "id" "137499" side { - "id" "86417" - "plane" "(2780 220 632) (2792 220 632) (2792 208 620)" + "id" "54512" + "plane" "(2796 -916 384) (2796 -524 384) (2800 -528 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86416" - "plane" "(2780 220 424) (2792 208 424) (2792 220 424)" + "id" "54511" + "plane" "(2800 -528 376) (2800 -912 376) (2800 -912 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86415" - "plane" "(2792 220 424) (2792 220 632) (2780 220 632)" + "id" "54510" + "plane" "(2796 -524 380) (2800 -528 376) (2800 -528 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86414" - "plane" "(2792 208 620) (2792 208 424) (2780 220 424)" + "id" "54509" + "plane" "(2796 -916 380) (2796 -916 384) (2800 -912 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86413" - "plane" "(2792 208 424) (2792 208 620) (2792 220 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "54508" + "plane" "(2796 -916 380) (2800 -912 376) (2800 -528 376)" + "material" "BUILDINGS/TRIM21" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0.707107 0 -0.707107 -66.957] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54507" + "plane" "(2796 -916 380) (2796 -524 380) (2796 -524 384)" + "material" "BUILDINGS/TRIM21" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218767" + "id" "137508" side { - "id" "86423" - "plane" "(2700 492 992) (2700 712 992) (2728 712 992)" + "id" "54530" + "plane" "(2796 -916 384) (2800 -912 384) (3072 -912 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86422" - "plane" "(2728 492 624) (2728 712 624) (2700 712 624)" + "id" "54529" + "plane" "(3072 -912 384) (2800 -912 384) (2800 -912 376)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86421" - "plane" "(2700 492 624) (2700 492 992) (2728 492 992)" + "id" "54528" + "plane" "(2800 -912 376) (2800 -912 384) (2796 -916 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -68141,32 +70127,32 @@ world } side { - "id" "86420" - "plane" "(2728 712 624) (2728 712 992) (2700 712 992)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "54527" + "plane" "(3072 -912 376) (2800 -912 376) (2796 -916 380)" + "material" "BUILDINGS/TRIM21" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0.707107 -0.707107 195.283] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86419" - "plane" "(2700 712 624) (2700 712 992) (2700 492 992)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "54526" + "plane" "(2796 -916 380) (2796 -916 384) (3072 -916 384)" + "material" "BUILDINGS/TRIM21" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86418" - "plane" "(2728 492 624) (2728 492 992) (2728 712 992)" + "id" "54525" + "plane" "(3072 -916 384) (3072 -912 384) (3072 -912 376)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -68174,43 +70160,42 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218768" + "id" "137509" side { - "id" "86429" - "plane" "(2760 240 624) (2760 432 752) (2792 432 752)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 258.128] 0.188" - "vaxis" "[1 0 0 -92.1072] 0.188" + "id" "54542" + "plane" "(3072 -524 384) (3072 -528 384) (2800 -528 384)" + "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" "86428" - "plane" "(2760 240 624) (2792 240 624) (2792 240 608)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 257.107] 0.188" - "vaxis" "[0 0 -1 508.064] 0.188" + "id" "54541" + "plane" "(3072 -528 376) (2800 -528 376) (2800 -528 384)" + "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" "86427" - "plane" "(2792 432 752) (2760 432 752) (2752 432 736)" + "id" "54540" + "plane" "(2796 -524 380) (2796 -524 384) (2800 -528 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -68218,87 +70203,86 @@ world } side { - "id" "86426" - "plane" "(2760 432 752) (2760 240 624) (2752 240 608)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 258.128] 0.188" - "vaxis" "[0 0 -1 508.064] 0.188" + "id" "54539" + "plane" "(3072 -524 380) (2796 -524 380) (2800 -528 376)" + "material" "BUILDINGS/TRIM21" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 -0.707107 -0.707107 -14.5854] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86425" - "plane" "(2792 240 624) (2792 432 752) (2792 432 736)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "54538" + "plane" "(3072 -524 380) (3072 -524 384) (2796 -524 384)" + "material" "BUILDINGS/TRIM21" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86424" - "plane" "(2792 240 608) (2792 432 736) (2752 432 736)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 258.128] 0.188" - "vaxis" "[1 0 0 -261.107] 0.188" + "id" "54537" + "plane" "(3072 -524 380) (3072 -528 376) (3072 -528 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" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218769" + "id" "137557" side { - "id" "86434" - "plane" "(2668 712 460) (2688 732 480) (2688 712 480)" + "id" "54543" + "plane" "(2732 -912 201.5) (2736 -912 201.5) (2736 -916 201.5)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86433" - "plane" "(2688 712 400) (2688 732 400) (2668 712 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -240.002] 0.2" - "vaxis" "[0 1 0 403.002] 0.2" + "id" "54544" + "plane" "(2732 -916 95.5) (2736 -916 95.5) (2736 -912 95.5)" + "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" "86432" - "plane" "(2668 712 400) (2668 712 460) (2688 712 480)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -304.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54545" + "plane" "(2732 -912 201.5) (2732 -916 201.5) (2732 -916 95.5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86431" - "plane" "(2688 712 400) (2688 712 480) (2688 732 480)" + "id" "54546" + "plane" "(2736 -912 95.5) (2736 -916 95.5) (2736 -916 201.5)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -68306,10 +70290,21 @@ world } side { - "id" "86430" - "plane" "(2668 712 460) (2668 712 400) (2688 732 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "id" "54547" + "plane" "(2736 -912 201.5) (2732 -912 201.5) (2732 -912 95.5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54548" + "plane" "(2736 -916 95.5) (2732 -916 95.5) (2732 -916 201.5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -68317,53 +70312,52 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 139 168" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218770" + "id" "137558" side { - "id" "86439" - "plane" "(2688 752 480) (2688 732 480) (2668 752 460)" + "id" "54560" + "plane" "(2688 -956 201.5) (2692 -956 201.5) (2692 -960 201.5)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86438" - "plane" "(2688 752 400) (2668 752 400) (2688 732 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -240.002] 0.2" - "vaxis" "[0 -1 0 -469.002] 0.2" + "id" "54559" + "plane" "(2688 -960 95.5) (2692 -960 95.5) (2692 -956 95.5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86437" - "plane" "(2668 752 460) (2668 752 400) (2688 752 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -304.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54558" + "plane" "(2688 -956 201.5) (2688 -960 201.5) (2688 -960 95.5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86436" - "plane" "(2688 732 400) (2688 732 480) (2688 752 480)" - "material" "TOOLS/TOOLSNODRAW" + "id" "54557" + "plane" "(2692 -956 95.5) (2692 -960 95.5) (2692 -960 201.5)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -68372,10 +70366,21 @@ world } side { - "id" "86435" - "plane" "(2668 752 400) (2668 752 460) (2688 732 480)" + "id" "54556" + "plane" "(2692 -956 201.5) (2688 -956 201.5) (2688 -956 95.5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54555" + "plane" "(2692 -960 95.5) (2688 -960 95.5) (2688 -960 201.5)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -68383,54 +70388,64 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 139 168" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218771" + "id" "137758" side { - "id" "86444" - "plane" "(2668 752 460) (2688 732 480) (2668 732 480)" + "id" "54572" + "plane" "(2848 -896 224) (2832 -896 224) (2832 -768 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86443" - "plane" "(2668 732 400) (2688 732 400) (2668 752 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -36.0017] 0.2" - "vaxis" "[1 0 0 -161.002] 0.2" + "id" "54571" + "plane" "(2832 -896 96) (2848 -896 96) (2848 -768 96)" + "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" "86442" - "plane" "(2668 752 400) (2668 752 460) (2668 732 480)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -108.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54570" + "plane" "(2848 -896 96) (2832 -896 96) (2832 -896 224)" + "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" "86441" - "plane" "(2668 732 400) (2668 732 480) (2688 732 480)" + "id" "54569" + "plane" "(2832 -768 96) (2848 -768 96) (2848 -768 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54568" + "plane" "(2832 -896 96) (2832 -768 96) (2832 -768 224)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -68438,10 +70453,10 @@ world } side { - "id" "86440" - "plane" "(2668 752 460) (2668 752 400) (2688 732 400)" + "id" "54567" + "plane" "(2848 -768 96) (2848 -896 96) (2848 -896 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -68449,54 +70464,64 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218772" + "id" "137764" side { - "id" "86449" - "plane" "(2668 732 480) (2688 732 480) (2668 712 460)" + "id" "54584" + "plane" "(2848 -672 224) (2832 -672 224) (2832 -544 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86448" - "plane" "(2668 712 400) (2688 732 400) (2668 732 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[1 0 0 -161.002] 0.2" + "id" "54583" + "plane" "(2832 -672 96) (2848 -672 96) (2848 -544 96)" + "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" "86447" - "plane" "(2668 712 460) (2668 712 400) (2668 732 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54582" + "plane" "(2848 -672 96) (2832 -672 96) (2832 -672 224)" + "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" "86446" - "plane" "(2688 732 400) (2688 732 480) (2668 732 480)" + "id" "54581" + "plane" "(2832 -544 96) (2848 -544 96) (2848 -544 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54580" + "plane" "(2832 -672 96) (2832 -544 96) (2832 -544 224)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -68504,10 +70529,10 @@ world } side { - "id" "86445" - "plane" "(2668 712 400) (2668 712 460) (2688 732 480)" + "id" "54579" + "plane" "(2848 -544 96) (2848 -672 96) (2848 -672 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -68515,65 +70540,64 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218773" + "id" "135021" side { - "id" "86455" - "plane" "(2657.33 752 402.669) (2660 752 400) (2668 752 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -240.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "53573" + "plane" "(2816 -768 124) (2816 -772 128) (2756 -772 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86454" - "plane" "(2660 712 400) (2657.34 712 402.663) (2668 712 423.988)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -304.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "53572" + "plane" "(2752 -768 96) (2756 -772 96) (2816 -772 96)" + "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" "86453" - "plane" "(2657.34 712 402.663) (2657.33 752 402.669) (2668 752 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "53571" + "plane" "(2816 -768 96) (2816 -768 124) (2752 -768 124)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86452" - "plane" "(2668 712 400) (2668 752 400) (2660 752 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[1 0 0 -161.002] 0.2" + "id" "53570" + "plane" "(2756 -772 96) (2756 -772 128) (2816 -772 128)" + "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" "86451" - "plane" "(2668 752 400) (2668 712 400) (2668 712 423.988)" + "id" "53569" + "plane" "(2752 -768 96) (2752 -768 124) (2756 -772 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -68581,670 +70605,596 @@ world } side { - "id" "86450" - "plane" "(2660 712 400) (2660 752 400) (2657.33 752 402.669)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 324.002] 0.2" - "vaxis" "[0.707107 0 -0.707107 28.6907] 0.2" + "id" "53568" + "plane" "(2816 -772 96) (2816 -772 128) (2816 -768 124)" + "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" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218774" - side - { - "id" "86462" - "plane" "(2984 772 592) (2984 964 592) (2888 964 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "135054" side { - "id" "86461" - "plane" "(2984 772 592) (2888 772 592) (2888 772 808)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "53574" + "plane" "(2756 -772 128) (2760 -772 128) (2760 -896 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86460" - "plane" "(2888 964 592) (2984 964 592) (2984 964 608)" + "id" "53575" + "plane" "(2756 -896 96) (2760 -896 96) (2760 -772 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86459" - "plane" "(2984 964 592) (2984 772 592) (2984 772 736)" - "material" "TOOLS/TOOLSNODRAW" + "id" "53576" + "plane" "(2756 -772 128) (2756 -896 128) (2756 -896 96)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86458" - "plane" "(2888 772 592) (2888 964 592) (2888 964 680)" + "id" "53577" + "plane" "(2760 -772 96) (2760 -896 96) (2760 -896 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86457" - "plane" "(2894 772 808) (2894 964 680) (2984 964 608)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 180.002] 0.2" - "vaxis" "[1 0 0 74.9983] 0.2" + "id" "53578" + "plane" "(2760 -772 128) (2756 -772 128) (2756 -772 96)" + "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" "86456" - "plane" "(2888 772 808) (2888 964 680) (2894 964 680)" + "id" "53579" + "plane" "(2760 -896 96) (2756 -896 96) (2756 -896 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 161 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218775" + "id" "135055" side { - "id" "86469" - "plane" "(2984 964 592) (2984 1004 592) (2888 1004 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "53591" + "plane" "(2760 -772 128) (2816 -772 128) (2816 -776 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86468" - "plane" "(2984 964 592) (2888 964 592) (2888 964 680)" + "id" "53590" + "plane" "(2760 -776 96) (2816 -776 96) (2816 -772 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86467" - "plane" "(2888 1004 592) (2984 1004 592) (2984 1004 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -394.406] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86466" - "plane" "(2984 1004 592) (2984 964 592) (2984 964 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 104.128] 0.188" - "vaxis" "[0 0 -1 38.0638] 0.188" + "id" "53589" + "plane" "(2760 -772 128) (2760 -776 128) (2760 -776 96)" + "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" "86465" - "plane" "(2888 964 592) (2888 1004 592) (2888 1004 680)" + "id" "53588" + "plane" "(2816 -772 96) (2816 -776 96) (2816 -776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86464" - "plane" "(2888 964 680) (2888 1004 680) (2894 1004 680)" + "id" "53587" + "plane" "(2816 -772 128) (2760 -772 128) (2760 -772 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86463" - "plane" "(2894 964 680) (2894 1004 680) (2984 1004 608)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 100] 0.25" - "vaxis" "[0 0 -1 73] 0.125" + "id" "53586" + "plane" "(2816 -776 96) (2760 -776 96) (2760 -776 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 161 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218776" + "id" "135057" side { - "id" "86476" - "plane" "(2888 964 592) (2888 1004 592) (2792 1004 592)" + "id" "53603" + "plane" "(2756 -772 224) (2760 -772 224) (2760 -776 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86475" - "plane" "(2888 964 592) (2792 964 592) (2792 964 608)" + "id" "53602" + "plane" "(2756 -776 128) (2760 -776 128) (2760 -772 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86474" - "plane" "(2792 1004 592) (2888 1004 592) (2888 1004 680)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -394.406] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86473" - "plane" "(2792 964 592) (2792 1004 592) (2792 1004 608)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "53601" + "plane" "(2756 -772 224) (2756 -776 224) (2756 -776 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86472" - "plane" "(2888 1004 592) (2888 964 592) (2888 964 680)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "53600" + "plane" "(2760 -772 128) (2760 -776 128) (2760 -776 224)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86471" - "plane" "(2882 964 680) (2882 1004 680) (2888 1004 680)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "53599" + "plane" "(2760 -772 224) (2756 -772 224) (2756 -772 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86470" - "plane" "(2792 964 608) (2792 1004 608) (2882 1004 680)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 100] 0.25" - "vaxis" "[0 0 -1 73] 0.125" + "id" "53598" + "plane" "(2760 -776 128) (2756 -776 128) (2756 -776 224)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 161 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218777" + "id" "135061" side { - "id" "86483" - "plane" "(2894 964 680) (2894 1004 680) (2882 1004 680)" + "id" "53615" + "plane" "(2796 -772 224) (2800 -772 224) (2800 -776 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86482" - "plane" "(2894 964 680) (2882 964 680) (2882 964 684)" + "id" "53614" + "plane" "(2796 -776 128) (2800 -776 128) (2800 -772 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86481" - "plane" "(2882 1004 680) (2894 1004 680) (2894 1004 684)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 18.1072] 0.188" - "vaxis" "[0 0 -1 508.064] 0.188" + "id" "53613" + "plane" "(2796 -772 224) (2796 -776 224) (2796 -776 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86480" - "plane" "(2882 964 680) (2882 1004 680) (2882 1004 684)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -27.3334] 0.12" - "vaxis" "[0 1 0 6] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86479" - "plane" "(2894 1004 680) (2894 964 680) (2894 964 684)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 -1 36.848] 0.12" - "vaxis" "[0 1 0 6] 0.25" + "id" "53612" + "plane" "(2800 -772 128) (2800 -776 128) (2800 -776 224)" + "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" "86478" - "plane" "(2888 964 688) (2888 1004 688) (2894 1004 684)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0.83205 0 -0.5547 24.3646] 0.12" - "vaxis" "[0 1 0 6] 0.25" + "id" "53611" + "plane" "(2800 -772 224) (2796 -772 224) (2796 -772 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86477" - "plane" "(2882 964 684) (2882 1004 684) (2888 1004 688)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0.83205 0 0.5547 63.804] 0.12" - "vaxis" "[0 1 0 6] 0.25" + "id" "53610" + "plane" "(2800 -776 128) (2796 -776 128) (2796 -776 224)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 161 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218778" - side - { - "id" "86490" - "plane" "(2888 772 592) (2888 964 592) (2792 964 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "135062" side { - "id" "86489" - "plane" "(2888 772 592) (2792 772 592) (2792 772 736)" + "id" "53627" + "plane" "(2756 -892 224) (2760 -892 224) (2760 -896 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86488" - "plane" "(2792 964 592) (2888 964 592) (2888 964 680)" + "id" "53626" + "plane" "(2756 -896 128) (2760 -896 128) (2760 -892 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86487" - "plane" "(2792 772 592) (2792 964 592) (2792 964 608)" - "material" "TOOLS/TOOLSNODRAW" + "id" "53625" + "plane" "(2756 -892 224) (2756 -896 224) (2756 -896 128)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86486" - "plane" "(2888 964 592) (2888 772 592) (2888 772 808)" - "material" "TOOLS/TOOLSNODRAW" + "id" "53624" + "plane" "(2760 -892 128) (2760 -896 128) (2760 -896 224)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86485" - "plane" "(2792 772 736) (2792 964 608) (2882 964 680)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0.307364 -0.948444 0.0773334 -311.317] 0.2" - "vaxis" "[0.832444 0.307364 0.461046 -137.123] 0.2" + "id" "53623" + "plane" "(2760 -892 224) (2756 -892 224) (2756 -892 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86484" - "plane" "(2882 772 808) (2882 964 680) (2888 964 680)" + "id" "53622" + "plane" "(2760 -896 128) (2756 -896 128) (2756 -896 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 161 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218779" - side - { - "id" "86497" - "plane" "(2894 772 808) (2894 964 680) (2882 964 680)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "135063" side { - "id" "86496" - "plane" "(2894 772 808) (2882 772 808) (2882 772 812)" + "id" "53639" + "plane" "(2758 -776 224) (2760 -776 224) (2760 -892 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86495" - "plane" "(2882 964 680) (2894 964 680) (2894 964 684)" + "id" "53638" + "plane" "(2758 -892 128) (2760 -892 128) (2760 -776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86494" - "plane" "(2882 772 808) (2882 964 680) (2882 964 684)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[-0.848353 -0.28916 -0.443491 -11.535] 0.12" - "vaxis" "[0.00458877 0.833627 -0.552309 199.559] 0.25" + "id" "53637" + "plane" "(2758 -776 224) (2758 -892 224) (2758 -892 128)" + "material" "GLASS/URBAN_GLASS_03" + "uaxis" "[0 1 0 329] 30" + "vaxis" "[0 0 -1 184] 30" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86493" - "plane" "(2894 964 680) (2894 772 808) (2894 772 812)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0.559193 0.829038 45.9181] 0.12" - "vaxis" "[0 0.829038 -0.559193 289.141] 0.25" + "id" "53636" + "plane" "(2760 -776 128) (2760 -892 128) (2760 -892 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86492" - "plane" "(2888 772 816) (2888 964 688) (2894 964 684)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0.559193 0.829038 47.3321] 0.12" - "vaxis" "[0 0.829038 -0.559193 289.137] 0.25" + "id" "53635" + "plane" "(2760 -776 224) (2758 -776 224) (2758 -776 128)" + "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" "86491" - "plane" "(2882 772 812) (2882 964 684) (2888 964 688)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[-0.874462 0.273566 0.400597 -12.3507] 0.12" - "vaxis" "[0.00473004 0.830583 -0.556875 222.16] 0.25" + "id" "53634" + "plane" "(2760 -892 128) (2758 -892 128) (2758 -892 224)" + "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" "163 140 0" - "groupid" "219643" + "color" "0 161 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218780" + "id" "135065" side { - "id" "86503" - "plane" "(2984 964 160) (2984 1004 160) (2888 1004 160)" + "id" "53651" + "plane" "(2760 -774 224) (2796 -774 224) (2796 -776 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86502" - "plane" "(2984 964 160) (2888 964 160) (2888 964 278)" + "id" "53650" + "plane" "(2760 -776 128) (2796 -776 128) (2796 -774 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86501" - "plane" "(2888 1004 160) (2984 1004 160) (2984 1004 278)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -394.406] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "53649" + "plane" "(2760 -774 224) (2760 -776 224) (2760 -776 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86500" - "plane" "(2984 1004 160) (2984 964 160) (2984 964 278)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 104.128] 0.188" - "vaxis" "[0 0 -1 38.0638] 0.188" + "id" "53648" + "plane" "(2796 -774 128) (2796 -776 128) (2796 -776 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86499" - "plane" "(2888 964 160) (2888 1004 160) (2888 1004 278)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "53647" + "plane" "(2796 -774 224) (2760 -774 224) (2760 -774 128)" + "material" "GLASS/URBAN_GLASS_03" + "uaxis" "[1 0 0 329] 30" + "vaxis" "[0 0 -1 184] 30" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86498" - "plane" "(2888 964 278) (2888 1004 278) (2984 1004 278)" + "id" "53646" + "plane" "(2796 -776 128) (2760 -776 128) (2760 -776 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 161 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218781" + "id" "135094" side { - "id" "86509" - "plane" "(2984 964 278) (2944 964 278) (2944 964 592)" + "id" "53675" + "plane" "(2752 -768 96) (2752 -896 96) (2756 -896 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86508" - "plane" "(2944 1004 278) (2984 1004 278) (2984 1004 592)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -394.406] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "53674" + "plane" "(2752 -896 104) (2752 -896 96) (2752 -768 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86507" - "plane" "(2984 1004 278) (2984 964 278) (2984 964 592)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 104.128] 0.188" - "vaxis" "[0 0 -1 38.0638] 0.188" - "rotation" "0" - "lightmapscale" "16" + "id" "53673" + "plane" "(2756 -772 104) (2756 -772 96) (2756 -896 96)" + "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" "86506" - "plane" "(2944 964 278) (2944 1004 278) (2944 1004 592)" + "id" "53672" + "plane" "(2756 -896 104) (2756 -896 96) (2752 -896 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69252,54 +71202,53 @@ world } side { - "id" "86505" - "plane" "(2944 964 592) (2944 1004 592) (2984 1004 592)" + "id" "53671" + "plane" "(2752 -768 104) (2752 -768 96) (2756 -772 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86504" - "plane" "(2984 964 278) (2984 1004 278) (2944 1004 278)" + "id" "53670" + "plane" "(2752 -896 104) (2752 -768 104) (2756 -772 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218782" + "id" "135095" side { - "id" "86515" - "plane" "(2888 964 160) (2888 1004 160) (2792 1004 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "53681" + "plane" "(2752 -896 124) (2752 -768 124) (2756 -772 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86514" - "plane" "(2888 964 160) (2792 964 160) (2792 964 278)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "53680" + "plane" "(2752 -768 120) (2752 -768 124) (2752 -896 124)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69307,21 +71256,21 @@ world } side { - "id" "86513" - "plane" "(2792 1004 160) (2888 1004 160) (2888 1004 278)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -394.406] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "53679" + "plane" "(2756 -896 120) (2756 -896 128) (2756 -772 128)" + "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" "86512" - "plane" "(2792 964 160) (2792 1004 160) (2792 1004 278)" + "id" "53678" + "plane" "(2752 -896 120) (2752 -896 124) (2756 -896 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69329,10 +71278,10 @@ world } side { - "id" "86511" - "plane" "(2888 1004 160) (2888 964 160) (2888 964 278)" + "id" "53677" + "plane" "(2756 -772 128) (2752 -768 124) (2752 -768 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69340,32 +71289,31 @@ world } side { - "id" "86510" - "plane" "(2792 964 278) (2792 1004 278) (2888 1004 278)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "53676" + "plane" "(2752 -768 120) (2752 -896 120) (2756 -896 120)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218783" + "id" "135098" side { - "id" "86521" - "plane" "(2832 964 278) (2792 964 278) (2792 964 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "53687" + "plane" "(2752 -768 104) (2752 -768 120) (2752 -776 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69373,21 +71321,21 @@ world } side { - "id" "86520" - "plane" "(2792 1004 278) (2832 1004 278) (2832 1004 592)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -394.406] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "53686" + "plane" "(2756 -772 104) (2756 -780 104) (2756 -780 120)" + "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" "86519" - "plane" "(2792 964 278) (2792 1004 278) (2792 1004 592)" + "id" "53685" + "plane" "(2752 -768 104) (2756 -772 104) (2756 -772 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69395,54 +71343,53 @@ world } side { - "id" "86518" - "plane" "(2832 1004 278) (2832 964 278) (2832 964 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "53684" + "plane" "(2752 -768 120) (2756 -772 120) (2756 -780 120)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86517" - "plane" "(2792 964 592) (2792 1004 592) (2832 1004 592)" + "id" "53683" + "plane" "(2752 -776 104) (2756 -780 104) (2756 -772 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86516" - "plane" "(2832 964 278) (2832 1004 278) (2792 1004 278)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "53682" + "plane" "(2756 -780 104) (2752 -776 104) (2752 -776 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218784" + "id" "135099" side { - "id" "86527" - "plane" "(2920 964 470) (2888 964 494) (2888 964 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "53693" + "plane" "(2752 -896 104) (2752 -888 104) (2752 -888 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69450,21 +71397,21 @@ world } side { - "id" "86526" - "plane" "(2888 1004 494) (2920 1004 470) (2920 1004 592)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -394.406] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "53692" + "plane" "(2756 -896 104) (2756 -896 120) (2756 -884 120)" + "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" "86525" - "plane" "(2920 1004 470) (2920 964 470) (2920 964 592)" + "id" "53691" + "plane" "(2756 -896 104) (2752 -896 104) (2752 -896 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69472,54 +71419,53 @@ world } side { - "id" "86524" - "plane" "(2888 964 494) (2888 1004 494) (2888 1004 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "53690" + "plane" "(2752 -888 120) (2756 -884 120) (2756 -896 120)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86523" - "plane" "(2888 964 592) (2888 1004 592) (2920 1004 592)" + "id" "53689" + "plane" "(2752 -896 104) (2756 -896 104) (2756 -884 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86522" - "plane" "(2920 964 470) (2920 1004 470) (2888 1004 494)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "53688" + "plane" "(2752 -888 104) (2756 -884 104) (2756 -884 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218785" + "id" "135101" side { - "id" "86533" - "plane" "(2944 964 422) (2920 964 470) (2920 964 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "53705" + "plane" "(2752 -828 104) (2752 -828 120) (2752 -836 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69527,21 +71473,21 @@ world } side { - "id" "86532" - "plane" "(2920 1004 470) (2944 1004 422) (2944 1004 592)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -394.406] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "53704" + "plane" "(2756 -840 120) (2756 -824 120) (2756 -824 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86531" - "plane" "(2944 1004 422) (2944 964 422) (2944 964 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "id" "53703" + "plane" "(2752 -836 104) (2752 -836 120) (2756 -840 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69549,54 +71495,53 @@ world } side { - "id" "86530" - "plane" "(2920 964 470) (2920 1004 470) (2920 1004 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "53702" + "plane" "(2756 -824 120) (2756 -840 120) (2752 -836 120)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86529" - "plane" "(2920 964 592) (2920 1004 592) (2944 1004 592)" + "id" "53701" + "plane" "(2756 -840 104) (2756 -824 104) (2752 -828 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86528" - "plane" "(2944 964 422) (2944 1004 422) (2920 1004 470)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "53700" + "plane" "(2756 -824 104) (2756 -824 120) (2752 -828 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218786" + "id" "135111" side { - "id" "86539" - "plane" "(2856 964 470) (2832 964 422) (2832 964 592)" + "id" "53722" + "plane" "(2756 -828 104) (2756 -824 108) (2756 -780 108)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69604,21 +71549,10 @@ world } side { - "id" "86538" - "plane" "(2832 1004 422) (2856 1004 470) (2856 1004 592)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -394.406] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86537" - "plane" "(2832 964 422) (2832 1004 422) (2832 1004 592)" + "id" "53721" + "plane" "(2756 -828 104) (2752 -828 104) (2756 -824 108)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69626,219 +71560,194 @@ world } side { - "id" "86536" - "plane" "(2856 1004 470) (2856 964 470) (2856 964 592)" + "id" "53720" + "plane" "(2752 -828 104) (2756 -828 104) (2756 -776 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86535" - "plane" "(2832 964 592) (2832 1004 592) (2856 1004 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "53719" + "plane" "(2756 -776 104) (2756 -780 108) (2752 -776 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86534" - "plane" "(2832 1004 422) (2832 964 422) (2856 964 470)" - "material" "TOOLS/TOOLSNODRAW" + "id" "53718" + "plane" "(2752 -776 104) (2756 -780 108) (2756 -824 108)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218787" + "id" "135113" side { - "id" "86545" - "plane" "(2888 964 494) (2856 964 470) (2856 964 592)" + "id" "53732" + "plane" "(2756 -776 120) (2756 -780 116) (2756 -824 116)" "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" "86544" - "plane" "(2856 1004 470) (2888 1004 494) (2888 1004 592)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -394.406] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86543" - "plane" "(2856 964 470) (2856 1004 470) (2856 1004 592)" + "id" "53731" + "plane" "(2756 -776 120) (2752 -776 120) (2756 -780 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86542" - "plane" "(2888 1004 494) (2888 964 494) (2888 964 592)" + "id" "53730" + "plane" "(2752 -776 120) (2756 -776 120) (2756 -828 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86541" - "plane" "(2856 964 592) (2856 1004 592) (2888 1004 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "53729" + "plane" "(2756 -828 120) (2756 -824 116) (2752 -828 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86540" - "plane" "(2888 964 494) (2888 1004 494) (2856 1004 470)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "53728" + "plane" "(2752 -828 120) (2756 -824 116) (2756 -780 116)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218788" + "id" "135117" side { - "id" "86551" - "plane" "(2984 200 160) (2984 240 160) (2888 240 160)" + "id" "53747" + "plane" "(2756 -836 120) (2756 -840 116) (2756 -884 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86550" - "plane" "(2888 240 160) (2984 240 160) (2984 240 278)" + "id" "53746" + "plane" "(2756 -836 120) (2752 -836 120) (2756 -840 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86549" - "plane" "(2984 200 160) (2888 200 160) (2888 200 278)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.555] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86548" - "plane" "(2984 240 160) (2984 200 160) (2984 200 278)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -36.128] 0.188" - "vaxis" "[0 0 -1 38.0638] 0.188" + "id" "53745" + "plane" "(2752 -836 120) (2756 -836 120) (2756 -888 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86547" - "plane" "(2888 200 160) (2888 240 160) (2888 240 278)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "53744" + "plane" "(2756 -888 120) (2756 -884 116) (2752 -888 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86546" - "plane" "(2888 200 278) (2888 240 278) (2984 240 278)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "53743" + "plane" "(2752 -888 120) (2756 -884 116) (2756 -840 116)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218789" + "id" "135118" side { - "id" "86557" - "plane" "(2888 200 160) (2888 240 160) (2792 240 160)" + "id" "53752" + "plane" "(2756 -888 104) (2756 -884 108) (2756 -840 108)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86556" - "plane" "(2792 240 160) (2888 240 160) (2888 240 278)" + "id" "53751" + "plane" "(2756 -888 104) (2752 -888 104) (2756 -884 108)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69846,32 +71755,21 @@ world } side { - "id" "86555" - "plane" "(2888 200 160) (2792 200 160) (2792 200 278)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.555] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86554" - "plane" "(2792 200 160) (2792 240 160) (2792 240 278)" + "id" "53750" + "plane" "(2752 -888 104) (2756 -888 104) (2756 -836 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86553" - "plane" "(2888 240 160) (2888 200 160) (2888 200 278)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "id" "53749" + "plane" "(2756 -836 104) (2756 -840 108) (2752 -836 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69879,54 +71777,53 @@ world } side { - "id" "86552" - "plane" "(2792 200 278) (2792 240 278) (2888 240 278)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "53748" + "plane" "(2752 -836 104) (2756 -840 108) (2756 -884 108)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218790" + "id" "135162" side { - "id" "86563" - "plane" "(2792 240 278) (2832 240 278) (2832 240 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "53958" + "plane" "(2756 -544 128) (2756 -668 128) (2752 -672 124)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86562" - "plane" "(2832 200 278) (2792 200 278) (2792 200 592)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.555] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "53957" + "plane" "(2752 -544 120) (2752 -544 124) (2752 -672 124)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86561" - "plane" "(2792 200 278) (2792 240 278) (2792 240 592)" + "id" "53956" + "plane" "(2756 -668 120) (2756 -668 128) (2756 -544 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69934,10 +71831,10 @@ world } side { - "id" "86560" - "plane" "(2832 240 278) (2832 200 278) (2832 200 592)" + "id" "53955" + "plane" "(2756 -544 120) (2756 -544 128) (2752 -544 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -69945,120 +71842,107 @@ world } side { - "id" "86559" - "plane" "(2792 200 592) (2792 240 592) (2832 240 592)" + "id" "53954" + "plane" "(2752 -672 120) (2752 -672 124) (2756 -668 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86558" - "plane" "(2832 200 278) (2832 240 278) (2792 240 278)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "53953" + "plane" "(2756 -668 120) (2756 -544 120) (2752 -544 120)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218791" + "id" "135163" side { - "id" "86569" - "plane" "(2944 240 278) (2984 240 278) (2984 240 592)" + "id" "53963" + "plane" "(2756 -552 120) (2756 -556 116) (2756 -600 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86568" - "plane" "(2984 200 278) (2944 200 278) (2944 200 592)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.555] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86567" - "plane" "(2984 240 278) (2984 200 278) (2984 200 592)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -36.128] 0.188" - "vaxis" "[0 0 -1 38.0638] 0.188" + "id" "53962" + "plane" "(2756 -600 116) (2752 -604 120) (2756 -604 120)" + "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" "86566" - "plane" "(2944 200 278) (2944 240 278) (2944 240 592)" + "id" "53961" + "plane" "(2752 -552 120) (2756 -552 120) (2756 -604 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86565" - "plane" "(2944 200 592) (2944 240 592) (2984 240 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "53960" + "plane" "(2752 -552 120) (2756 -556 116) (2756 -552 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86564" - "plane" "(2984 200 278) (2984 240 278) (2944 240 278)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "53959" + "plane" "(2752 -604 120) (2756 -600 116) (2756 -556 116)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218792" + "id" "135164" side { - "id" "86575" - "plane" "(2888 240 494) (2920 240 470) (2920 240 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "53969" + "plane" "(2752 -544 120) (2752 -552 120) (2752 -552 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -70066,21 +71950,21 @@ world } side { - "id" "86574" - "plane" "(2920 200 470) (2888 200 494) (2888 200 592)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.555] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "53968" + "plane" "(2756 -556 104) (2756 -556 120) (2756 -544 120)" + "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" "86573" - "plane" "(2920 240 470) (2920 200 470) (2920 200 592)" + "id" "53967" + "plane" "(2756 -544 120) (2752 -544 120) (2752 -544 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -70088,54 +71972,53 @@ world } side { - "id" "86572" - "plane" "(2888 200 494) (2888 240 494) (2888 240 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "53966" + "plane" "(2752 -544 120) (2756 -544 120) (2756 -556 120)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86571" - "plane" "(2888 200 592) (2888 240 592) (2920 240 592)" + "id" "53965" + "plane" "(2752 -552 104) (2756 -556 104) (2756 -544 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86570" - "plane" "(2920 200 470) (2920 240 470) (2888 240 494)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "53964" + "plane" "(2752 -552 120) (2756 -556 120) (2756 -556 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218793" + "id" "135165" side { - "id" "86581" - "plane" "(2856 240 470) (2888 240 494) (2888 240 592)" + "id" "53974" + "plane" "(2756 -604 104) (2756 -600 108) (2756 -556 108)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -70143,21 +72026,10 @@ world } side { - "id" "86580" - "plane" "(2888 200 494) (2856 200 470) (2856 200 592)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.555] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86579" - "plane" "(2856 200 470) (2856 240 470) (2856 240 592)" + "id" "53973" + "plane" "(2756 -556 108) (2752 -552 104) (2756 -552 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -70165,54 +72037,53 @@ world } side { - "id" "86578" - "plane" "(2888 240 494) (2888 200 494) (2888 200 592)" + "id" "53972" + "plane" "(2752 -604 104) (2756 -604 104) (2756 -552 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86577" - "plane" "(2856 200 592) (2856 240 592) (2888 240 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "53971" + "plane" "(2752 -604 104) (2756 -600 108) (2756 -604 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86576" - "plane" "(2888 200 494) (2888 240 494) (2856 240 470)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "53970" + "plane" "(2752 -552 104) (2756 -556 108) (2756 -600 108)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218794" + "id" "135166" side { - "id" "86587" - "plane" "(2832 240 422) (2856 240 470) (2856 240 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "53980" + "plane" "(2752 -604 104) (2752 -604 120) (2752 -612 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -70220,21 +72091,21 @@ world } side { - "id" "86586" - "plane" "(2856 200 470) (2832 200 422) (2832 200 592)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.555] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "53979" + "plane" "(2756 -600 104) (2756 -616 104) (2756 -616 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86585" - "plane" "(2832 200 422) (2832 240 422) (2832 240 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "id" "53978" + "plane" "(2756 -600 104) (2756 -600 120) (2752 -604 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -70242,318 +72113,281 @@ world } side { - "id" "86584" - "plane" "(2856 240 470) (2856 200 470) (2856 200 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "53977" + "plane" "(2752 -612 120) (2752 -604 120) (2756 -600 120)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86583" - "plane" "(2832 200 592) (2832 240 592) (2856 240 592)" + "id" "53976" + "plane" "(2752 -604 104) (2752 -612 104) (2756 -616 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86582" - "plane" "(2832 240 422) (2832 200 422) (2856 200 470)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "53975" + "plane" "(2752 -612 104) (2752 -612 120) (2756 -616 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218795" + "id" "135167" side { - "id" "86593" - "plane" "(2920 240 470) (2944 240 422) (2944 240 592)" + "id" "53985" + "plane" "(2756 -612 120) (2756 -616 116) (2756 -660 116)" "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" "86592" - "plane" "(2944 200 422) (2920 200 470) (2920 200 592)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.555] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86591" - "plane" "(2944 240 422) (2944 200 422) (2944 200 592)" + "id" "53984" + "plane" "(2756 -660 116) (2752 -664 120) (2756 -664 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86590" - "plane" "(2920 200 470) (2920 240 470) (2920 240 592)" + "id" "53983" + "plane" "(2752 -612 120) (2756 -612 120) (2756 -664 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86589" - "plane" "(2920 200 592) (2920 240 592) (2944 240 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "53982" + "plane" "(2752 -612 120) (2756 -616 116) (2756 -612 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86588" - "plane" "(2944 200 422) (2944 240 422) (2920 240 470)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "53981" + "plane" "(2752 -664 120) (2756 -660 116) (2756 -616 116)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218796" + "id" "135168" side { - "id" "86600" - "plane" "(2888 200 592) (2888 240 592) (2792 240 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "53991" + "plane" "(2756 -544 128) (2760 -544 128) (2760 -668 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86599" - "plane" "(2792 240 592) (2888 240 592) (2888 240 680)" + "id" "53990" + "plane" "(2756 -668 96) (2760 -668 96) (2760 -544 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86598" - "plane" "(2888 200 592) (2792 200 592) (2792 200 608)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.555] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "53989" + "plane" "(2756 -668 96) (2756 -544 96) (2756 -544 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86597" - "plane" "(2792 200 592) (2792 240 592) (2792 240 608)" + "id" "53988" + "plane" "(2760 -668 128) (2760 -544 128) (2760 -544 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86596" - "plane" "(2888 240 592) (2888 200 592) (2888 200 680)" + "id" "53987" + "plane" "(2760 -668 96) (2756 -668 96) (2756 -668 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86595" - "plane" "(2882 200 680) (2882 240 680) (2888 240 680)" + "id" "53986" + "plane" "(2760 -544 128) (2756 -544 128) (2756 -544 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86594" - "plane" "(2792 200 608) (2792 240 608) (2882 240 680)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -204] 0.25" - "vaxis" "[0 0 -1 73] 0.125" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 161 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218797" + "id" "135169" side { - "id" "86607" - "plane" "(2984 200 592) (2984 240 592) (2888 240 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "53997" + "plane" "(2752 -664 104) (2752 -664 120) (2752 -672 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86606" - "plane" "(2888 240 592) (2984 240 592) (2984 240 608)" + "id" "53996" + "plane" "(2756 -668 120) (2756 -660 120) (2756 -660 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86605" - "plane" "(2984 200 592) (2888 200 592) (2888 200 680)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[-1 0 0 307.555] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86604" - "plane" "(2984 240 592) (2984 200 592) (2984 200 608)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -36.128] 0.188" - "vaxis" "[0 0 -1 38.0638] 0.188" + "id" "53995" + "plane" "(2752 -672 120) (2756 -668 120) (2756 -668 104)" + "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" "86603" - "plane" "(2888 200 592) (2888 240 592) (2888 240 680)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "53994" + "plane" "(2752 -664 120) (2756 -660 120) (2756 -668 120)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86602" - "plane" "(2888 200 680) (2888 240 680) (2894 240 680)" + "id" "53993" + "plane" "(2752 -672 104) (2756 -668 104) (2756 -660 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86601" - "plane" "(2894 200 680) (2894 240 680) (2984 240 608)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -204] 0.25" - "vaxis" "[0 0 -1 73] 0.125" + "id" "53992" + "plane" "(2756 -660 120) (2752 -664 120) (2752 -664 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218798" + "id" "135170" side { - "id" "86614" - "plane" "(2894 240 680) (2894 432 808) (2882 432 808)" + "id" "54003" + "plane" "(2756 -668 96) (2756 -544 96) (2752 -544 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86613" - "plane" "(2882 432 808) (2894 432 808) (2894 432 812)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "54002" + "plane" "(2752 -672 104) (2752 -672 96) (2752 -544 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -70561,10 +72395,10 @@ world } side { - "id" "86612" - "plane" "(2894 240 680) (2882 240 680) (2882 240 684)" + "id" "54001" + "plane" "(2756 -544 104) (2756 -544 96) (2756 -668 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -70572,153 +72406,118 @@ world } side { - "id" "86611" - "plane" "(2882 240 680) (2882 432 808) (2882 432 812)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 -0.559193 0.829038 -2.10067] 0.12" - "vaxis" "[0 -0.829038 -0.559193 -351.793] 0.25" - "rotation" "56" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86610" - "plane" "(2894 432 808) (2894 240 680) (2894 240 684)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0.550191 -0.835039 18.7218] 0.12" - "vaxis" "[0 -0.835039 -0.550191 -370.959] 0.25" + "id" "54000" + "plane" "(2752 -544 104) (2752 -544 96) (2756 -544 96)" + "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" "86609" - "plane" "(2888 240 688) (2888 432 816) (2894 432 812)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0.874462 0.264564 -0.406598 34.7588] 0.12" - "vaxis" "[-0.00473024 -0.833494 -0.552509 -311.342] 0.25" + "id" "53999" + "plane" "(2756 -668 104) (2756 -668 96) (2752 -672 96)" + "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" "86608" - "plane" "(2882 240 684) (2882 432 812) (2888 432 816)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0.874462 -0.273566 0.400597 3.09483] 0.12" - "vaxis" "[-0.00473021 -0.830583 -0.556875 -302.121] 0.25" + "id" "53998" + "plane" "(2756 -544 104) (2756 -668 104) (2752 -672 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218799" - side - { - "id" "86621" - "plane" "(2984 240 592) (2984 432 592) (2888 432 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86620" - "plane" "(2888 432 592) (2984 432 592) (2984 432 736)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "135171" side { - "id" "86619" - "plane" "(2984 240 592) (2888 240 592) (2888 240 680)" + "id" "54008" + "plane" "(2756 -664 104) (2756 -660 108) (2756 -616 108)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86618" - "plane" "(2984 432 592) (2984 240 592) (2984 240 608)" + "id" "54007" + "plane" "(2756 -616 108) (2752 -612 104) (2756 -612 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86617" - "plane" "(2888 240 592) (2888 432 592) (2888 432 808)" + "id" "54006" + "plane" "(2752 -664 104) (2756 -664 104) (2756 -612 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86616" - "plane" "(2894 240 680) (2894 432 808) (2984 432 736)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -456.002] 0.2" - "vaxis" "[1 0 0 74.9983] 0.2" + "id" "54005" + "plane" "(2752 -664 104) (2756 -660 108) (2756 -664 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86615" - "plane" "(2888 240 680) (2888 432 808) (2894 432 808)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "54004" + "plane" "(2752 -612 104) (2756 -616 108) (2756 -660 108)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218800" + "id" "135172" side { - "id" "86628" - "plane" "(2894 200 680) (2894 240 680) (2882 240 680)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "id" "54014" + "plane" "(2752 -672 124) (2756 -668 128) (2816 -668 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -70726,208 +72525,184 @@ world } side { - "id" "86627" - "plane" "(2882 240 680) (2894 240 680) (2894 240 684)" + "id" "54013" + "plane" "(2816 -672 96) (2816 -668 96) (2756 -668 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86626" - "plane" "(2894 200 680) (2882 200 680) (2882 200 684)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 18.1072] 0.188" - "vaxis" "[0 0 -1 508.064] 0.188" + "id" "54012" + "plane" "(2752 -672 96) (2752 -672 124) (2816 -672 124)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86625" - "plane" "(2882 200 680) (2882 240 680) (2882 240 684)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 1 -27.3334] 0.12" - "vaxis" "[0 -1 0 -298] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86624" - "plane" "(2894 240 680) (2894 200 680) (2894 200 684)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0 0 -1 36.8485] 0.12" - "vaxis" "[0 -1 0 -298] 0.25" + "id" "54011" + "plane" "(2816 -668 96) (2816 -668 128) (2756 -668 128)" + "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" "86623" - "plane" "(2888 200 688) (2888 240 688) (2894 240 684)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0.83205 0 -0.5547 24.3646] 0.12" - "vaxis" "[0 -1 0 -298] 0.25" + "id" "54010" + "plane" "(2756 -668 96) (2756 -668 128) (2752 -672 124)" + "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" "86622" - "plane" "(2882 200 684) (2882 240 684) (2888 240 688)" - "material" "DE_CBBLE/TRIM01" - "uaxis" "[0.83205 0 0.5547 63.804] 0.12" - "vaxis" "[0 -1 0 -298] 0.25" + "id" "54009" + "plane" "(2816 -672 96) (2816 -672 124) (2816 -668 128)" + "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" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218801" - side - { - "id" "86635" - "plane" "(2888 240 592) (2888 432 592) (2792 432 592)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "135173" side { - "id" "86634" - "plane" "(2792 432 592) (2888 432 592) (2888 432 808)" + "id" "54020" + "plane" "(2756 -664 224) (2760 -664 224) (2760 -668 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86633" - "plane" "(2888 240 592) (2792 240 592) (2792 240 608)" + "id" "54019" + "plane" "(2756 -668 128) (2760 -668 128) (2760 -664 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86632" - "plane" "(2792 240 592) (2792 432 592) (2792 432 736)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "54018" + "plane" "(2756 -668 128) (2756 -664 128) (2756 -664 224)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86631" - "plane" "(2888 432 592) (2888 240 592) (2888 240 680)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "id" "54017" + "plane" "(2760 -668 224) (2760 -664 224) (2760 -664 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86630" - "plane" "(2792 240 608) (2792 432 736) (2882 432 808)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0.307364 0.948444 0.0773334 123.052] 0.2" - "vaxis" "[0.832444 -0.307364 0.461046 -334.79] 0.2" + "id" "54016" + "plane" "(2760 -668 128) (2756 -668 128) (2756 -668 224)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86629" - "plane" "(2882 240 680) (2882 432 808) (2888 432 808)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "54015" + "plane" "(2760 -664 224) (2756 -664 224) (2756 -664 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 161 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218802" + "id" "135174" side { - "id" "86641" - "plane" "(2792 964 160) (2760 964 160) (2760 920 160)" + "id" "54026" + "plane" "(2760 -664 224) (2796 -664 224) (2796 -666 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 1 0 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86640" - "plane" "(2760 964 160) (2792 964 160) (2792 964 608)" + "id" "54025" + "plane" "(2760 -666 128) (2796 -666 128) (2796 -664 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 1 0 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86639" - "plane" "(2760 964 160) (2760 964 608) (2760 920 637.334)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "54024" + "plane" "(2760 -666 128) (2760 -664 128) (2760 -664 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86638" - "plane" "(2792 964 160) (2792 920 160) (2792 920 637.336)" + "id" "54023" + "plane" "(2796 -666 224) (2796 -664 224) (2796 -664 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 -1 0 8] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -70935,21 +72710,21 @@ world } side { - "id" "86637" - "plane" "(2760 964 608) (2792 964 608) (2792 920 637.336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "54022" + "plane" "(2796 -666 128) (2760 -666 128) (2760 -666 224)" + "material" "GLASS/URBAN_GLASS_03" + "uaxis" "[1 0 0 329] 30" + "vaxis" "[0 0 -1 184] 30" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86636" - "plane" "(2792 920 160) (2760 920 160) (2760 920 637.334)" + "id" "54021" + "plane" "(2796 -664 224) (2760 -664 224) (2760 -664 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 -8] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -70957,76 +72732,75 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 161 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218803" + "id" "135175" side { - "id" "86647" - "plane" "(2740 964 192) (2740 1004 192) (2792 1004 192)" + "id" "54032" + "plane" "(2796 -664 224) (2800 -664 224) (2800 -668 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86646" - "plane" "(2792 964 160) (2792 1004 160) (2740 1004 160)" + "id" "54031" + "plane" "(2796 -668 128) (2800 -668 128) (2800 -664 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86645" - "plane" "(2792 1004 160) (2792 1004 192) (2740 1004 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -81.7014] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "54030" + "plane" "(2796 -668 128) (2796 -664 128) (2796 -664 224)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86644" - "plane" "(2740 964 160) (2740 964 192) (2792 964 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 113.701] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "54029" + "plane" "(2800 -668 224) (2800 -664 224) (2800 -664 128)" + "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" "86643" - "plane" "(2740 1004 160) (2740 1004 192) (2740 964 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -86.2989] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "54028" + "plane" "(2800 -668 128) (2796 -668 128) (2796 -668 224)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86642" - "plane" "(2792 964 160) (2792 964 192) (2792 1004 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "id" "54027" + "plane" "(2800 -664 224) (2796 -664 224) (2796 -664 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71034,76 +72808,75 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 161 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218804" + "id" "135176" side { - "id" "86653" - "plane" "(2760 1004 192) (2760 1024 192) (2792 1024 192)" + "id" "54038" + "plane" "(2758 -548 224) (2760 -548 224) (2760 -664 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86652" - "plane" "(2792 1004 160) (2792 1024 160) (2760 1024 160)" + "id" "54037" + "plane" "(2758 -664 128) (2760 -664 128) (2760 -548 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86651" - "plane" "(2792 1024 160) (2792 1024 192) (2760 1024 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -60.424] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "54036" + "plane" "(2758 -664 128) (2758 -548 128) (2758 -548 224)" + "material" "GLASS/URBAN_GLASS_03" + "uaxis" "[0 -1 0 329] 30" + "vaxis" "[0 0 -1 184] 30" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86650" - "plane" "(2760 1004 160) (2760 1004 192) (2792 1004 192)" + "id" "54035" + "plane" "(2760 -664 224) (2760 -548 224) (2760 -548 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86649" - "plane" "(2760 1024 160) (2760 1024 192) (2760 1004 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -1.53232] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "54034" + "plane" "(2760 -664 128) (2758 -664 128) (2758 -664 224)" + "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" "86648" - "plane" "(2792 1004 160) (2792 1004 192) (2792 1024 192)" + "id" "54033" + "plane" "(2760 -548 224) (2758 -548 224) (2758 -548 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71111,43 +72884,42 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 161 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218805" + "id" "135178" side { - "id" "86659" - "plane" "(2760 964 368) (2760 968 368) (2792 968 368)" + "id" "54050" + "plane" "(2756 -544 224) (2760 -544 224) (2760 -548 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86658" - "plane" "(2792 964 192) (2792 968 192) (2760 968 192)" + "id" "54049" + "plane" "(2756 -548 128) (2760 -548 128) (2760 -544 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86657" - "plane" "(2792 968 192) (2792 968 368) (2760 968 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "54048" + "plane" "(2756 -548 128) (2756 -544 128) (2756 -544 224)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71155,10 +72927,10 @@ world } side { - "id" "86656" - "plane" "(2760 964 192) (2760 964 368) (2792 964 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "54047" + "plane" "(2760 -548 224) (2760 -544 224) (2760 -544 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71166,21 +72938,21 @@ world } side { - "id" "86655" - "plane" "(2760 968 192) (2760 968 368) (2760 964 368)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -36.6183] 0.188" - "vaxis" "[0 0 -1 125.064] 0.188" + "id" "54046" + "plane" "(2760 -548 128) (2756 -548 128) (2756 -548 224)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86654" - "plane" "(2792 964 192) (2792 964 368) (2792 968 368)" + "id" "54045" + "plane" "(2760 -544 224) (2756 -544 224) (2756 -544 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71188,65 +72960,53 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 161 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218806" - side - { - "id" "86665" - "plane" "(2760 772 752) (2760 964 624) (2792 964 624)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -505.128] 0.188" - "vaxis" "[1 0 0 -92.1072] 0.188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "135213" side { - "id" "86664" - "plane" "(2792 964 624) (2760 964 624) (2752 964 608)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 18.1072] 0.188" - "vaxis" "[0 0 -1 508.064] 0.188" + "id" "54062" + "plane" "(2800 -664 272) (2832 -664 272) (2832 -680 272)" + "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" "86663" - "plane" "(2760 772 752) (2792 772 752) (2792 772 736)" + "id" "54061" + "plane" "(2800 -680 96) (2832 -680 96) (2832 -664 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86662" - "plane" "(2760 964 624) (2760 772 752) (2752 772 736)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -505.617] 0.188" - "vaxis" "[0 0 -1 507.915] 0.188" + "id" "54060" + "plane" "(2800 -664 272) (2800 -680 272) (2800 -680 96)" + "material" "BRICK/INFWLLG" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86661" - "plane" "(2792 772 752) (2792 964 624) (2792 964 608)" + "id" "54059" + "plane" "(2832 -664 96) (2832 -680 96) (2832 -680 272)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71254,65 +73014,75 @@ world } side { - "id" "86660" - "plane" "(2792 772 736) (2792 964 608) (2752 964 608)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -505.617] 0.188" - "vaxis" "[1 0 0 -261.107] 0.188" + "id" "54058" + "plane" "(2832 -664 272) (2800 -664 272) (2800 -664 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54057" + "plane" "(2832 -680 96) (2800 -680 96) (2800 -680 272)" + "material" "BRICK/INFWLLG" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218807" + "id" "135218" side { - "id" "86671" - "plane" "(2760 772 160) (2792 772 160) (2792 816 160)" + "id" "54074" + "plane" "(2800 -760 272) (2832 -760 272) (2832 -776 272)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86670" - "plane" "(2792 772 160) (2760 772 160) (2760 772 736)" + "id" "54073" + "plane" "(2800 -776 96) (2832 -776 96) (2832 -760 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86669" - "plane" "(2760 772 160) (2760 816 160) (2760 816 706.668)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "54072" + "plane" "(2800 -760 272) (2800 -776 272) (2800 -776 96)" + "material" "BRICK/INFWLLG" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86668" - "plane" "(2792 772 160) (2792 772 736) (2792 816 706.668)" + "id" "54071" + "plane" "(2832 -760 96) (2832 -776 96) (2832 -776 272)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71320,21 +73090,21 @@ world } side { - "id" "86667" - "plane" "(2760 772 736) (2760 816 706.668) (2792 816 706.668)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "54070" + "plane" "(2832 -760 272) (2800 -760 272) (2800 -760 96)" + "material" "BRICK/INFWLLG" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86666" - "plane" "(2760 816 160) (2792 816 160) (2792 816 706.668)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "54069" + "plane" "(2832 -776 96) (2800 -776 96) (2800 -776 272)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71342,54 +73112,53 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218808" + "id" "135219" side { - "id" "86677" - "plane" "(2760 920 637.328) (2760 816 706.66) (2760 816 324)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "54086" + "plane" "(2816 -680 272) (2832 -680 272) (2832 -760 272)" + "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" "86676" - "plane" "(2792 816 706.664) (2792 920 637.332) (2792 920 324)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "54085" + "plane" "(2816 -760 212) (2832 -760 212) (2832 -680 212)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86675" - "plane" "(2792 816 706.664) (2760 816 706.66) (2760 920 637.328)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "54084" + "plane" "(2816 -680 272) (2816 -760 272) (2816 -760 212)" + "material" "BRICK/INFWLLG" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86674" - "plane" "(2760 920 324) (2792 920 324) (2792 920 637.332)" + "id" "54083" + "plane" "(2832 -680 212) (2832 -760 212) (2832 -760 272)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71397,10 +73166,10 @@ world } side { - "id" "86673" - "plane" "(2792 816 324) (2760 816 324) (2760 816 706.66)" + "id" "54082" + "plane" "(2832 -680 272) (2816 -680 272) (2816 -680 212)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71408,87 +73177,86 @@ world } side { - "id" "86672" - "plane" "(2760 816 324) (2792 816 324) (2792 920 324)" + "id" "54081" + "plane" "(2832 -760 212) (2816 -760 212) (2816 -760 272)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218809" + "id" "135316" side { - "id" "86683" - "plane" "(2668 752 192) (2668 772 192) (2700 772 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "54122" + "plane" "(2760 -664 128) (2816 -664 128) (2816 -668 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86682" - "plane" "(2700 752 160) (2700 772 160) (2668 772 160)" + "id" "54121" + "plane" "(2760 -668 96) (2816 -668 96) (2816 -664 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86681" - "plane" "(2700 772 160) (2700 772 192) (2668 772 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -37.7853] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "54120" + "plane" "(2760 -664 128) (2760 -668 128) (2760 -668 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86680" - "plane" "(2668 752 160) (2668 752 192) (2700 752 192)" + "id" "54119" + "plane" "(2816 -664 96) (2816 -668 96) (2816 -668 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86679" - "plane" "(2668 772 160) (2668 772 192) (2668 752 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -61.9581] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "54118" + "plane" "(2816 -664 128) (2760 -664 128) (2760 -664 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86678" - "plane" "(2700 752 160) (2700 752 192) (2700 772 192)" + "id" "54117" + "plane" "(2816 -668 96) (2760 -668 96) (2760 -668 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71496,76 +73264,75 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 161 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218810" + "id" "135410" side { - "id" "86689" - "plane" "(2648 712 192) (2648 752 192) (2700 752 192)" + "id" "54134" + "plane" "(2752 -776 228) (2816 -776 228) (2816 -896 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86688" - "plane" "(2700 712 160) (2700 752 160) (2648 752 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "54133" + "plane" "(2752 -896 224) (2816 -896 224) (2816 -776 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86687" - "plane" "(2648 712 160) (2648 712 192) (2700 712 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -59.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "54132" + "plane" "(2752 -776 228) (2752 -896 228) (2752 -896 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86686" - "plane" "(2700 752 160) (2700 752 192) (2648 752 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 91.0627] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "54131" + "plane" "(2816 -776 224) (2816 -896 224) (2816 -896 228)" + "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" "86685" - "plane" "(2648 752 160) (2648 752 192) (2648 712 192)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 2.04306] 0.188" - "vaxis" "[0 0 -1 83.0638] 0.188" + "id" "54130" + "plane" "(2816 -776 228) (2752 -776 228) (2752 -776 224)" + "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" "86684" - "plane" "(2700 712 160) (2700 712 192) (2700 752 192)" + "id" "54129" + "plane" "(2816 -896 224) (2752 -896 224) (2752 -896 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71573,32 +73340,42 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218811" + "id" "135434" side { - "id" "86694" - "plane" "(2760 920 288) (2760 920 324) (2760 876 324)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "54182" + "plane" "(2752 -768 228) (2800 -768 228) (2800 -776 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86693" - "plane" "(2792 920 288) (2792 876 324) (2792 920 324)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" + "id" "54181" + "plane" "(2752 -776 224) (2800 -776 224) (2800 -768 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54180" + "plane" "(2752 -768 228) (2752 -776 228) (2752 -776 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71606,10 +73383,10 @@ world } side { - "id" "86692" - "plane" "(2760 920 288) (2792 920 288) (2792 920 324)" + "id" "54179" + "plane" "(2800 -768 224) (2800 -776 224) (2800 -776 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71617,10 +73394,10 @@ world } side { - "id" "86691" - "plane" "(2760 876 324) (2792 876 324) (2792 920 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "54178" + "plane" "(2800 -768 228) (2752 -768 228) (2752 -768 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71628,43 +73405,53 @@ world } side { - "id" "86690" - "plane" "(2792 876 324) (2760 876 324) (2760 920 324)" + "id" "54177" + "plane" "(2800 -776 224) (2752 -776 224) (2752 -776 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218812" + "id" "135436" side { - "id" "86699" - "plane" "(2760 816 288) (2760 860 324) (2760 816 324)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "54194" + "plane" "(2752 -664 228) (2800 -664 228) (2800 -672 228)" + "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" "86698" - "plane" "(2792 816 288) (2792 816 324) (2792 860 324)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "id" "54193" + "plane" "(2752 -672 224) (2800 -672 224) (2800 -664 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54192" + "plane" "(2752 -664 228) (2752 -672 228) (2752 -672 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71672,10 +73459,10 @@ world } side { - "id" "86697" - "plane" "(2792 816 288) (2760 816 288) (2760 816 324)" + "id" "54191" + "plane" "(2800 -664 224) (2800 -672 224) (2800 -672 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71683,10 +73470,10 @@ world } side { - "id" "86696" - "plane" "(2760 816 288) (2792 816 288) (2792 860 324)" + "id" "54190" + "plane" "(2800 -664 228) (2752 -664 228) (2752 -664 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71694,65 +73481,64 @@ world } side { - "id" "86695" - "plane" "(2792 816 324) (2760 816 324) (2760 860 324)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "54189" + "plane" "(2800 -672 224) (2752 -672 224) (2752 -672 228)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218813" + "id" "135437" side { - "id" "86705" - "plane" "(2764 1000 352) (2764 1020 352) (2792 1020 352)" + "id" "54206" + "plane" "(2752 -544 228) (2816 -544 228) (2816 -664 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86704" - "plane" "(2792 1000 208) (2792 1020 208) (2764 1020 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "54205" + "plane" "(2752 -664 224) (2816 -664 224) (2816 -544 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86703" - "plane" "(2792 1020 208) (2792 1020 352) (2764 1020 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 24.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54204" + "plane" "(2752 -544 228) (2752 -664 228) (2752 -664 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86702" - "plane" "(2764 1000 208) (2764 1000 352) (2792 1000 352)" + "id" "54203" + "plane" "(2816 -544 224) (2816 -664 224) (2816 -664 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71760,21 +73546,21 @@ world } side { - "id" "86701" - "plane" "(2764 1020 208) (2764 1020 352) (2764 1000 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 108.002] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54202" + "plane" "(2816 -544 228) (2752 -544 228) (2752 -544 224)" + "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" "86700" - "plane" "(2792 1000 208) (2792 1000 352) (2792 1020 352)" + "id" "54201" + "plane" "(2816 -664 224) (2752 -664 224) (2752 -664 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71782,76 +73568,97 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218814" + "id" "135591" side { - "id" "86711" - "plane" "(2752 968 352) (2752 1000 352) (2792 1000 352)" + "id" "54287" + "plane" "(2752 -672 228) (2800 -672 228) (2800 -664 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86710" - "plane" "(2792 968 208) (2792 1000 208) (2752 1000 208)" + "id" "54286" + "plane" "(2752 -664 228) (2800 -664 228) (2800 -664 270.667)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86709" - "plane" "(2792 1000 208) (2792 1000 352) (2752 1000 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54285" + "plane" "(2800 -672 228) (2752 -672 228) (2760 -672 244)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86708" - "plane" "(2752 968 208) (2752 968 352) (2792 968 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54284" + "plane" "(2752 -672 228) (2752 -664 228) (2760 -664 244)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86707" - "plane" "(2752 1000 208) (2752 1000 352) (2752 968 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 308.002] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "54283" + "plane" "(2760 -664 244) (2772 -664 256) (2772 -672 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86706" - "plane" "(2792 968 208) (2792 968 352) (2792 1000 352)" + "id" "54282" + "plane" "(2772 -664 256) (2792 -664 268) (2792 -672 268)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54281" + "plane" "(2792 -664 268) (2800 -664 270.666) (2800 -672 270.666)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54280" + "plane" "(2800 -664 228) (2800 -672 228) (2800 -672 270.667)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71859,76 +73666,97 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218815" + "id" "135592" side { - "id" "86717" - "plane" "(2792 964 368) (2792 1004 368) (2740 1004 368)" + "id" "54295" + "plane" "(2752 -776 228) (2800 -776 228) (2800 -768 228)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54294" + "plane" "(2752 -768 228) (2800 -768 228) (2800 -768 270.667)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86716" - "plane" "(2740 964 368) (2748 964 384) (2792 964 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -188.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54293" + "plane" "(2800 -776 228) (2752 -776 228) (2760 -776 244)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86715" - "plane" "(2740 1004 368) (2792 1004 368) (2792 1004 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -252.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54292" + "plane" "(2752 -776 228) (2752 -768 228) (2760 -768 244)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86714" - "plane" "(2740 964 368) (2740 1004 368) (2748 1004 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -312.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54291" + "plane" "(2760 -768 244) (2772 -768 256) (2772 -776 256)" + "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" "86713" - "plane" "(2748 964 384) (2748 1004 384) (2792 1004 384)" + "id" "54290" + "plane" "(2772 -768 256) (2792 -768 268) (2792 -776 268)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86712" - "plane" "(2792 1004 368) (2792 964 368) (2792 964 384)" + "id" "54289" + "plane" "(2792 -768 268) (2800 -768 270.666) (2800 -776 270.666)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54288" + "plane" "(2800 -768 228) (2800 -776 228) (2800 -776 270.667)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71936,65 +73764,64 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218816" + "id" "135607" side { - "id" "86723" - "plane" "(2760 1004 368) (2792 1004 368) (2792 1024 368)" + "id" "54319" + "plane" "(2800 -776 288) (2816 -776 288) (2816 -912 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86722" - "plane" "(2760 1024 368) (2760 1016 384) (2760 1004 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -312.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54318" + "plane" "(2800 -912 256) (2816 -912 256) (2816 -776 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86721" - "plane" "(2760 1024 368) (2792 1024 368) (2792 1016 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54317" + "plane" "(2800 -776 288) (2800 -912 288) (2800 -912 256)" + "material" "BRICK/INFWLLG" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86720" - "plane" "(2760 1004 384) (2760 1016 384) (2792 1016 384)" + "id" "54316" + "plane" "(2816 -776 256) (2816 -912 256) (2816 -912 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86719" - "plane" "(2760 1004 368) (2760 1004 384) (2792 1004 384)" + "id" "54315" + "plane" "(2816 -776 288) (2800 -776 288) (2800 -776 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72002,10 +73829,10 @@ world } side { - "id" "86718" - "plane" "(2792 1024 368) (2792 1004 368) (2792 1004 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "54314" + "plane" "(2816 -912 256) (2800 -912 256) (2800 -912 288)" + "material" "BRICK/INFWLLG" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72013,76 +73840,64 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218817" + "id" "135613" side { - "id" "86730" - "plane" "(2760 1016 384) (2760 1018.67 386.672) (2760 1012 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -292.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54331" + "plane" "(2800 -528 288) (2816 -528 288) (2816 -664 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86729" - "plane" "(2760 1018.67 386.672) (2792 1018.66 386.667) (2792 1012 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54330" + "plane" "(2800 -664 256) (2816 -664 256) (2816 -528 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86728" - "plane" "(2760 1004 384) (2792 1004 384) (2792 1016 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 -1 0 -133.002] 0.2" + "id" "54329" + "plane" "(2800 -528 288) (2800 -664 288) (2800 -664 256)" + "material" "BRICK/INFWLLG" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86727" - "plane" "(2760 1004 400) (2760 1012 400) (2792 1012 400)" + "id" "54328" + "plane" "(2816 -528 256) (2816 -664 256) (2816 -664 288)" "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" "86726" - "plane" "(2760 1016 384) (2792 1016 384) (2792 1018.66 386.667)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 -0.707107 -0.707107 -257.729] 0.2" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86725" - "plane" "(2760 1004 384) (2760 1004 400) (2792 1004 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "54327" + "plane" "(2816 -528 288) (2800 -528 288) (2800 -528 256)" + "material" "BRICK/INFWLLG" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72090,10 +73905,10 @@ world } side { - "id" "86724" - "plane" "(2792 1018.66 386.667) (2792 1016 384) (2792 1004 384)" + "id" "54326" + "plane" "(2816 -664 256) (2800 -664 256) (2800 -664 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72101,65 +73916,64 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218818" + "id" "135619" side { - "id" "86736" - "plane" "(2752 964 400) (2749.34 964 402.668) (2760 964 423.987)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -188.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54343" + "plane" "(2800 -664 288) (2816 -664 288) (2816 -776 288)" + "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" "86735" - "plane" "(2749.33 1004 402.669) (2752 1004 400) (2760 1004 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -252.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54342" + "plane" "(2800 -776 272) (2816 -776 272) (2816 -664 272)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86734" - "plane" "(2749.34 964 402.668) (2749.33 1004 402.669) (2760 1004 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -312.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54341" + "plane" "(2800 -664 288) (2800 -776 288) (2800 -776 272)" + "material" "BRICK/INFWLLG" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86733" - "plane" "(2760 964 400) (2760 1004 400) (2752 1004 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -312.002] 0.2" - "vaxis" "[1 0 0 -109.002] 0.2" + "id" "54340" + "plane" "(2816 -664 272) (2816 -776 272) (2816 -776 288)" + "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" "86732" - "plane" "(2760 1004 400) (2760 964 400) (2760 964 423.987)" + "id" "54339" + "plane" "(2816 -664 288) (2800 -664 288) (2800 -664 272)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72167,65 +73981,64 @@ world } side { - "id" "86731" - "plane" "(2752 964 400) (2752 1004 400) (2749.33 1004 402.669)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -312.002] 0.2" - "vaxis" "[0.707107 0 -0.707107 -296.579] 0.2" + "id" "54338" + "plane" "(2816 -776 272) (2800 -776 272) (2800 -776 288)" + "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" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218819" + "id" "135622" side { - "id" "86742" - "plane" "(2760 1012 400) (2760 1014.67 402.674) (2760 1004 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -312.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54355" + "plane" "(2800 -528 384) (2816 -528 384) (2816 -912 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" "86741" - "plane" "(2760 1014.67 402.674) (2792 1014.67 402.672) (2792 1004 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54354" + "plane" "(2800 -912 288) (2816 -912 288) (2816 -528 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86740" - "plane" "(2760 1004 400) (2792 1004 400) (2792 1012 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 -1 0 -233.002] 0.2" + "id" "54353" + "plane" "(2800 -528 384) (2800 -912 384) (2800 -912 288)" + "material" "BRICK/INFWLLG" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86739" - "plane" "(2760 1004 400) (2760 1004 424) (2792 1004 424)" + "id" "54352" + "plane" "(2816 -528 288) (2816 -912 288) (2816 -912 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72233,21 +74046,21 @@ world } side { - "id" "86738" - "plane" "(2760 1012 400) (2792 1012 400) (2792 1014.67 402.672)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 -0.707107 -0.707107 -300.826] 0.2" + "id" "54351" + "plane" "(2816 -528 384) (2800 -528 384) (2800 -528 288)" + "material" "BRICK/INFWLLG" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86737" - "plane" "(2792 1014.67 402.672) (2792 1012 400) (2792 1004 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "54350" + "plane" "(2816 -912 288) (2800 -912 288) (2800 -912 384)" + "material" "BRICK/INFWLLG" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72255,87 +74068,75 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218820" - side - { - "id" "86749" - "plane" "(2748 964 384) (2745.33 964 386.675) (2752 964 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -168.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "135625" side { - "id" "86748" - "plane" "(2745.33 1004 386.672) (2748 1004 384) (2792 1004 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -232.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54367" + "plane" "(2752 -768 96) (2752 -672 96) (2832 -672 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86747" - "plane" "(2745.33 964 386.675) (2745.33 1004 386.672) (2752 1004 400)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -312.002] 0.2" - "vaxis" "[0 0 -1 291] 0.2" + "id" "54366" + "plane" "(2752 -672 64) (2752 -768 64) (2832 -768 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" "86746" - "plane" "(2792 964 384) (2792 1004 384) (2748 1004 384)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -312.002] 0.2" - "vaxis" "[1 0 0 -9.00171] 0.2" + "id" "54365" + "plane" "(2752 -768 64) (2752 -672 64) (2752 -672 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86745" - "plane" "(2752 964 400) (2752 1004 400) (2792 1004 400)" + "id" "54364" + "plane" "(2832 -672 64) (2832 -768 64) (2832 -768 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86744" - "plane" "(2748 964 384) (2748 1004 384) (2745.33 1004 386.672)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -312.002] 0.2" - "vaxis" "[0.707107 0 -0.707107 -253.482] 0.2" + "id" "54363" + "plane" "(2752 -672 64) (2832 -672 64) (2832 -672 96)" + "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" "86743" - "plane" "(2792 1004 384) (2792 964 384) (2792 964 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "54362" + "plane" "(2832 -768 64) (2752 -768 64) (2752 -768 96)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72343,30 +74144,29 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 251 136" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218821" + "id" "135627" side { - "id" "86754" - "plane" "(2780 1004 632) (2780 984 632) (2760 1004 612)" + "id" "54379" + "plane" "(2816 -680 212) (2832 -680 212) (2832 -688 212)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86753" - "plane" "(2780 1004 424) (2760 1004 424) (2780 984 424)" + "id" "54378" + "plane" "(2816 -688 96) (2832 -688 96) (2832 -680 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -72376,131 +74176,140 @@ world } side { - "id" "86752" - "plane" "(2760 1004 612) (2760 1004 424) (2780 1004 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -252.002] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "54377" + "plane" "(2816 -680 212) (2816 -688 212) (2816 -688 96)" + "material" "BRICK/INFWLLG" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86751" - "plane" "(2780 984 424) (2780 984 632) (2780 1004 632)" + "id" "54376" + "plane" "(2832 -680 96) (2832 -688 96) (2832 -688 212)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86750" - "plane" "(2760 1004 424) (2760 1004 612) (2780 984 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "54375" + "plane" "(2832 -680 212) (2816 -680 212) (2816 -680 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54374" + "plane" "(2832 -688 96) (2816 -688 96) (2816 -688 212)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218822" + "id" "135633" side { - "id" "86759" - "plane" "(2760 1004 612) (2780 984 632) (2760 984 632)" + "id" "54391" + "plane" "(2816 -752 212) (2832 -752 212) (2832 -760 212)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86758" - "plane" "(2760 984 424) (2780 984 424) (2760 1004 424)" + "id" "54390" + "plane" "(2816 -760 96) (2832 -760 96) (2832 -752 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86757" - "plane" "(2760 1004 424) (2760 1004 612) (2760 984 632)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -312.002] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "54389" + "plane" "(2816 -752 212) (2816 -760 212) (2816 -760 96)" + "material" "BRICK/INFWLLG" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86756" - "plane" "(2760 984 424) (2760 984 632) (2780 984 632)" + "id" "54388" + "plane" "(2832 -752 96) (2832 -760 96) (2832 -760 212)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86755" - "plane" "(2760 1004 612) (2760 1004 424) (2780 984 424)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "54387" + "plane" "(2832 -752 212) (2816 -752 212) (2816 -752 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54386" + "plane" "(2832 -760 96) (2816 -760 96) (2816 -760 212)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 199 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218823" - side - { - "id" "86765" - "plane" "(2792 1004 620) (2792 996 620) (2780 984 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "122285" side { - "id" "86764" - "plane" "(2780 1004 424) (2780 984 424) (2792 996 424)" + "id" "50771" + "plane" "(1216 -896 48) (1216 -1152 48) (1232 -1152 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72508,98 +74317,98 @@ world } side { - "id" "86763" - "plane" "(2792 1004 424) (2792 1004 620) (2780 1004 632)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -99.9983] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "50770" + "plane" "(1216 -1152 48) (1216 -896 48) (1216 -896 56)" + "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" "86762" - "plane" "(2780 1004 424) (2780 1004 632) (2780 984 632)" + "id" "50769" + "plane" "(1216 -896 48) (1232 -896 48) (1216 -896 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86761" - "plane" "(2792 996 620) (2792 996 424) (2780 984 424)" + "id" "50768" + "plane" "(1232 -1152 48) (1216 -1152 48) (1216 -1152 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86760" - "plane" "(2792 996 424) (2792 996 620) (2792 1004 620)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "50767" + "plane" "(1232 -896 48) (1232 -1152 48) (1216 -1152 56)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 170 227" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218824" + "id" "122356" side { - "id" "86770" - "plane" "(2760 984 632) (2780 984 632) (2760 964 612)" + "id" "50791" + "plane" "(896 -1152 56) (1136 -1152 56) (1136 -1136 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86769" - "plane" "(2760 964 424) (2780 984 424) (2760 984 424)" + "id" "50790" + "plane" "(1136 -1152 56) (896 -1152 56) (896 -1152 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86768" - "plane" "(2760 964 612) (2760 964 424) (2760 984 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 16.0017] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "50789" + "plane" "(896 -1152 56) (896 -1136 56) (896 -1152 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86767" - "plane" "(2780 984 424) (2780 984 632) (2760 984 632)" + "id" "50788" + "plane" "(1136 -1136 56) (1136 -1152 56) (1136 -1152 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72607,76 +74416,86 @@ world } side { - "id" "86766" - "plane" "(2760 964 424) (2760 964 612) (2780 984 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "50787" + "plane" "(896 -1136 56) (1136 -1136 56) (1136 -1152 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 170 227" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218825" + "id" "122366" + side + { + "id" "50803" + "plane" "(896 -896 56) (1152 -896 56) (1152 -1152 56)" + "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" "86775" - "plane" "(2780 984 632) (2792 984 632) (2792 972 620)" + "id" "50802" + "plane" "(896 -1152 32) (1152 -1152 32) (1152 -896 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86774" - "plane" "(2780 984 424) (2792 972 424) (2792 984 424)" + "id" "50801" + "plane" "(1152 -896 32) (1152 -1152 32) (1152 -1152 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86773" - "plane" "(2792 984 424) (2792 984 632) (2780 984 632)" + "id" "50800" + "plane" "(1152 -1152 32) (896 -1152 32) (896 -1152 56)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86772" - "plane" "(2792 972 620) (2792 972 424) (2780 984 424)" + "id" "50799" + "plane" "(896 -896 32) (1152 -896 32) (1152 -896 56)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86771" - "plane" "(2792 972 424) (2792 972 620) (2792 984 632)" + "id" "50798" + "plane" "(896 -1152 32) (896 -896 32) (896 -896 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72684,32 +74503,32 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 221 166" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218826" + "id" "122441" side { - "id" "86781" - "plane" "(2780 964 632) (2780 984 632) (2792 972 620)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "50809" + "plane" "(1472 -896 56) (1472 -1152 56) (1344 -1152 56)" + "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" "86780" - "plane" "(2780 964 424) (2792 964 424) (2792 972 424)" + "id" "50808" + "plane" "(1344 -1152 32) (1472 -1152 32) (1472 -896 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72717,186 +74536,175 @@ world } side { - "id" "86779" - "plane" "(2792 964 620) (2792 964 424) (2780 964 424)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -99.9983] 0.2" - "vaxis" "[0 0 -1 27] 0.2" + "id" "50807" + "plane" "(1472 -896 32) (1472 -1152 32) (1472 -1152 56)" + "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" "86778" - "plane" "(2780 984 424) (2780 984 632) (2780 964 632)" + "id" "50806" + "plane" "(1472 -1152 32) (1344 -1152 32) (1344 -1152 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86777" - "plane" "(2792 972 424) (2792 972 620) (2780 984 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "50805" + "plane" "(1344 -1152 32) (1344 -896 32) (1344 -896 56)" + "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" "86776" - "plane" "(2792 964 424) (2792 964 620) (2792 972 620)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "50804" + "plane" "(1344 -896 32) (1472 -896 32) (1472 -896 56)" + "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" "163 140 0" - "groupid" "219643" + "color" "0 221 166" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218827" + "id" "122447" side { - "id" "86786" - "plane" "(2780 984 632) (2792 996 620) (2792 984 632)" + "id" "50825" + "plane" "(1344 -1152 48) (1344 -896 48) (1328 -896 48)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86785" - "plane" "(2792 984 424) (2792 996 424) (2780 984 424)" + "id" "50824" + "plane" "(1344 -896 48) (1344 -1152 48) (1344 -1152 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86784" - "plane" "(2780 984 424) (2780 984 632) (2792 984 632)" + "id" "50823" + "plane" "(1344 -1152 48) (1328 -1152 48) (1344 -1152 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86783" - "plane" "(2792 996 424) (2792 996 620) (2780 984 632)" + "id" "50822" + "plane" "(1328 -896 48) (1344 -896 48) (1344 -896 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86782" - "plane" "(2792 996 620) (2792 996 424) (2792 984 424)" - "material" "TOOLS/TOOLSNODRAW" + "id" "50821" + "plane" "(1328 -1152 48) (1328 -896 48) (1344 -896 56)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 170 227" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218828" + "id" "122470" side { - "id" "86792" - "plane" "(2652 716 352) (2654 718 352) (2660 718 352)" + "id" "50835" + "plane" "(1472 -1152 56) (1472 -896 56) (1456 -896 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86791" - "plane" "(2660 716 208) (2660 718 208) (2654 718 208)" + "id" "50834" + "plane" "(1472 -896 56) (1472 -1152 56) (1472 -1152 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86790" - "plane" "(2660 718 208) (2660 718 352) (2654 718 352)" + "id" "50833" + "plane" "(1472 -1152 56) (1456 -1152 56) (1472 -1152 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86789" - "plane" "(2652 716 208) (2652 716 352) (2660 716 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86788" - "plane" "(2654 718 208) (2654 718 352) (2652 716 352)" + "id" "50832" + "plane" "(1456 -896 56) (1472 -896 56) (1472 -896 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86787" - "plane" "(2660 716 208) (2660 716 352) (2660 718 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "id" "50831" + "plane" "(1456 -1152 56) (1456 -896 56) (1472 -896 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72904,43 +74712,43 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 170 227" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218829" + "id" "119385" side { - "id" "86798" - "plane" "(2654 746 352) (2652 748 352) (2660 748 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "50112" + "plane" "(160 -608 104) (160 -544 104) (192 -544 104)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86797" - "plane" "(2660 746 208) (2660 748 208) (2652 748 208)" + "id" "50111" + "plane" "(160 -544 96) (160 -608 96) (192 -608 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86796" - "plane" "(2654 746 208) (2654 746 352) (2660 746 352)" + "id" "50110" + "plane" "(160 -608 96) (160 -544 96) (160 -544 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72948,21 +74756,21 @@ world } side { - "id" "86795" - "plane" "(2660 748 208) (2660 748 352) (2652 748 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "50109" + "plane" "(192 -544 96) (192 -608 96) (192 -608 104)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86794" - "plane" "(2652 748 208) (2652 748 352) (2654 746 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "id" "50108" + "plane" "(160 -544 96) (192 -544 96) (192 -544 104)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72970,10 +74778,10 @@ world } side { - "id" "86793" - "plane" "(2660 746 208) (2660 746 352) (2660 748 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "id" "50107" + "plane" "(192 -608 96) (160 -608 96) (160 -608 104)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72981,76 +74789,75 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218830" + "id" "119395" side { - "id" "86804" - "plane" "(2660 716 352) (2660 748 352) (2700 748 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 48] 0.25" + "id" "50124" + "plane" "(160 -544 208) (160 -536 208) (168 -536 208)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86803" - "plane" "(2700 716 208) (2700 748 208) (2660 748 208)" + "id" "50123" + "plane" "(160 -536 96) (160 -544 96) (168 -544 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86802" - "plane" "(2660 716 208) (2660 716 352) (2700 716 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "50122" + "plane" "(160 -544 96) (160 -536 96) (160 -536 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86801" - "plane" "(2700 748 208) (2700 748 352) (2660 748 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 16.0017] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "50121" + "plane" "(168 -536 96) (168 -544 96) (168 -544 208)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86800" - "plane" "(2660 748 208) (2660 748 352) (2660 716 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -328.002] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "50120" + "plane" "(160 -536 96) (168 -536 96) (168 -536 208)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86799" - "plane" "(2700 716 208) (2700 716 352) (2700 748 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "id" "50119" + "plane" "(168 -544 96) (160 -544 96) (160 -544 208)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -73058,32 +74865,31 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218831" + "id" "119404" side { - "id" "86809" - "plane" "(2760 240 616) (2780 240 636) (2780 220 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -5.1037] 0.188" - "vaxis" "[0 -1 0 -8.85166] 0.188" + "id" "50136" + "plane" "(160 -608 208) (160 -544 208) (168 -544 208)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86808" - "plane" "(2760 240 612) (2780 220 632) (2780 240 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "50135" + "plane" "(160 -544 200) (160 -608 200) (168 -608 200)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -73091,21 +74897,32 @@ world } side { - "id" "86807" - "plane" "(2760 240 616) (2760 240 612) (2780 240 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -4.89276] 0.188" - "vaxis" "[0 0 -1 80.0638] 0.188" + "id" "50134" + "plane" "(160 -608 200) (160 -544 200) (160 -544 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86806" - "plane" "(2760 240 612) (2760 240 616) (2780 220 636)" - "material" "TOOLS/TOOLSNODRAW" + "id" "50133" + "plane" "(168 -544 200) (168 -608 200) (168 -608 208)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "50132" + "plane" "(160 -544 200) (168 -544 200) (168 -544 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -73113,10 +74930,10 @@ world } side { - "id" "86805" - "plane" "(2780 220 632) (2780 220 636) (2780 240 636)" + "id" "50131" + "plane" "(168 -608 200) (160 -608 200) (160 -608 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -73124,120 +74941,118 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218832" + "id" "119409" side { - "id" "86815" - "plane" "(2780 1004 632) (2780 1006 632) (2780 1006 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "50148" + "plane" "(160 -616 208) (160 -608 208) (168 -608 208)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86814" - "plane" "(2800 1006 612) (2800 1004 612) (2800 1004 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 121.022] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "50147" + "plane" "(160 -608 96) (160 -616 96) (168 -616 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86813" - "plane" "(2780 1006 632) (2800 1006 612) (2800 1006 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 116.424] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "50146" + "plane" "(160 -616 96) (160 -608 96) (160 -608 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86812" - "plane" "(2800 1004 612) (2780 1004 632) (2780 1004 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "50145" + "plane" "(168 -608 96) (168 -616 96) (168 -616 208)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86811" - "plane" "(2800 1006 612) (2780 1006 632) (2780 1004 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 121.022] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "50144" + "plane" "(160 -608 96) (168 -608 96) (168 -608 208)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86810" - "plane" "(2800 1004 616) (2780 1004 636) (2780 1006 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 121.022] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "50143" + "plane" "(168 -616 96) (160 -616 96) (160 -616 208)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218833" + "id" "119410" side { - "id" "86820" - "plane" "(2800 1004 616) (2780 984 636) (2780 1004 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 116.424] 0.188" - "vaxis" "[0 -1 0 -41.0216] 0.188" + "id" "50160" + "plane" "(160 -608 200) (160 -544 200) (164 -544 200)" + "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" "86819" - "plane" "(2800 1004 612) (2780 1004 632) (2780 984 632)" + "id" "50159" + "plane" "(160 -544 104) (160 -608 104) (164 -608 104)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86818" - "plane" "(2800 1004 612) (2800 1004 616) (2780 1004 636)" + "id" "50158" + "plane" "(160 -608 104) (160 -544 104) (160 -544 200)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -73245,10 +75060,21 @@ world } side { - "id" "86817" - "plane" "(2780 984 632) (2780 984 636) (2800 1004 616)" + "id" "50157" + "plane" "(164 -544 104) (164 -608 104) (164 -608 200)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "50156" + "plane" "(160 -544 104) (164 -544 104) (164 -544 200)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -73256,10 +75082,10 @@ world } side { - "id" "86816" - "plane" "(2780 1004 632) (2780 1004 636) (2780 984 636)" + "id" "50155" + "plane" "(164 -608 104) (160 -608 104) (160 -608 200)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -73267,769 +75093,809 @@ world } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218834" + "id" "119442" side { - "id" "86825" - "plane" "(2760 1004 616) (2780 1004 636) (2780 984 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -5.1037] 0.188" - "vaxis" "[0 -1 0 -41.0216] 0.188" + "id" "50172" + "plane" "(336 -256 136) (336 -240 136) (384 -240 136)" + "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" "86824" - "plane" "(2760 1004 612) (2780 984 632) (2780 1004 632)" + "id" "50171" + "plane" "(336 -240 95) (336 -256 95) (384 -256 95)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86823" - "plane" "(2760 1004 616) (2760 1004 612) (2780 1004 632)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "50170" + "plane" "(336 -256 95) (336 -240 95) (336 -240 136)" + "material" "TEROUST/ARPEGGIO/WALLPAPER/WALLPAPER_FLOWER_INVERT_SMALL" + "uaxis" "[0 1 0 -49] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86822" - "plane" "(2760 1004 612) (2760 1004 616) (2780 984 636)" + "id" "50169" + "plane" "(384 -240 95) (384 -256 95) (384 -256 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86821" - "plane" "(2780 984 632) (2780 984 636) (2780 1004 636)" + "id" "50168" + "plane" "(336 -240 95) (384 -240 95) (384 -240 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "50167" + "plane" "(384 -256 95) (336 -256 95) (336 -256 136)" + "material" "TEROUST/ARPEGGIO/WALLPAPER/WALLPAPER_FLOWER_INVERT_SMALL" + "uaxis" "[-1 0 0 15] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 108 237" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218835" + "id" "119445" side { - "id" "86831" - "plane" "(2780 1006 632) (2780 1004 632) (2780 1004 636)" + "id" "50184" + "plane" "(224 -256 320) (224 -240 320) (352 -240 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86830" - "plane" "(2760 1004 612) (2760 1006 612) (2760 1006 616)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 121.022] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "50183" + "plane" "(224 -240 256) (224 -256 256) (352 -256 256)" + "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" "86829" - "plane" "(2760 1006 612) (2780 1006 632) (2780 1006 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -5.1037] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "50182" + "plane" "(224 -256 256) (224 -240 256) (224 -240 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" "86828" - "plane" "(2780 1004 632) (2760 1004 612) (2760 1004 616)" + "id" "50181" + "plane" "(352 -240 256) (352 -256 256) (352 -256 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86827" - "plane" "(2760 1004 612) (2780 1004 632) (2780 1006 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 121.022] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "50180" + "plane" "(224 -240 256) (352 -240 256) (352 -240 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" "86826" - "plane" "(2760 1006 616) (2780 1006 636) (2780 1004 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 121.022] 0.188" - "vaxis" "[0 0 -1 123.574] 0.188" + "id" "50179" + "plane" "(352 -256 256) (224 -256 256) (224 -256 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 108 237" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218836" + "id" "119480" side { - "id" "86837" - "plane" "(2780 242 504) (2780 240 504) (2780 240 508)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" + "id" "50274" + "plane" "(244 -260 96) (244 -240 96) (332 -240 96)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[0 1 0 0] 0.2" + "vaxis" "[1 0 0 0] 0.2" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86836" - "plane" "(2780 242 504) (2780 242 508) (2769 242 497)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -5.1037] 0.188" - "vaxis" "[0 0 -1 82.7234] 0.188" + "id" "50273" + "plane" "(244 -240 -128) (244 -260 -128) (332 -260 -128)" + "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" "86835" - "plane" "(2780 240 504) (2772 240 496) (2768 240 496)" + "id" "50272" + "plane" "(244 -260 -128) (244 -240 -128) (244 -240 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86834" - "plane" "(2780 240 504) (2780 242 504) (2773 242 497)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 88.8517] 0.188" - "vaxis" "[0 0 -1 82.7234] 0.188" + "id" "50271" + "plane" "(332 -240 -128) (332 -260 -128) (332 -260 96)" + "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" "86833" - "plane" "(2780 242 508) (2780 240 508) (2768 240 496)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 88.8517] 0.188" - "vaxis" "[0 0 -1 82.7234] 0.188" + "id" "50270" + "plane" "(244 -240 -128) (332 -240 -128) (332 -240 96)" + "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" "86832" - "plane" "(2772 240 496) (2773 242 497) (2769 242 497)" + "id" "50269" + "plane" "(332 -260 -128) (244 -260 -128) (244 -260 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218837" + "id" "119494" side { - "id" "86843" - "plane" "(2780 240 504) (2780 242 504) (2780 242 508)" + "id" "50286" + "plane" "(960 192 320) (960 128 320) (896 128 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86842" - "plane" "(2780 242 504) (2787 242 497) (2791 242 497)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 116.424] 0.188" - "vaxis" "[0 0 -1 82.7234] 0.188" + "id" "50285" + "plane" "(960 128 64) (960 192 64) (896 192 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" "86841" - "plane" "(2780 240 504) (2780 240 508) (2792 240 496)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "50284" + "plane" "(960 192 64) (960 128 64) (960 128 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86840" - "plane" "(2780 242 504) (2780 240 504) (2788 240 496)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 88.8517] 0.188" - "vaxis" "[0 0 -1 82.7234] 0.188" + "id" "50283" + "plane" "(896 128 64) (896 192 64) (896 192 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86839" - "plane" "(2780 240 508) (2780 242 508) (2791 242 497)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 88.8517] 0.188" - "vaxis" "[0 0 -1 82.7234] 0.188" + "id" "50282" + "plane" "(896 192 64) (960 192 64) (960 192 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" "86838" - "plane" "(2792 240 496) (2791 242 497) (2787 242 497)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "50281" + "plane" "(960 128 64) (896 128 64) (896 128 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 108 237" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218838" + "id" "119502" side { - "id" "86848" - "plane" "(2800 200 616) (2780 200 636) (2780 220 636)" + "id" "50298" + "plane" "(704 -192 128) (576 -192 128) (576 -128 128)" "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 116.424] 0.188" - "vaxis" "[0 1 0 82.7247] 0.188" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 -12.8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86847" - "plane" "(2800 200 612) (2780 220 632) (2780 200 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 112.893] 0.188" - "vaxis" "[0 1 0 3.12802] 0.188" + "id" "50297" + "plane" "(576 -192 64) (704 -192 64) (704 -128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 29.0909] 0.25" + "vaxis" "[0 -1 0 -12.8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86846" - "plane" "(2800 200 616) (2800 200 612) (2780 200 632)" + "id" "50296" + "plane" "(704 -192 64) (576 -192 64) (576 -192 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 29.0909] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86845" - "plane" "(2800 200 612) (2800 200 616) (2780 220 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "50295" + "plane" "(704 -128 64) (704 -192 64) (704 -192 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86844" - "plane" "(2780 220 632) (2780 220 636) (2780 200 636)" + "id" "50294" + "plane" "(576 -128 64) (704 -128 64) (704 -128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 29.0909] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "50293" + "plane" "(576 -192 64) (576 -128 64) (576 -128 128)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 12.8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 226 179" + "groupid" "119501" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218839" + "id" "118136" side { - "id" "86854" - "plane" "(2762 430 1056) (2698 430 1056) (2698 494 1056)" + "id" "50076" + "plane" "(2304 -512 384) (2304 -192 384) (2432 -192 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86853" - "plane" "(2760 432 1054) (2762 430 1056) (2762 494 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 180.002] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "50075" + "plane" "(2304 -192 256) (2304 -512 256) (2432 -512 256)" + "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" "86852" - "plane" "(2760 432 1054) (2760 492 1054) (2700 492 1054)" + "id" "50074" + "plane" "(2304 -512 256) (2304 -192 256) (2304 -192 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86851" - "plane" "(2762 430 1056) (2760 432 1054) (2700 432 1054)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 220.002] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "50073" + "plane" "(2432 -192 256) (2432 -512 256) (2432 -512 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86850" - "plane" "(2760 492 1054) (2762 494 1056) (2698 494 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 220.002] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "50072" + "plane" "(2304 -192 256) (2432 -192 256) (2432 -192 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86849" - "plane" "(2700 492 1054) (2698 494 1056) (2698 430 1056)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 44.0017] 0.2" - "vaxis" "[0 0 -1 227] 0.2" + "id" "50071" + "plane" "(2432 -512 256) (2304 -512 256) (2304 -512 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218840" + "id" "116786" side { - "id" "86860" - "plane" "(2780 964 504) (2780 962 504) (2780 962 508)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "49811" + "plane" "(576 -1312 175.885) (704 -1312 175.885) (704 -1440 175.885)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86859" - "plane" "(2780 962 504) (2773 962 497) (2769 962 497)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -5.1037] 0.188" - "vaxis" "[0 0 -1 82.7234] 0.188" + "id" "49812" + "plane" "(576 -1440 63.8847) (704 -1440 63.8847) (704 -1312 63.8847)" + "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" "86858" - "plane" "(2780 964 504) (2780 964 508) (2768 964 496)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "49813" + "plane" "(576 -1312 175.885) (576 -1440 175.885) (576 -1440 63.8847)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86857" - "plane" "(2780 962 504) (2780 964 504) (2772 964 496)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -34.8946] 0.188" - "vaxis" "[0 0 -1 82.7234] 0.188" + "id" "49814" + "plane" "(704 -1312 63.8847) (704 -1440 63.8847) (704 -1440 175.885)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86856" - "plane" "(2780 964 508) (2780 962 508) (2769 962 497)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -34.8946] 0.188" - "vaxis" "[0 0 -1 82.7234] 0.188" + "id" "49815" + "plane" "(704 -1312 175.885) (576 -1312 175.885) (576 -1312 63.8847)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86855" - "plane" "(2773 962 497) (2772 964 496) (2768 964 496)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "49816" + "plane" "(704 -1440 63.8847) (576 -1440 63.8847) (576 -1440 175.885)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 251 180" + "visgroupid" "24" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218841" + "id" "116797" side { - "id" "86865" - "plane" "(2760 964 616) (2780 984 636) (2780 964 636)" + "id" "49828" + "plane" "(-104 -528 16) (-104 -240 16) (-64 -240 16)" "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -5.1037] 0.188" - "vaxis" "[0 1 0 114.895] 0.188" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86864" - "plane" "(2760 964 612) (2780 964 632) (2780 984 632)" + "id" "49827" + "plane" "(-104 -240 4.45048e-06) (-104 -528 4.45048e-06) (-64 -528 4.45048e-06)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86863" - "plane" "(2760 964 612) (2760 964 616) (2780 964 636)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -4.89276] 0.188" - "vaxis" "[0 0 -1 64.0638] 0.188" + "id" "49826" + "plane" "(-104 -528 4.45048e-06) (-104 -240 4.45048e-06) (-104 -240 16)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86862" - "plane" "(2780 984 632) (2780 984 636) (2760 964 616)" + "id" "49825" + "plane" "(-64 -240 4.45048e-06) (-64 -528 4.45048e-06) (-64 -528 16)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86861" - "plane" "(2780 964 632) (2780 964 636) (2780 984 636)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "49824" + "plane" "(-104 -240 4.45048e-06) (-64 -240 4.45048e-06) (-64 -240 16)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "49823" + "plane" "(-64 -528 4.45048e-06) (-104 -528 4.45048e-06) (-104 -528 16)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218842" + "id" "116803" side { - "id" "86870" - "plane" "(2800 964 616) (2780 964 636) (2780 984 636)" + "id" "49840" + "plane" "(-64 -528 32) (-64 -240 32) (-32 -240 32)" "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 116.424] 0.188" - "vaxis" "[0 1 0 114.895] 0.188" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86869" - "plane" "(2800 964 612) (2780 984 632) (2780 964 632)" + "id" "49839" + "plane" "(-64 -240 0) (-64 -528 0) (-32 -528 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86868" - "plane" "(2800 964 616) (2800 964 612) (2780 964 632)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 112.893] 0.188" - "vaxis" "[0 0 -1 64.0638] 0.188" + "id" "49838" + "plane" "(-64 -528 0) (-64 -240 0) (-64 -240 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86867" - "plane" "(2800 964 612) (2800 964 616) (2780 984 636)" + "id" "49837" + "plane" "(-32 -240 0) (-32 -528 0) (-32 -528 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86866" - "plane" "(2780 984 632) (2780 984 636) (2780 964 636)" + "id" "49836" + "plane" "(-64 -240 0) (-32 -240 0) (-32 -240 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "49835" + "plane" "(-32 -528 0) (-64 -528 0) (-64 -528 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218843" + "id" "116805" side { - "id" "86876" - "plane" "(2780 962 504) (2780 964 504) (2780 964 508)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "49852" + "plane" "(-32 -528 48) (-32 -240 48) (0 -240 48)" + "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" "86875" - "plane" "(2780 962 504) (2780 962 508) (2791 962 497)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 116.424] 0.188" - "vaxis" "[0 0 -1 82.7234] 0.188" + "id" "49851" + "plane" "(-32 -240 0) (-32 -528 0) (0 -528 0)" + "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" "86874" - "plane" "(2780 964 504) (2788 964 496) (2792 964 496)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "49850" + "plane" "(-32 -528 0) (-32 -240 0) (-32 -240 48)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86873" - "plane" "(2780 964 504) (2780 962 504) (2787 962 497)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -34.8946] 0.188" - "vaxis" "[0 0 -1 82.7234] 0.188" + "id" "49849" + "plane" "(0 -240 0) (0 -528 0) (0 -528 48)" + "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" "86872" - "plane" "(2780 962 508) (2780 964 508) (2792 964 496)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -34.8946] 0.188" - "vaxis" "[0 0 -1 82.7234] 0.188" + "id" "49848" + "plane" "(-32 -240 0) (0 -240 0) (0 -240 48)" + "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" "86871" - "plane" "(2791 962 497) (2792 964 496) (2788 964 496)" + "id" "49847" + "plane" "(0 -528 0) (-32 -528 0) (-32 -528 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218844" + "id" "116807" side { - "id" "86882" - "plane" "(2700 524 612) (2700 680 612) (2728 680 612)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "49864" + "plane" "(0 -528 64) (0 -240 64) (32 -240 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" "86881" - "plane" "(2700 524 612) (2728 524 612) (2728 524 384)" + "id" "49863" + "plane" "(0 -240 0) (0 -528 0) (32 -528 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86880" - "plane" "(2728 680 612) (2700 680 612) (2700 680 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "id" "49862" + "plane" "(0 -528 0) (0 -240 0) (0 -240 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -74037,21 +75903,21 @@ world } side { - "id" "86879" - "plane" "(2700 680 612) (2700 524 612) (2700 524 384)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "49861" + "plane" "(32 -240 0) (32 -528 0) (32 -528 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" "86878" - "plane" "(2728 524 612) (2728 680 612) (2728 680 384)" + "id" "49860" + "plane" "(0 -240 0) (32 -240 0) (32 -240 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -74059,54 +75925,54 @@ world } side { - "id" "86877" - "plane" "(2728 524 384) (2728 680 384) (2700 680 384)" + "id" "49859" + "plane" "(32 -528 0) (0 -528 0) (0 -528 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218845" + "id" "116809" side { - "id" "86888" - "plane" "(2728 492 160) (2728 516 160) (2700 516 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "49876" + "plane" "(32 -528 80) (32 -240 80) (64 -240 80)" + "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" "86887" - "plane" "(2700 516 160) (2728 516 160) (2728 516 304)" + "id" "49875" + "plane" "(32 -240 0) (32 -528 0) (64 -528 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86886" - "plane" "(2728 492 160) (2700 492 160) (2700 492 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "id" "49874" + "plane" "(32 -528 0) (32 -240 0) (32 -240 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -74114,21 +75980,21 @@ world } side { - "id" "86885" - "plane" "(2700 492 160) (2700 516 160) (2700 516 304)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 -1 0 -840.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "49873" + "plane" "(64 -240 0) (64 -528 0) (64 -528 80)" + "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" "86884" - "plane" "(2728 516 160) (2728 492 160) (2728 492 304)" + "id" "49872" + "plane" "(32 -240 0) (64 -240 0) (64 -240 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -74136,54 +76002,54 @@ world } side { - "id" "86883" - "plane" "(2700 492 304) (2700 516 304) (2728 516 304)" + "id" "49871" + "plane" "(64 -528 0) (32 -528 0) (32 -528 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218846" + "id" "116813" side { - "id" "86894" - "plane" "(2746 998 352) (2744 1000 352) (2752 1000 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "49888" + "plane" "(-80 -528 24) (-80 -240 24) (-64 -240 24)" + "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" "86893" - "plane" "(2752 998 208) (2752 1000 208) (2744 1000 208)" + "id" "49887" + "plane" "(-80 -240 16) (-80 -528 16) (-64 -528 16)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86892" - "plane" "(2746 998 208) (2746 998 352) (2752 998 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "49886" + "plane" "(-80 -528 16) (-80 -240 16) (-80 -240 24)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -74191,76 +76057,76 @@ world } side { - "id" "86891" - "plane" "(2752 1000 208) (2752 1000 352) (2744 1000 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "49885" + "plane" "(-64 -240 16) (-64 -528 16) (-64 -528 24)" + "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" "86890" - "plane" "(2744 1000 208) (2744 1000 352) (2746 998 352)" + "id" "49884" + "plane" "(-80 -240 16) (-64 -240 16) (-64 -240 24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86889" - "plane" "(2752 998 208) (2752 998 352) (2752 1000 352)" + "id" "49883" + "plane" "(-64 -528 16) (-80 -528 16) (-80 -528 24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218847" + "id" "116816" side { - "id" "86900" - "plane" "(2744 968 352) (2746 970 352) (2752 970 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "49900" + "plane" "(-48 -528 40) (-48 -240 40) (-32 -240 40)" + "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" "86899" - "plane" "(2752 968 208) (2752 970 208) (2746 970 208)" + "id" "49899" + "plane" "(-48 -240 32) (-48 -528 32) (-32 -528 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86898" - "plane" "(2752 970 208) (2752 970 352) (2746 970 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "49898" + "plane" "(-48 -528 32) (-48 -240 32) (-48 -240 40)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -74268,21 +76134,21 @@ world } side { - "id" "86897" - "plane" "(2744 968 208) (2744 968 352) (2752 968 352)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 -35.9983] 0.2" - "vaxis" "[0 0 -1 3] 0.2" + "id" "49897" + "plane" "(-32 -240 32) (-32 -528 32) (-32 -528 40)" + "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" "86896" - "plane" "(2746 970 208) (2746 970 352) (2744 968 352)" + "id" "49896" + "plane" "(-48 -240 32) (-32 -240 32) (-32 -240 40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -74290,54 +76156,54 @@ world } side { - "id" "86895" - "plane" "(2752 968 208) (2752 968 352) (2752 970 352)" + "id" "49895" + "plane" "(-32 -528 32) (-48 -528 32) (-48 -528 40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218848" + "id" "116817" side { - "id" "86906" - "plane" "(2980 744 992) (2760 744 992) (2760 772 992)" - "material" "TOOLS/TOOLSNODRAW" + "id" "49912" + "plane" "(-16 -528 56) (-16 -240 56) (0 -240 56)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86905" - "plane" "(2760 744 624) (2980 744 624) (2980 772 624)" + "id" "49911" + "plane" "(-16 -240 48) (-16 -528 48) (0 -528 48)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86904" - "plane" "(2760 772 624) (2760 772 992) (2760 744 992)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "id" "49910" + "plane" "(-16 -528 48) (-16 -240 48) (-16 -240 56)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -74345,10 +76211,10 @@ world } side { - "id" "86903" - "plane" "(2980 744 624) (2980 744 992) (2980 772 992)" + "id" "49909" + "plane" "(0 -240 48) (0 -528 48) (0 -528 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -74356,74 +76222,74 @@ world } side { - "id" "86902" - "plane" "(2980 772 624) (2980 772 992) (2760 772 992)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[1 0 0 -215.108] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "49908" + "plane" "(-16 -240 48) (0 -240 48) (0 -240 56)" + "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" "86901" - "plane" "(2760 744 624) (2760 744 992) (2980 744 992)" + "id" "49907" + "plane" "(0 -528 48) (-16 -528 48) (-16 -528 56)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "218849" + "id" "116819" side { - "id" "86912" - "plane" "(2792 432 160) (2760 432 160) (2760 388 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "49924" + "plane" "(16 -528 72) (16 -240 72) (32 -240 72)" + "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" "86911" - "plane" "(2760 432 160) (2792 432 160) (2792 432 736)" + "id" "49923" + "plane" "(16 -240 64) (16 -528 64) (32 -528 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86910" - "plane" "(2760 432 160) (2760 432 736) (2760 388 706.673)" - "material" "BRICK/HR_BRICK/BRICK_G" - "uaxis" "[0 1 0 946.873] 0.188" - "vaxis" "[0 0 -1 851.064] 0.188" + "id" "49922" + "plane" "(16 -528 64) (16 -240 64) (16 -240 72)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86909" - "plane" "(2792 432 160) (2792 388 160) (2792 388 706.673)" + "id" "49921" + "plane" "(32 -240 64) (32 -528 64) (32 -528 72)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -74433,74 +76299,74 @@ world } side { - "id" "86908" - "plane" "(2760 432 736) (2792 432 736) (2792 388 706.673)" + "id" "49920" + "plane" "(16 -240 64) (32 -240 64) (32 -240 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86907" - "plane" "(2792 388 160) (2760 388 160) (2760 388 706.673)" + "id" "49919" + "plane" "(32 -528 64) (16 -528 64) (16 -528 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "163 140 0" - "groupid" "219643" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "240364" + "id" "116820" side { - "id" "86918" - "plane" "(2752 32 192) (2752 168 192) (2760 168 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "49936" + "plane" "(48 -528 88) (48 -240 88) (192 -240 88)" + "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" "86917" - "plane" "(2752 168 96) (2752 32 96) (2760 32 96)" + "id" "49935" + "plane" "(48 -240 80) (48 -528 80) (192 -528 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86916" - "plane" "(2752 32 96) (2752 168 96) (2752 168 192)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "49934" + "plane" "(48 -528 80) (48 -240 80) (48 -240 88)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86915" - "plane" "(2760 168 96) (2760 32 96) (2760 32 192)" + "id" "49933" + "plane" "(192 -240 80) (192 -528 80) (192 -528 88)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -74510,8 +76376,8 @@ world } side { - "id" "86914" - "plane" "(2760 32 96) (2752 32 96) (2752 32 192)" + "id" "49932" + "plane" "(48 -240 80) (192 -240 80) (192 -240 88)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -74521,62 +76387,63 @@ world } side { - "id" "86913" - "plane" "(2752 168 96) (2760 168 96) (2760 168 192)" - "material" "DEV/REFLECTIVITY_30B" + "id" "49931" + "plane" "(192 -528 80) (48 -528 80) (48 -528 88)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "240365" + "id" "116823" side { - "id" "86924" - "plane" "(2752 168 192) (2752 200 192) (2760 200 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "49948" + "plane" "(-136 -544 8) (-136 -224 8) (-64 -224 8)" + "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" "86923" - "plane" "(2752 200 160) (2752 168 160) (2760 168 160)" + "id" "49947" + "plane" "(-136 -224 0) (-136 -544 0) (-64 -544 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86922" - "plane" "(2752 168 160) (2752 200 160) (2752 200 192)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "49946" + "plane" "(-136 -544 0) (-136 -224 0) (-136 -224 8)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86921" - "plane" "(2760 200 160) (2760 168 160) (2760 168 192)" + "id" "49945" + "plane" "(-64 -224 0) (-64 -544 0) (-64 -544 8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -74586,9 +76453,9 @@ world } side { - "id" "86920" - "plane" "(2752 200 160) (2760 200 160) (2760 200 192)" - "material" "TOOLS/TOOLSNODRAW" + "id" "49944" + "plane" "(-136 -224 0) (-64 -224 0) (-64 -224 8)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -74597,9 +76464,9 @@ world } side { - "id" "86919" - "plane" "(2760 168 160) (2752 168 160) (2752 168 192)" - "material" "DEV/REFLECTIVITY_30B" + "id" "49943" + "plane" "(-64 -544 0) (-136 -544 0) (-136 -544 8)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -74608,53 +76475,54 @@ world } editor { - "color" "0 137 234" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "240866" + "id" "116834" side { - "id" "86936" - "plane" "(2728 168 128) (2728 208 128) (2752 208 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" + "id" "49960" + "plane" "(164 -528 96) (164 -260 96) (196 -260 96)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[0 1 0 0] 0.2" + "vaxis" "[1 0 0 0] 0.2" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86935" - "plane" "(2728 208 96) (2728 168 96) (2752 168 96)" + "id" "49959" + "plane" "(164 -260 -128) (164 -528 -128) (196 -528 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86934" - "plane" "(2728 168 96) (2728 208 96) (2728 208 128)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 -162.766] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "49958" + "plane" "(164 -528 -128) (164 -260 -128) (164 -260 96)" + "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" "86933" - "plane" "(2752 208 96) (2752 168 96) (2752 168 128)" + "id" "49957" + "plane" "(196 -260 -128) (196 -528 -128) (196 -528 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -74662,40 +76530,41 @@ world } side { - "id" "86932" - "plane" "(2752 168 96) (2728 168 96) (2728 168 128)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 127] 0.188" - "vaxis" "[0 0 -1 339] 0.188" + "id" "49956" + "plane" "(164 -260 -128) (196 -260 -128) (196 -260 96)" + "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" "86931" - "plane" "(2728 208 96) (2752 208 96) (2752 208 128)" - "material" "DEV/REFLECTIVITY_30B" + "id" "49955" + "plane" "(196 -528 -128) (164 -528 -128) (164 -528 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "240875" + "id" "116836" side { - "id" "86941" - "plane" "(2544 208 96) (2544 144 96) (2728 144 96)" + "id" "49972" + "plane" "(128 -528 256) (128 -496 256) (160 -496 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -74705,21 +76574,21 @@ world } side { - "id" "86940" - "plane" "(2544 144 96) (2544 208 96) (2544 208 128)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "49971" + "plane" "(128 -496 96) (128 -528 96) (160 -528 96)" + "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" "86939" - "plane" "(2544 208 128) (2544 208 96) (2728 208 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "49970" + "plane" "(128 -528 96) (128 -496 96) (128 -496 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -74727,21 +76596,32 @@ world } side { - "id" "86938" - "plane" "(2728 144 96) (2544 144 96) (2544 208 128)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 -1 0 297] 0.188" + "id" "49969" + "plane" "(160 -496 96) (160 -528 96) (160 -528 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86937" - "plane" "(2728 208 128) (2728 208 96) (2728 144 96)" + "id" "49968" + "plane" "(128 -496 96) (160 -496 96) (160 -496 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "49967" + "plane" "(160 -528 96) (128 -528 96) (128 -528 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -74749,19 +76629,18 @@ world } editor { - "color" "0 217 190" - "visgroupid" "23" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "240881" + "id" "116845" side { - "id" "86951" - "plane" "(2728 144 96) (2752 144 96) (2752 168 96)" + "id" "49984" + "plane" "(128 -272 256) (128 -240 256) (160 -240 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -74771,9 +76650,20 @@ world } side { - "id" "86950" - "plane" "(2752 168 96) (2752 144 96) (2752 168 108)" + "id" "49983" + "plane" "(128 -240 96) (128 -272 96) (160 -272 96)" "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" "49982" + "plane" "(128 -272 96) (128 -240 96) (128 -240 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -74782,21 +76672,21 @@ world } side { - "id" "86949" - "plane" "(2752 144 96) (2728 144 96) (2728 168 108)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 -1 0 297] 0.188" + "id" "49981" + "plane" "(160 -240 96) (160 -272 96) (160 -272 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86948" - "plane" "(2728 144 96) (2728 168 96) (2728 168 108)" + "id" "49980" + "plane" "(128 -240 96) (160 -240 96) (160 -240 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -74804,9 +76694,9 @@ world } side { - "id" "86947" - "plane" "(2728 168 96) (2752 168 96) (2752 168 108)" - "material" "TOOLS/TOOLSNODRAW" + "id" "49979" + "plane" "(160 -272 96) (128 -272 96) (128 -272 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -74815,29 +76705,29 @@ world } editor { - "color" "0 217 190" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "215322" + "id" "115588" side { - "id" "81207" - "plane" "(2752 768 128) (2752 208 128) (2176 208 128)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 -1 0 297] 0.188" + "id" "49798" + "plane" "(2304 -576 256) (2304 -192 256) (2432 -192 256)" + "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" "81206" - "plane" "(2752 208 96) (2752 768 96) (2176 768 96)" + "id" "49797" + "plane" "(2304 -192 64) (2304 -576 64) (2432 -576 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -74847,8 +76737,8 @@ world } side { - "id" "81205" - "plane" "(2176 768 128) (2176 208 128) (2176 208 96)" + "id" "49796" + "plane" "(2304 -576 64) (2304 -192 64) (2304 -192 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -74858,9 +76748,9 @@ world } side { - "id" "81204" - "plane" "(2752 208 128) (2752 768 128) (2752 768 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "49795" + "plane" "(2432 -192 64) (2432 -576 64) (2432 -576 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -74869,9 +76759,9 @@ world } side { - "id" "81203" - "plane" "(2752 768 128) (2176 768 128) (2176 768 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "49794" + "plane" "(2304 -192 64) (2432 -192 64) (2432 -192 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -74880,41 +76770,40 @@ world } side { - "id" "81202" - "plane" "(2176 208 128) (2752 208 128) (2752 208 96)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "49793" + "plane" "(2432 -576 64) (2304 -576 64) (2304 -576 256)" + "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 217 190" - "visgroupid" "23" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "215949" + "id" "115600" side { - "id" "81237" - "plane" "(2544 208 120) (2544 192 120) (2240 192 120)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 -1 0 297] 0.188" + "id" "49810" + "plane" "(2432 -320 96) (2496 -320 96) (2496 -576 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "81236" - "plane" "(2544 192 96) (2544 208 96) (2240 208 96)" + "id" "49809" + "plane" "(2432 -576 64) (2496 -576 64) (2496 -320 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -74924,8 +76813,8 @@ world } side { - "id" "81235" - "plane" "(2240 208 120) (2240 192 120) (2240 192 96)" + "id" "49808" + "plane" "(2432 -320 64) (2432 -320 96) (2432 -576 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -74935,8 +76824,8 @@ world } side { - "id" "81234" - "plane" "(2544 192 120) (2544 208 120) (2544 208 96)" + "id" "49807" + "plane" "(2496 -576 64) (2496 -576 96) (2496 -320 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -74946,8 +76835,8 @@ world } side { - "id" "81233" - "plane" "(2544 208 120) (2240 208 120) (2240 208 96)" + "id" "49806" + "plane" "(2496 -320 64) (2496 -320 96) (2432 -320 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -74957,18 +76846,18 @@ world } side { - "id" "81232" - "plane" "(2240 192 120) (2544 192 120) (2544 192 96)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "49805" + "plane" "(2432 -576 64) (2432 -576 96) (2496 -576 96)" + "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 217 190" + "color" "0 251 136" "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" @@ -74976,23 +76865,23 @@ world } solid { - "id" "215952" + "id" "107574" side { - "id" "81249" - "plane" "(2544 192 112) (2544 176 112) (2240 176 112)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 -1 0 297] 0.188" + "id" "49656" + "plane" "(-1040 -896 140) (-1056 -896 140) (-1056 -800 148)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "81248" - "plane" "(2544 176 96) (2544 192 96) (2240 192 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "49655" + "plane" "(-1040 -800 32) (-1056 -800 32) (-1056 -896 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -75001,8 +76890,8 @@ world } side { - "id" "81247" - "plane" "(2240 192 112) (2240 176 112) (2240 176 96)" + "id" "49654" + "plane" "(-1056 -800 32) (-1056 -800 148) (-1056 -896 140)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -75012,9 +76901,9 @@ world } side { - "id" "81246" - "plane" "(2544 176 112) (2544 192 112) (2544 192 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "49653" + "plane" "(-1040 -800 148) (-1040 -800 32) (-1040 -896 32)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -75023,8 +76912,8 @@ world } side { - "id" "81245" - "plane" "(2544 192 112) (2240 192 112) (2240 192 96)" + "id" "49652" + "plane" "(-1040 -896 140) (-1040 -896 32) (-1056 -896 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -75034,42 +76923,41 @@ world } side { - "id" "81244" - "plane" "(2240 176 112) (2544 176 112) (2544 176 96)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "49651" + "plane" "(-1056 -800 148) (-1056 -800 32) (-1040 -800 32)" + "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 217 190" - "visgroupid" "23" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "215954" + "id" "107575" side { - "id" "81261" - "plane" "(2544 176 104) (2544 160 104) (2240 160 104)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 -1 0 297] 0.188" + "id" "49662" + "plane" "(-1040 -1088 176) (-1056 -1088 176) (-1056 -992 148)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "81260" - "plane" "(2544 160 96) (2544 176 96) (2240 176 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "49661" + "plane" "(-1040 -992 32) (-1056 -992 32) (-1056 -1088 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -75078,20 +76966,20 @@ world } side { - "id" "81259" - "plane" "(2240 176 104) (2240 160 104) (2240 160 96)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "49660" + "plane" "(-1056 -1088 176) (-1056 -1088 32) (-1056 -992 32)" + "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" "81258" - "plane" "(2544 160 104) (2544 176 104) (2544 176 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "49659" + "plane" "(-1040 -1088 32) (-1040 -1088 176) (-1040 -992 148)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -75100,8 +76988,8 @@ world } side { - "id" "81257" - "plane" "(2544 176 104) (2240 176 104) (2240 176 96)" + "id" "49658" + "plane" "(-1040 -1088 176) (-1040 -1088 32) (-1056 -1088 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -75111,31 +76999,30 @@ world } side { - "id" "81256" - "plane" "(2240 160 104) (2544 160 104) (2544 160 96)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "49657" + "plane" "(-1056 -992 148) (-1056 -992 32) (-1040 -992 32)" + "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 217 190" - "visgroupid" "23" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "189277" + "id" "107576" side { - "id" "65294" - "plane" "(2176 768 64) (2176 960 64) (2048 960 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "49668" + "plane" "(-1040 -992 148) (-1056 -992 148) (-1056 -896 140)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -75144,19 +77031,19 @@ world } side { - "id" "65293" - "plane" "(2048 768 256) (2048 768 64) (2048 960 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49667" + "plane" "(-1040 -896 32) (-1056 -896 32) (-1056 -992 32)" + "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" "65292" - "plane" "(2176 960 256) (2176 960 64) (2176 768 64)" + "id" "49666" + "plane" "(-1056 -992 148) (-1056 -992 32) (-1056 -896 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -75166,10 +77053,10 @@ world } side { - "id" "65291" - "plane" "(2048 960 256) (2048 960 64) (2176 960 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "49665" + "plane" "(-1040 -992 32) (-1040 -992 148) (-1040 -896 140)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75177,10 +77064,10 @@ world } side { - "id" "65290" - "plane" "(2176 768 256) (2176 768 64) (2048 768 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.988011 0.154377 0 0] 0.25" + "id" "49664" + "plane" "(-1056 -896 140) (-1056 -896 32) (-1040 -896 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75188,64 +77075,53 @@ world } side { - "id" "65289" - "plane" "(2048 768 256) (2048 960 256) (2176 960 256)" + "id" "49663" + "plane" "(-1040 -992 148) (-1040 -992 32) (-1056 -992 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "189306" - side - { - "id" "65301" - "plane" "(1664 448 320) (1664 672 320) (1728 672 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" - } + "id" "107577" side { - "id" "65300" - "plane" "(1664 672 64) (1664 448 64) (1856 448 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "49674" + "plane" "(-1040 -800 148) (-1056 -800 148) (-1056 -704 176)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "65299" - "plane" "(1664 448 64) (1664 448 320) (1856 448 320)" - "material" "DEV/REFLECTIVITY_50B" + "id" "49673" + "plane" "(-1040 -704 32) (-1056 -704 32) (-1056 -800 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "65298" - "plane" "(1728 672 64) (1728 672 320) (1664 672 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -256] 0.25" + "id" "49672" + "plane" "(-1056 -704 32) (-1056 -704 176) (-1056 -800 148)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75253,10 +77129,10 @@ world } side { - "id" "65297" - "plane" "(1856 448 64) (1856 448 320) (1856 544 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 256] 0.25" + "id" "49671" + "plane" "(-1040 -704 176) (-1040 -704 32) (-1040 -800 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75264,10 +77140,10 @@ world } side { - "id" "65296" - "plane" "(1664 672 64) (1664 672 320) (1664 448 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 256] 0.25" + "id" "49670" + "plane" "(-1056 -704 176) (-1056 -704 32) (-1040 -704 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75275,10 +77151,10 @@ world } side { - "id" "65295" - "plane" "(1856 544 64) (1856 544 320) (1728 672 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 256] 0.25" + "id" "49669" + "plane" "(-1040 -800 148) (-1040 -800 32) (-1056 -800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75286,19 +77162,19 @@ world } editor { - "color" "0 137 234" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "189350" + "id" "107662" side { - "id" "65368" - "plane" "(2208 64 144) (2208 160 144) (2224 160 144)" - "material" "DEV/REFLECTIVITY_50B" + "id" "49686" + "plane" "(-960 -1088 48) (-960 -896 48) (-640 -896 48)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -75307,8 +77183,8 @@ world } side { - "id" "65369" - "plane" "(2208 160 96) (2208 64 96) (2224 64 96)" + "id" "49685" + "plane" "(-960 -896 0) (-960 -1088 0) (-640 -1088 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -75318,30 +77194,30 @@ world } side { - "id" "65370" - "plane" "(2208 64 96) (2208 160 96) (2208 160 144)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[0 1 0 -5] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "49684" + "plane" "(-960 -1088 0) (-960 -896 0) (-960 -896 48)" + "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" "65371" - "plane" "(2224 160 96) (2224 64 96) (2224 64 144)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[0 1 0 -5] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "49683" + "plane" "(-640 -896 0) (-640 -1088 0) (-640 -1088 48)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "65372" - "plane" "(2208 160 96) (2224 160 96) (2224 160 144)" + "id" "49682" + "plane" "(-960 -896 0) (-640 -896 0) (-640 -896 48)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -75351,9 +77227,9 @@ world } side { - "id" "65373" - "plane" "(2224 64 96) (2208 64 96) (2208 64 144)" - "material" "DEV/REFLECTIVITY_50B" + "id" "49681" + "plane" "(-640 -1088 0) (-960 -1088 0) (-960 -1088 48)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -75362,64 +77238,54 @@ world } editor { - "color" "0 233 178" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "182082" - side - { - "id" "62920" - "plane" "(448 -2304 256) (512 -2304 256) (512 -2308 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "107939" side { - "id" "62921" - "plane" "(448 -2308 252) (512 -2308 252) (512 -2304 252)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 -116] 0.123" + "id" "49697" + "plane" "(1440 -528 384) (2448 -528 384) (2368 -448 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62922" - "plane" "(448 -2304 256) (448 -2308 256) (448 -2308 252)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 -116] 0.123" + "id" "49696" + "plane" "(2368 -448 384) (2448 -528 384) (2368 -448 544)" + "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" "62923" - "plane" "(512 -2304 252) (512 -2308 252) (512 -2308 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 -116] 0.123" + "id" "49695" + "plane" "(1440 -528 384) (1440 -448 384) (1440 -448 544)" + "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" "62924" - "plane" "(512 -2304 256) (448 -2304 256) (448 -2304 252)" + "id" "49694" + "plane" "(1440 -448 544) (1440 -448 384) (2368 -448 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75427,29 +77293,40 @@ world } side { - "id" "62925" - "plane" "(512 -2308 252) (448 -2308 252) (448 -2308 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 0 -1 -116] 0.123" + "id" "49693" + "plane" "(2368 -448 544) (2448 -528 384) (1440 -528 384)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 208 113" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "179969" + "id" "107957" side { - "id" "62451" - "plane" "(496 -2296 376) (488 -2296 384) (472 -2296 384)" + "id" "49708" + "plane" "(2448 -176 384) (2368 -256 384) (2368 -448 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "49707" + "plane" "(2448 -176 384) (2368 -256 544) (2368 -256 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -75459,9 +77336,9 @@ world } side { - "id" "62450" - "plane" "(464 -2304 376) (472 -2304 384) (488 -2304 384)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "id" "49706" + "plane" "(2368 -448 384) (2368 -448 544) (2448 -528 384)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -75470,30 +77347,51 @@ world } side { - "id" "62449" - "plane" "(464 -2304 376) (464 -2296 376) (472 -2296 384)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 133] 0.25" - "vaxis" "[0 -1 0 91] 0.25" + "id" "49705" + "plane" "(2368 -448 384) (2368 -256 384) (2368 -256 544)" + "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" "62448" - "plane" "(496 -2296 376) (496 -2304 376) (488 -2304 384)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 133] 0.25" - "vaxis" "[0 -1 0 91] 0.25" + "id" "49704" + "plane" "(2448 -176 384) (2448 -528 384) (2368 -448 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 137 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "107962" + side + { + "id" "49718" + "plane" "(1472 -256 384) (2368 -256 384) (2448 -176 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62447" - "plane" "(464 -2304 336) (464 -2296 336) (464 -2296 376)" + "id" "49717" + "plane" "(1472 -256 544) (1472 -256 384) (1472 -176 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -75503,8 +77401,8 @@ world } side { - "id" "62446" - "plane" "(496 -2296 336) (496 -2304 336) (496 -2304 376)" + "id" "49716" + "plane" "(2368 -256 544) (2448 -176 384) (2368 -256 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -75514,98 +77412,165 @@ world } side { - "id" "62445" - "plane" "(464 -2296 336) (464 -2304 336) (496 -2304 336)" + "id" "49715" + "plane" "(1472 -256 384) (1472 -256 544) (2368 -256 544)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62444" - "plane" "(472 -2304 384) (472 -2296 384) (488 -2296 384)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 133] 0.25" - "vaxis" "[0 -1 0 91] 0.25" + "id" "49714" + "plane" "(2448 -176 384) (2368 -256 544) (1472 -256 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 228 117" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } + hidden + { + solid + { + "id" "106494" + side + { + "id" "49603" + "plane" "(608 -224 80) (864 -224 80) (864 -288 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "49602" + "plane" "(608 -288 64) (864 -288 64) (864 -224 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "49601" + "plane" "(864 -288 64) (864 -224 80) (864 -224 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "49600" + "plane" "(608 -224 64) (608 -224 80) (608 -288 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "49598" + "plane" "(864 -224 64) (864 -224 80) (608 -224 80)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 158 183" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } solid { - "id" "179982" + "id" "105345" side { - "id" "62469" - "plane" "(448 -2296 336) (424 -2296 336) (408 -2296 320)" + "id" "49500" + "plane" "(832 -832 280) (848 -832 280) (768 -1152 280)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62468" - "plane" "(408.016 -2304 320) (424.016 -2304 336) (448 -2304 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49499" + "plane" "(744 -1152 256) (776 -1152 256) (856 -832 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -15] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62467" - "plane" "(424.012 -2304 336) (408.012 -2304 320) (408 -2296 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 133] 0.25" - "vaxis" "[0 -1 0 91] 0.25" + "id" "49498" + "plane" "(824 -832 256) (832 -832 280) (752 -1152 280)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62466" - "plane" "(448 -2296 320) (408 -2296 320) (408.012 -2304 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "49497" + "plane" "(776 -1152 256) (768 -1152 280) (848 -832 280)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -15] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62465" - "plane" "(448 -2304 336) (424.012 -2304 336) (424 -2296 336)" + "id" "49496" + "plane" "(744 -1152 256) (752 -1152 280) (768 -1152 280)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62464" - "plane" "(448 -2296 336) (448 -2296 320) (448 -2304 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "49495" + "plane" "(856 -832 256) (848 -832 280) (832 -832 280)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75613,76 +77578,75 @@ world } editor { - "color" "0 174 111" - "visgroupid" "18" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "179985" + "id" "105361" side { - "id" "62475" - "plane" "(551.988 -2296 320) (536 -2296 336) (512 -2296 336)" + "id" "49531" + "plane" "(880 -416 544) (1440 -416 544) (1408 -448 544)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62474" - "plane" "(535.987 -2304 336) (551.98 -2304 320) (512 -2304 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "id" "49530" + "plane" "(912 -448 448) (1408 -448 448) (1488 -368 448)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62473" - "plane" "(536 -2296 336) (552 -2296 320) (551.98 -2304 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[-1 0 0 133] 0.25" - "vaxis" "[0 -1 0 91] 0.25" + "id" "49529" + "plane" "(1440 -416 544) (1488 -368 448) (1408 -448 448)" + "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" "62472" - "plane" "(551.988 -2296 320) (512 -2296 320) (512 -2304 320)" + "id" "49528" + "plane" "(912 -448 544) (912 -448 448) (832 -368 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62471" - "plane" "(535.988 -2304 336) (512 -2304 336) (512 -2296 336)" + "id" "49527" + "plane" "(1408 -448 544) (1408 -448 448) (912 -448 448)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62470" - "plane" "(512 -2304 336) (512 -2304 320) (512 -2296 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "49526" + "plane" "(880 -416 544) (832 -368 448) (1488 -368 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75690,43 +77654,42 @@ world } editor { - "color" "0 174 111" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "179987" + "id" "105392" side { - "id" "62487" - "plane" "(512 -2296 256) (512 -2304 256) (616 -2304 256)" + "id" "49543" + "plane" "(1408 -640 448) (1408 -384 448) (1472 -384 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62486" - "plane" "(616 -2296 256) (552 -2296 320) (512 -2296 320)" + "id" "49542" + "plane" "(1408 -384 320) (1408 -640 320) (1472 -640 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62485" - "plane" "(512 -2304 256) (512 -2304 320) (551.996 -2304 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[-1 0 0 0] 0.25" + "id" "49541" + "plane" "(1408 -640 320) (1408 -384 320) (1408 -384 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75734,21 +77697,21 @@ world } side { - "id" "62484" - "plane" "(551.996 -2304 320) (552 -2296 320) (616 -2296 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[-1 0 0 133] 0.25" - "vaxis" "[0 -1 0 91] 0.25" + "id" "49540" + "plane" "(1472 -384 320) (1472 -640 320) (1472 -640 448)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62483" - "plane" "(512 -2296 320) (512 -2304 320) (512 -2304 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" + "id" "49539" + "plane" "(1408 -384 320) (1472 -384 320) (1472 -384 448)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75756,54 +77719,53 @@ world } side { - "id" "62482" - "plane" "(512 -2304 320) (512 -2296 320) (552 -2296 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "49538" + "plane" "(1472 -640 320) (1408 -640 320) (1408 -640 448)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 106 211" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "179995" + "id" "105397" side { - "id" "62505" - "plane" "(512 -2296 336) (512 -2304 336) (496 -2304 336)" + "id" "49555" + "plane" "(1408 -832 544) (1408 -448 544) (1440 -416 544)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62504" - "plane" "(512 -2304 316) (512 -2296 316) (496 -2296 324)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 -174] 0.25" - "vaxis" "[0 -1 0 38] 0.25" + "id" "49554" + "plane" "(1488 -912 448) (1488 -368 448) (1408 -448 448)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62503" - "plane" "(496 -2304 336) (496 -2304 324) (496 -2296 324)" + "id" "49553" + "plane" "(1408 -448 544) (1408 -448 448) (1488 -368 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75811,10 +77773,10 @@ world } side { - "id" "62502" - "plane" "(512 -2304 316) (512 -2304 336) (512 -2296 336)" + "id" "49552" + "plane" "(1440 -864 544) (1488 -912 448) (1408 -832 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75822,10 +77784,10 @@ world } side { - "id" "62501" - "plane" "(496 -2296 336) (496 -2296 324) (512 -2296 316)" + "id" "49551" + "plane" "(1408 -832 544) (1408 -832 448) (1408 -448 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75833,53 +77795,53 @@ world } side { - "id" "62500" - "plane" "(496 -2304 324) (496 -2304 336) (512 -2304 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0.8 0.447214 -0.4 254.721] 0.25" - "vaxis" "[0.447214 0 0.894427 39.5508] 0.25" + "id" "49550" + "plane" "(1440 -416 544) (1488 -368 448) (1488 -912 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 108" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "179997" + "id" "105403" side { - "id" "62517" - "plane" "(464 -2296 336) (464 -2304 336) (448 -2304 336)" + "id" "49567" + "plane" "(928 -448 448) (928 -384 448) (1408 -384 448)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62516" - "plane" "(464 -2304 324) (464 -2296 324) (448 -2296 316)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 -174] 0.25" - "vaxis" "[0 -1 0 38] 0.25" + "id" "49566" + "plane" "(928 -384 320) (928 -448 320) (1408 -448 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" "62515" - "plane" "(448 -2304 336) (448 -2304 316) (448 -2296 316)" + "id" "49565" + "plane" "(928 -448 320) (928 -384 320) (928 -384 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75887,10 +77849,10 @@ world } side { - "id" "62514" - "plane" "(464 -2304 324) (464 -2304 336) (464 -2296 336)" + "id" "49564" + "plane" "(1408 -384 320) (1408 -448 320) (1408 -448 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75898,9 +77860,9 @@ world } side { - "id" "62513" - "plane" "(448 -2296 336) (448 -2296 316) (464 -2296 324)" - "material" "TOOLS/TOOLSNODRAW" + "id" "49563" + "plane" "(928 -384 320) (1408 -384 320) (1408 -384 448)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -75909,31 +77871,110 @@ world } side { - "id" "62512" - "plane" "(448 -2304 316) (448 -2304 336) (464 -2304 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0.8 -0.447214 0.4 -90.7202] 0.25" - "vaxis" "[-0.447214 0 0.894427 220.852] 0.25" + "id" "49562" + "plane" "(1408 -448 320) (928 -448 320) (928 -448 448)" + "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 255 108" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } + hidden + { + solid + { + "id" "105424" + side + { + "id" "49591" + "plane" "(1472 -1984 64) (1472 -1472 64) (1568 -1472 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "49590" + "plane" "(1472 -1472 -3.8147e-06) (1472 -1984 -3.8147e-06) (1568 -1984 -3.8147e-06)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "49589" + "plane" "(1472 -1984 -3.8147e-06) (1472 -1472 -3.8147e-06) (1472 -1472 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "49588" + "plane" "(1568 -1472 -3.8147e-06) (1568 -1984 -3.8147e-06) (1568 -1984 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "49587" + "plane" "(1472 -1472 -3.8147e-06) (1568 -1472 -3.8147e-06) (1568 -1472 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "49586" + "plane" "(1568 -1984 -3.8147e-06) (1472 -1984 -3.8147e-06) (1472 -1984 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 254 119" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } solid { - "id" "180001" + "id" "103563" side { - "id" "62523" - "plane" "(480 -2296 336) (480 -2304 336) (464 -2304 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "48951" + "plane" "(1472 -512 96) (1472 -352 96) (1792 -512 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -75941,19 +77982,19 @@ world } side { - "id" "62522" - "plane" "(480 -2304 326) (480 -2296 326) (464 -2296 324)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 -174] 0.25" - "vaxis" "[0 -1 0 38] 0.25" + "id" "48950" + "plane" "(1792 -512 0) (1472 -352 0) (1472 -512 0)" + "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" "62521" - "plane" "(464 -2296 336) (464 -2304 336) (464 -2304 324)" + "id" "48949" + "plane" "(1472 -352 96) (1472 -352 0) (1792 -512 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -75963,8 +78004,8 @@ world } side { - "id" "62520" - "plane" "(480 -2296 336) (464 -2296 336) (464 -2296 324)" + "id" "48948" + "plane" "(1792 -512 96) (1792 -512 0) (1472 -512 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -75974,19 +78015,8 @@ world } side { - "id" "62519" - "plane" "(464 -2304 336) (480 -2304 336) (480 -2304 326)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0.984615 -0.124035 0.123077 -168.058] 0.25" - "vaxis" "[-0.124035 0 0.992278 6.2168] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "62518" - "plane" "(480 -2304 336) (480 -2296 336) (480 -2296 326)" + "id" "48946" + "plane" "(1472 -512 96) (1472 -512 0) (1472 -352 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -75996,42 +78026,43 @@ world } editor { - "color" "0 255 108" + "color" "0 119 112" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180002" + "id" "103604" side { - "id" "62529" - "plane" "(496 -2304 336) (480 -2304 336) (480 -2296 336)" + "id" "48987" + "plane" "(1568 -192 384) (1472 -288 384) (1472 -128 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62528" - "plane" "(496 -2296 324) (480 -2296 326) (480 -2304 326)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 -174] 0.25" - "vaxis" "[0 -1 0 38] 0.25" + "id" "48986" + "plane" "(1472 -288 64) (1568 -192 64) (1568 -128 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" "62527" - "plane" "(496 -2304 336) (496 -2296 336) (496 -2296 324)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "48985" + "plane" "(1568 -192 64) (1472 -288 64) (1472 -288 384)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76039,30 +78070,30 @@ world } side { - "id" "62526" - "plane" "(496 -2296 336) (480 -2296 336) (480 -2296 326)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48984" + "plane" "(1472 -128 64) (1568 -128 64) (1568 -128 384)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 -5] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62525" - "plane" "(480 -2304 336) (496 -2304 336) (496 -2304 324)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0.984615 0.124035 -0.123077 135.135] 0.25" - "vaxis" "[0.124035 0 0.992278 41.9238] 0.25" + "id" "48983" + "plane" "(1472 -288 64) (1472 -128 64) (1472 -128 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" "62524" - "plane" "(480 -2296 336) (480 -2304 336) (480 -2304 326)" + "id" "48982" + "plane" "(1568 -128 64) (1568 -192 64) (1568 -192 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -76072,118 +78103,117 @@ world } editor { - "color" "0 255 108" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180032" + "id" "103606" side { - "id" "62541" - "plane" "(448 -2288 336) (512 -2288 336) (512 -2296 336)" + "id" "48999" + "plane" "(1792 -256 384) (1664 -192 384) (1664 -128 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62540" - "plane" "(512 -2296 256) (512 -2296 336) (512 -2288 336)" + "id" "48998" + "plane" "(1792 -128 64) (1664 -128 64) (1664 -192 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62539" - "plane" "(448 -2288 256) (512 -2288 256) (512 -2288 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "48997" + "plane" "(1792 -256 64) (1664 -192 64) (1664 -192 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62538" - "plane" "(448 -2296 336) (512 -2296 336) (512 -2296 256)" - "material" "TEROUST/ARPEGGIO/WOOD/SHUTTERS" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48996" + "plane" "(1664 -128 64) (1792 -128 64) (1792 -128 384)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[-1 0 0 27] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62537" - "plane" "(448 -2296 256) (512 -2296 256) (512 -2288 256)" + "id" "48995" + "plane" "(1792 -128 64) (1792 -256 64) (1792 -256 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62536" - "plane" "(448 -2288 256) (448 -2288 336) (448 -2296 336)" + "id" "48994" + "plane" "(1664 -192 64) (1664 -128 64) (1664 -128 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 246 183" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180103" + "id" "103609" side { - "id" "62643" - "plane" "(476 -2176 384) (480 -2176 384) (480 -2296 384)" + "id" "49011" + "plane" "(1856 -256 384) (1792 -256 384) (1792 -128 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62642" - "plane" "(348 -2296 256) (352 -2296 256) (352 -2176 256)" + "id" "49010" + "plane" "(1856 -128 64) (1792 -128 64) (1792 -256 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62641" - "plane" "(348 -2176 256) (352 -2176 256) (480 -2176 384)" - "material" "TOOLS/TOOLSNODRAW" + "id" "49009" + "plane" "(1856 -256 64) (1792 -256 64) (1792 -256 384)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -76192,30 +78222,30 @@ world } side { - "id" "62640" - "plane" "(352 -2296 256) (348 -2296 256) (476 -2296 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49008" + "plane" "(1792 -128 64) (1856 -128 64) (1856 -128 384)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[-1 0 0 27] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62639" - "plane" "(348 -2296 256) (348 -2176 256) (476 -2176 384)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[0 1 0 247] 0.25" - "vaxis" "[0 0 -1 416] 0.25" + "id" "49007" + "plane" "(1856 -128 64) (1856 -256 64) (1856 -256 384)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0 1 0 27] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62638" - "plane" "(352 -2176 256) (352 -2296 256) (480 -2296 384)" + "id" "49006" + "plane" "(1792 -256 64) (1792 -128 64) (1792 -128 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -76225,75 +78255,75 @@ world } editor { - "color" "0 109 222" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180106" + "id" "103612" side { - "id" "62655" - "plane" "(484 -2296 384) (480 -2296 384) (480 -2176 384)" + "id" "49023" + "plane" "(1984 -256 384) (1856 -256 384) (1856 -192 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62654" - "plane" "(612 -2176 256) (608 -2176 256) (608 -2296 256)" + "id" "49022" + "plane" "(1984 -192 64) (1856 -192 64) (1856 -256 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62653" - "plane" "(484 -2176 384) (480 -2176 384) (608 -2176 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49021" + "plane" "(1856 -192 64) (1984 -192 64) (1984 -192 384)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[-1 0 0 27] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62652" - "plane" "(480 -2296 384) (484 -2296 384) (612 -2296 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49020" + "plane" "(1984 -256 64) (1856 -256 64) (1856 -256 384)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 27] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62651" - "plane" "(484 -2296 384) (484 -2176 384) (612 -2176 256)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[0 1 0 247] 0.25" - "vaxis" "[0 0 -1 416] 0.25" + "id" "49019" + "plane" "(1856 -256 64) (1856 -192 64) (1856 -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" "62650" - "plane" "(480 -2176 384) (480 -2296 384) (608 -2296 256)" + "id" "49018" + "plane" "(1984 -192 64) (1984 -256 64) (1984 -256 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76301,62 +78331,29 @@ world } editor { - "color" "0 109 222" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180136" - side - { - "id" "62684" - "plane" "(476 -2144 352) (480 -2144 352) (480 -2176 384)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[0.707107 0.5 -0.5 -75.3301] 0.25" - "vaxis" "[-0.707107 0.5 -0.5 226.33] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "103702" side { - "id" "62683" - "plane" "(444 -2176 352) (476 -2176 384) (480 -2176 384)" + "id" "49055" + "plane" "(1664 -512 320) (1664 -456 320) (1680 -456 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" "62682" - "plane" "(476 -2144 352) (476 -2176 384) (444 -2176 352)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[0 1 0 247] 0.25" - "vaxis" "[0 0 -1 416] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "62681" - "plane" "(480 -2176 384) (480 -2144 352) (448 -2176 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62680" - "plane" "(480 -2144 352) (476 -2144 352) (444 -2176 352)" + "id" "49054" + "plane" "(1664 -512 96) (1792 -512 96) (1680 -456.002 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -76364,33 +78361,12 @@ world "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "0 109 222" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "180137" - side - { - "id" "62689" - "plane" "(480 -2144 352) (484 -2144 352) (484 -2176 384)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[-0.707107 0.5 -0.5 -432.041] 0.25" - "vaxis" "[0.707107 0.5 -0.5 71.0405] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } side { - "id" "62688" - "plane" "(512 -2176 352) (480 -2176 384) (484 -2176 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "49053" + "plane" "(1664 -512 96) (1664 -512 320) (1792 -512 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76398,21 +78374,21 @@ world } side { - "id" "62687" - "plane" "(484 -2176 384) (484 -2144 352) (516 -2176 352)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[0 1 0 247] 0.25" - "vaxis" "[0 0 -1 416] 0.25" + "id" "49052" + "plane" "(1664 -456 96) (1664 -456 320) (1664 -512 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62686" - "plane" "(480 -2144 352) (480 -2176 384) (512 -2176 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "id" "49051" + "plane" "(1792 -512 96) (1792 -512 320) (1680 -456 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76420,198 +78396,129 @@ world } side { - "id" "62685" - "plane" "(484 -2144 352) (480 -2144 352) (512 -2176 352)" - "material" "TOOLS/TOOLSNODRAW" + "id" "49050" + "plane" "(1680 -456.002 96) (1680 -456 320) (1664 -456 320)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 109 222" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180158" - side - { - "id" "101437" - "plane" "(2064 176 192) (2064 400 192) (2080 416 192)" - "material" "DE_CBBLE/GRASSFLOOR01" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 128.001] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "103708" side { - "id" "101436" - "plane" "(2064 400 96) (2064 176 96) (2080 160 96)" + "id" "49067" + "plane" "(1664 -192 384) (1568 -192 384) (1568 -128 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.00146484] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "101435" - "plane" "(2256 400 96) (2256 176 96) (2256 176 192)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 83] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "101434" - "plane" "(2064 176 96) (2064 400 96) (2064 400 192)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -428.999] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "101433" - "plane" "(2240 160 96) (2080 160 96) (2080 160 192)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -284.998] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101432" - "plane" "(2080 416 96) (2240 416 96) (2240 416 192)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 131] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" + "id" "49066" + "plane" "(1664 -128 64) (1568 -128 64) (1568 -192 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" "101431" - "plane" "(2256 176 96) (2240 160 96) (2240 160 192)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 83] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" + "id" "49065" + "plane" "(1664 -192 64) (1568 -192 64) (1568 -192 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101430" - "plane" "(2240 416 96) (2256 400 96) (2256 400 192)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-0.707107 0.707107 0 452.949] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" + "id" "49064" + "plane" "(1568 -128 64) (1664 -128 64) (1664 -128 384)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[-1 0 0 -5] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101429" - "plane" "(2064 400 96) (2080 416 96) (2080 416 192)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-0.707107 -0.707107 0 -420.304] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" + "id" "49063" + "plane" "(1664 -128 64) (1664 -192 64) (1664 -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" "101428" - "plane" "(2080 160 96) (2064 176 96) (2064 176 192)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0.707107 -0.707107 0 -304.085] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" + "id" "49062" + "plane" "(1568 -192 64) (1568 -128 64) (1568 -128 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" } editor { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180163" + "id" "103721" side { - "id" "101443" - "plane" "(2248 176 216) (2248 400 216) (2256 400 216)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[-1 0 0 27] 0.25" - "vaxis" "[0 1 0 15.9985] 0.25" + "id" "49075" + "plane" "(1568 -192 96) (1664 -192 96) (1792 -256 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101442" - "plane" "(2248 400 192) (2248 176 192) (2256 176 192)" + "id" "49074" + "plane" "(1472 -288 0) (1472 -352 0) (1792 -512 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -0.00146484] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "101441" - "plane" "(2256 400 192) (2256 176 192) (2256 176 216)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 1 0 83] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "101440" - "plane" "(2248 176 192) (2248 400 192) (2248 400 216)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[0 -1 0 -4.99854] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101439" - "plane" "(2256 176 192) (2248 176 192) (2248 176 216)" + "id" "49073" + "plane" "(1568 -192 0) (1568 -192 96) (1472 -288 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76619,78 +78526,43 @@ world } side { - "id" "101438" - "plane" "(2248 400 192) (2256 400 192) (2256 400 216)" + "id" "49072" + "plane" "(1792 -512 0) (1792 -512 96) (1792 -256 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "180170" - side - { - "id" "101449" - "plane" "(2064 176 216) (2064 400 216) (2072 400 216)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[-1 0 0 27] 0.25" - "vaxis" "[0 1 0 15.9985] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } side { - "id" "101448" - "plane" "(2064 400 192) (2064 176 192) (2072 176 192)" + "id" "49071" + "plane" "(1792 -256 0) (1792 -256 96) (1664 -192 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 1 0 -0.00146484] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "101447" - "plane" "(2072 400 192) (2072 176 192) (2072 176 216)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[0 -1 0 -4.99854] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101446" - "plane" "(2064 176 192) (2064 400 192) (2064 400 216)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 -428.999] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" + "id" "49070" + "plane" "(1472 -352 0) (1472 -352 96) (1792 -512 96)" + "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" "101445" - "plane" "(2072 176 192) (2064 176 192) (2064 176 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" + "id" "49069" + "plane" "(1472 -288 0) (1472 -288 96) (1472 -352 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76698,10 +78570,10 @@ world } side { - "id" "101444" - "plane" "(2064 400 192) (2072 400 192) (2072 400 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" + "id" "49068" + "plane" "(1664 -192 0) (1664 -192 96) (1568 -192 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76709,124 +78581,76 @@ world } editor { - "color" "107 188 0" - "groupid" "187231" + "color" "0 119 112" "visgroupid" "23" - "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180171" + "id" "103730" side { - "id" "101455" - "plane" "(2080 408 216) (2080 416 216) (2240 416 216)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[-1 0 0 27] 0.25" - "vaxis" "[0 1 0 15.9985] 0.25" + "id" "49083" + "plane" "(1472 -512 320) (1792 -512 320) (1792 -256 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101454" - "plane" "(2080 416 192) (2080 408 192) (2240 408 192)" + "id" "49082" + "plane" "(1472 -288 384) (1568 -192 384) (1664 -192 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -0.00146484] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101453" - "plane" "(2240 416 192) (2240 408 192) (2240 408 216)" + "id" "49081" + "plane" "(1792 -512 320) (1792 -512 384) (1792 -256 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0.00146484] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101452" - "plane" "(2080 408 192) (2080 416 192) (2080 416 216)" + "id" "49080" + "plane" "(1472 -288 320) (1472 -288 384) (1472 -512 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0.00146484] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "101451" - "plane" "(2240 408 192) (2080 408 192) (2080 408 216)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[-1 0 0 27] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "101450" - "plane" "(2080 416 192) (2240 416 192) (2240 416 216)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-1 0 0 131] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "180173" - side - { - "id" "101461" - "plane" "(2080 160 216) (2080 168 216) (2240 168 216)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[-1 0 0 27] 0.25" - "vaxis" "[0 1 0 15.9985] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101460" - "plane" "(2080 168 192) (2080 160 192) (2240 160 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -32.0015] 0.25" + "id" "49079" + "plane" "(1472 -512 320) (1472 -512 384) (1792 -512 384)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101459" - "plane" "(2240 168 192) (2240 160 192) (2240 160 216)" + "id" "49078" + "plane" "(1568 -192 320) (1568 -192 384) (1472 -288 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32.0015] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76834,10 +78658,10 @@ world } side { - "id" "101458" - "plane" "(2080 160 192) (2080 168 192) (2080 168 216)" + "id" "49077" + "plane" "(1792 -256 320) (1792 -256 384) (1664 -192 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32.0015] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76845,67 +78669,53 @@ world } side { - "id" "101457" - "plane" "(2240 160 192) (2080 160 192) (2080 160 216)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[1 0 0 -284.998] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "101456" - "plane" "(2080 168 192) (2240 168 192) (2240 168 216)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[-1 0 0 27] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "49076" + "plane" "(1664 -192 320) (1664 -192 384) (1568 -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" } editor { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" + "color" "0 119 112" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180174" + "id" "103867" side { - "id" "101467" - "plane" "(2064 176 216) (2072 176 216) (2080 168 216)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -0.00146484] 0.25" + "id" "49147" + "plane" "(1344 -1312 0) (1344 -1152 0) (1472 -1152 0)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101466" - "plane" "(2080 160 192) (2080 168 192) (2072 176 192)" + "id" "49146" + "plane" "(1472 -1152 -128) (1344 -1152 -128) (1344 -1312 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 1 0 -0.00146484] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101465" - "plane" "(2080 168 192) (2080 160 192) (2080 160 216)" + "id" "49145" + "plane" "(1344 -1152 -128) (1472 -1152 -128) (1472 -1152 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0.00146484] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76913,10 +78723,10 @@ world } side { - "id" "101464" - "plane" "(2064 176 192) (2072 176 192) (2072 176 216)" + "id" "49144" + "plane" "(1472 -1152 -128) (1472 -1312 -128) (1472 -1312 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76924,21 +78734,21 @@ world } side { - "id" "101463" - "plane" "(2080 160 192) (2064 176 192) (2064 176 216)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0.707107 -0.707107 0 -304.085] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" + "id" "49143" + "plane" "(1344 -1312 -128) (1344 -1152 -128) (1344 -1152 0)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101462" - "plane" "(2072 176 192) (2080 168 192) (2080 168 216)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "49142" + "plane" "(1472 -1312 -128) (1344 -1312 -128) (1344 -1312 0)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76946,23 +78756,20 @@ world } editor { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180176" + "id" "103868" side { - "id" "101473" - "plane" "(2240 160 216) (2240 168 216) (2248 176 216)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0.00146484] 0.25" + "id" "49153" + "plane" "(1024 -1312 0) (1024 -1152 0) (1216 -1152 0)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76970,10 +78777,10 @@ world } side { - "id" "101472" - "plane" "(2256 176 192) (2248 176 192) (2240 168 192)" + "id" "49152" + "plane" "(1216 -1152 -128) (1024 -1152 -128) (1024 -1312 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32.0034] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76981,8 +78788,8 @@ world } side { - "id" "101471" - "plane" "(2248 176 192) (2256 176 192) (2256 176 216)" + "id" "49151" + "plane" "(1024 -1152 -128) (1216 -1152 -128) (1216 -1152 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -76992,10 +78799,10 @@ world } side { - "id" "101470" - "plane" "(2240 160 192) (2240 168 192) (2240 168 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0.00341797] 0.25" + "id" "49150" + "plane" "(1216 -1152 -128) (1216 -1312 -128) (1216 -1312 0)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77003,21 +78810,21 @@ world } side { - "id" "101469" - "plane" "(2256 176 192) (2240 160 192) (2240 160 216)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[0 -1 0 83] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" + "id" "49149" + "plane" "(1024 -1312 -128) (1024 -1152 -128) (1024 -1152 0)" + "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" "101468" - "plane" "(2240 168 192) (2248 176 192) (2248 176 216)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0.00146484] 0.25" + "id" "49148" + "plane" "(1216 -1312 -128) (1024 -1312 -128) (1024 -1312 0)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77025,45 +78832,42 @@ world } editor { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180178" + "id" "103891" side { - "id" "101479" - "plane" "(2072 400 216) (2064 400 216) (2080 416 216)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 -0.00146484] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "49165" + "plane" "(1024 -1472 256) (1120 -1280 256) (1152 -1280 256)" + "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" "101478" - "plane" "(2064 400 192) (2072 400 192) (2080 408 192)" + "id" "49164" + "plane" "(1120 -1280 0) (1024 -1472 0) (1024 -1536 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.0015] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101477" - "plane" "(2072 400 192) (2064 400 192) (2064 400 216)" + "id" "49163" + "plane" "(1024 -1472 0) (1024 -1472 256) (1024 -1536 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77071,10 +78875,10 @@ world } side { - "id" "101476" - "plane" "(2080 416 192) (2080 408 192) (2080 408 216)" + "id" "49162" + "plane" "(1152 -1280 0) (1152 -1280 256) (1120 -1280 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -0.00146484] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77082,21 +78886,21 @@ world } side { - "id" "101475" - "plane" "(2064 400 192) (2080 416 192) (2080 416 216)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-0.707107 -0.707107 0 -420.304] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" + "id" "49161" + "plane" "(1024 -1536 0) (1024 -1536 256) (1152 -1280 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101474" - "plane" "(2080 408 192) (2072 400 192) (2072 400 216)" + "id" "49160" + "plane" "(1120 -1280 0) (1120 -1280 256) (1024 -1472 256)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 -0.00146484] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77104,45 +78908,42 @@ world } editor { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180179" + "id" "103971" side { - "id" "101485" - "plane" "(2256 400 216) (2248 400 216) (2240 408 216)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.00146484] 0.25" + "id" "49273" + "plane" "(1072 -1376 0) (1104 -1312 0) (1136 -1312 0)" + "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" "101484" - "plane" "(2240 416 192) (2240 408 192) (2248 400 192)" + "id" "49272" + "plane" "(1104 -1312 -8) (1072 -1376 -8) (1104 -1376 -8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0.00341797] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101483" - "plane" "(2240 408 192) (2240 416 192) (2240 416 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -0.00341797] 0.25" + "id" "49271" + "plane" "(1136 -1312 -8) (1104 -1376 -8) (1104 -1376 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77150,10 +78951,10 @@ world } side { - "id" "101482" - "plane" "(2256 400 192) (2248 400 192) (2248 400 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "49270" + "plane" "(1072 -1376 -8) (1104 -1312 -8) (1104 -1312 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77161,20 +78962,20 @@ world } side { - "id" "101481" - "plane" "(2240 416 192) (2256 400 192) (2256 400 216)" - "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" - "uaxis" "[-0.707107 0.707107 0 452.949] 0.2" - "vaxis" "[0 0 -1 -37] 0.2" + "id" "49269" + "plane" "(1104 -1312 -8) (1136 -1312 -8) (1136 -1312 0)" + "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" "101480" - "plane" "(2248 400 192) (2240 408 192) (2240 408 216)" - "material" "DEV/REFLECTIVITY_50B" + "id" "49268" + "plane" "(1104 -1376 -8) (1072 -1376 -8) (1072 -1376 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -77183,403 +78984,387 @@ world } editor { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180182" + "id" "103972" side { - "id" "101491" - "plane" "(2112 208 224) (2112 368 224) (2208 368 224)" + "id" "49279" + "plane" "(1024 -1472 0) (1040 -1440 0) (1072 -1440 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -0.00146484] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101490" - "plane" "(2112 368 192) (2112 208 192) (2208 208 192)" + "id" "49278" + "plane" "(1024 -1472 -64) (1024 -1536 -64) (1072 -1440 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -0.00146484] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101489" - "plane" "(2208 368 192) (2208 208 192) (2208 208 224)" - "material" "CONCRETE/CONCRETE_INT_01" - "uaxis" "[0 0 1 58] 0.25" - "vaxis" "[0 1 0 -128.001] 0.25" + "id" "49277" + "plane" "(1024 -1472 -64) (1024 -1472 0) (1024 -1536 0)" + "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" "101488" - "plane" "(2112 208 192) (2112 368 192) (2112 368 224)" - "material" "CONCRETE/CONCRETE_INT_01" - "uaxis" "[0 0 1 58] 0.25" - "vaxis" "[0 -1 0 128.001] 0.25" - "rotation" "90" + "id" "49276" + "plane" "(1024 -1536 -64) (1024 -1536 0) (1072 -1440 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101487" - "plane" "(2208 208 192) (2112 208 192) (2112 208 224)" - "material" "CONCRETE/CONCRETE_INT_01" - "uaxis" "[0 0 1 58] 0.25" - "vaxis" "[1 0 0 64] 0.25" + "id" "49275" + "plane" "(1040 -1440 -64) (1040 -1440 0) (1024 -1472 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101486" - "plane" "(2112 368 192) (2208 368 192) (2208 368 224)" - "material" "CONCRETE/CONCRETE_INT_01" - "uaxis" "[0 0 1 58] 0.25" - "vaxis" "[-1 0 0 -63.998] 0.25" + "id" "49274" + "plane" "(1072 -1440 -64) (1072 -1440 0) (1040 -1440 0)" + "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" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180192" + "id" "103973" side { - "id" "101497" - "plane" "(2110 206 228) (2110 370 228) (2210 370 228)" - "material" "CONCRETE/BAGGAGE_CONCRETEFLOORA" - "uaxis" "[-1 0 0 -56] 0.25" - "vaxis" "[0 1 0 -128.001] 0.25" + "id" "49285" + "plane" "(1080 -1424 0) (1072 -1440 0) (1040 -1440 0)" + "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" "101496" - "plane" "(2112 368 224) (2112 208 224) (2208 208 224)" + "id" "49284" + "plane" "(1072 -1440 -64) (1080 -1424 -32) (1048 -1424 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8] 0.25" - "vaxis" "[0 1 0 -0.00146484] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101495" - "plane" "(2208 368 224) (2208 208 224) (2210 206 228)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[0 -1 0 128.001] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "49283" + "plane" "(1072 -1440 0) (1080 -1424 0) (1080 -1424 -32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101494" - "plane" "(2112 208 224) (2112 368 224) (2110 370 228)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[0 -1 0 128.001] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "49282" + "plane" "(1048 -1424 0) (1040 -1440 0) (1040 -1440 -64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101493" - "plane" "(2208 208 224) (2112 208 224) (2110 206 228)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "49281" + "plane" "(1040 -1440 0) (1072 -1440 0) (1072 -1440 -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" "101492" - "plane" "(2112 368 224) (2208 368 224) (2210 370 228)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "49280" + "plane" "(1080 -1424 0) (1048 -1424 0) (1048 -1424 -32)" + "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" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180221" + "id" "103974" side { - "id" "101503" - "plane" "(2112 208 230) (2112 368 230) (2208 368 230)" + "id" "49291" + "plane" "(1092 -1400 0) (1080 -1424 0) (1048 -1424 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -0.00146484] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101502" - "plane" "(2112 368 228) (2112 208 228) (2208 208 228)" + "id" "49290" + "plane" "(1080 -1424 -32) (1092 -1400 -16) (1060 -1400 -16)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -0.00146484] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101501" - "plane" "(2208 368 228) (2208 208 228) (2208 208 230)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[0 -1 0 128.001] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "49289" + "plane" "(1080 -1424 0) (1092 -1400 0) (1092 -1400 -16)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101500" - "plane" "(2112 208 228) (2112 368 228) (2112 368 230)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[0 -1 0 128.001] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "49288" + "plane" "(1060 -1400 0) (1048 -1424 0) (1048 -1424 -32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101499" - "plane" "(2208 208 228) (2112 208 228) (2112 208 230)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "49287" + "plane" "(1048 -1424 0) (1080 -1424 0) (1080 -1424 -32)" + "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" "101498" - "plane" "(2112 368 228) (2208 368 228) (2208 368 230)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "49286" + "plane" "(1092 -1400 0) (1060 -1400 0) (1060 -1400 -16)" + "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" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180324" + "id" "103975" side { - "id" "101509" - "plane" "(2110 206 232) (2110 370 232) (2210 370 232)" + "id" "49297" + "plane" "(1072 -1376 0) (1104 -1376 0) (1092 -1400 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8] 0.25" - "vaxis" "[0 1 0 -0.00146484] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101508" - "plane" "(2112 368 230) (2112 208 230) (2208 208 230)" + "id" "49296" + "plane" "(1060 -1400 -16) (1092 -1400 -16) (1104 -1376 -8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8] 0.25" - "vaxis" "[0 1 0 -0.00146484] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101507" - "plane" "(2208 368 230) (2208 208 230) (2210 206 232)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[0 -1 0 128.001] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "49295" + "plane" "(1092 -1400 -16) (1092 -1400 0) (1104 -1376 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101506" - "plane" "(2112 208 230) (2112 368 230) (2110 370 232)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[0 -1 0 128.001] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "49294" + "plane" "(1072 -1376 -8) (1072 -1376 0) (1060 -1400 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101505" - "plane" "(2208 208 230) (2112 208 230) (2110 206 232)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "49293" + "plane" "(1104 -1376 -8) (1104 -1376 0) (1072 -1376 0)" + "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" "101504" - "plane" "(2112 368 230) (2208 368 230) (2210 370 232)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "49292" + "plane" "(1060 -1400 -16) (1060 -1400 0) (1092 -1400 0)" + "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" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "180328" + "id" "104079" side { - "id" "101515" - "plane" "(2110 370 232) (2110 206 232) (2210 206 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8] 0.25" - "vaxis" "[0 1 0 -0.00146484] 0.25" + "id" "49315" + "plane" "(1808 -1600 96) (1800 -1600 96) (1800 -1504 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101514" - "plane" "(2112 208 234) (2112 368 234) (2208 368 234)" - "material" "CONCRETE/BAGGAGE_CONCRETEFLOORA" - "uaxis" "[-1 0 0 -56] 0.25" - "vaxis" "[0 1 0 -128.001] 0.25" + "id" "49314" + "plane" "(1808 -1504 64) (1800 -1504 64) (1800 -1600 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101513" - "plane" "(2210 370 232) (2210 206 232) (2208 208 234)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[0 -1 0 128.001] 0.25" - "vaxis" "[0 0 1 128] 0.25" + "id" "49313" + "plane" "(1808 -1600 64) (1800 -1600 64) (1800 -1600 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101512" - "plane" "(2110 206 232) (2110 370 232) (2112 368 234)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[0 -1 0 128.001] 0.25" - "vaxis" "[0 0 1 128] 0.25" + "id" "49312" + "plane" "(1800 -1504 64) (1808 -1504 64) (1808 -1504 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101511" - "plane" "(2210 206 232) (2110 206 232) (2112 208 234)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 0 1 128] 0.25" + "id" "49311" + "plane" "(1800 -1600 64) (1800 -1504 64) (1800 -1504 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "101510" - "plane" "(2110 370 232) (2210 370 232) (2208 368 234)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 0 1 128] 0.25" + "id" "49310" + "plane" "(1808 -1504 64) (1808 -1600 64) (1808 -1600 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "107 188 0" - "groupid" "187231" + "color" "0 137 234" "visgroupid" "23" "visgroupid" "24" "visgroupshown" "1" @@ -77588,35 +79373,35 @@ world } solid { - "id" "176836" + "id" "104085" side { - "id" "61689" - "plane" "(-72 -960 368) (-72 -928 368) (-64 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "49327" + "plane" "(1840 -1600 96) (1808 -1600 96) (1808 -1592 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61688" - "plane" "(-64 -960 336) (-64 -960 368) (-64 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49326" + "plane" "(1840 -1592 64) (1808 -1592 64) (1808 -1600 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61687" - "plane" "(-72 -928 336) (-72 -928 368) (-72 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "49325" + "plane" "(1840 -1600 64) (1808 -1600 64) (1808 -1600 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77624,10 +79409,10 @@ world } side { - "id" "61686" - "plane" "(-64 -928 336) (-64 -928 368) (-72 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "id" "49324" + "plane" "(1808 -1592 64) (1840 -1592 64) (1840 -1592 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77635,10 +79420,10 @@ world } side { - "id" "61685" - "plane" "(-72 -960 336) (-72 -960 368) (-64 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 -256] 0.25" + "id" "49323" + "plane" "(1808 -1600 64) (1808 -1592 64) (1808 -1592 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77646,31 +79431,33 @@ world } side { - "id" "61684" - "plane" "(-72 -928 336) (-72 -960 336) (-64 -960 336)" + "id" "49322" + "plane" "(1840 -1592 64) (1840 -1600 64) (1840 -1600 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 137 234" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "176837" + "id" "104087" side { - "id" "61695" - "plane" "(-16 -956 368) (-16 -928 368) (-8 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "id" "49339" + "plane" "(1848 -1600 96) (1840 -1600 96) (1840 -1504 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77678,21 +79465,21 @@ world } side { - "id" "61694" - "plane" "(-8 -956 336) (-8 -956 368) (-8 -928 368)" + "id" "49338" + "plane" "(1848 -1504 64) (1840 -1504 64) (1840 -1600 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61693" - "plane" "(-16 -928 336) (-16 -928 368) (-16 -956 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "49337" + "plane" "(1848 -1600 64) (1840 -1600 64) (1840 -1600 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77700,10 +79487,10 @@ world } side { - "id" "61692" - "plane" "(-8 -928 336) (-8 -928 368) (-16 -928 368)" + "id" "49336" + "plane" "(1840 -1504 64) (1848 -1504 64) (1848 -1504 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77711,42 +79498,44 @@ world } side { - "id" "61691" - "plane" "(-16 -956 336) (-16 -956 368) (-8 -956 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 -384] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "49335" + "plane" "(1840 -1600 64) (1840 -1504 64) (1840 -1504 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61690" - "plane" "(-16 -928 336) (-16 -956 336) (-8 -956 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "49334" + "plane" "(1848 -1504 64) (1848 -1600 64) (1848 -1600 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 137 234" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "176838" + "id" "104092" side { - "id" "61701" - "plane" "(-24 -960 368) (-24 -928 368) (-16 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "id" "49351" + "plane" "(1840 -1592 88) (1808 -1592 88) (1808 -1504 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77754,21 +79543,21 @@ world } side { - "id" "61700" - "plane" "(-16 -960 336) (-16 -960 368) (-16 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49350" + "plane" "(1840 -1504 64) (1808 -1504 64) (1808 -1592 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61699" - "plane" "(-24 -928 336) (-24 -928 368) (-24 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "49349" + "plane" "(1840 -1592 64) (1808 -1592 64) (1808 -1592 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77776,10 +79565,10 @@ world } side { - "id" "61698" - "plane" "(-16 -928 336) (-16 -928 368) (-24 -928 368)" + "id" "49348" + "plane" "(1808 -1504 64) (1840 -1504 64) (1840 -1504 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77787,10 +79576,10 @@ world } side { - "id" "61697" - "plane" "(-24 -960 336) (-24 -960 368) (-16 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 -256] 0.25" + "id" "49347" + "plane" "(1808 -1592 64) (1808 -1504 64) (1808 -1504 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77798,53 +79587,55 @@ world } side { - "id" "61696" - "plane" "(-24 -928 336) (-24 -960 336) (-16 -960 336)" + "id" "49346" + "plane" "(1840 -1504 64) (1840 -1592 64) (1840 -1592 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 137 234" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "176839" + "id" "104103" side { - "id" "61707" - "plane" "(-32 -956 368) (-32 -928 368) (-24 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "49369" + "plane" "(1536 -1856 64) (1472 -1856 64) (1472 -1728 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61706" - "plane" "(-24 -956 336) (-24 -956 368) (-24 -928 368)" + "id" "49368" + "plane" "(1472 -1728 -128) (1472 -1856 -128) (1536 -1856 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61705" - "plane" "(-32 -928 336) (-32 -928 368) (-32 -956 368)" + "id" "49367" + "plane" "(1536 -1856 -128) (1472 -1856 -128) (1472 -1856 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77852,10 +79643,10 @@ world } side { - "id" "61704" - "plane" "(-24 -928 336) (-24 -928 368) (-32 -928 368)" + "id" "49366" + "plane" "(1536 -1728 -128) (1536 -1856 -128) (1536 -1856 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77863,64 +79654,65 @@ world } side { - "id" "61703" - "plane" "(-32 -956 336) (-32 -956 368) (-24 -956 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "49365" + "plane" "(1472 -1856 -128) (1472 -1728 -128) (1472 -1728 64)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61702" - "plane" "(-32 -928 336) (-32 -956 336) (-24 -956 336)" + "id" "49364" + "plane" "(1472 -1728 -128) (1536 -1728 -128) (1536 -1728 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 137 234" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "176840" + "id" "104104" side { - "id" "61713" - "plane" "(-40 -960 368) (-40 -928 368) (-32 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "49375" + "plane" "(1472 -1600 64) (1472 -960 64) (1536 -960 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61712" - "plane" "(-32 -960 336) (-32 -960 368) (-32 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49374" + "plane" "(1536 -960 -128) (1472 -960 -128) (1472 -1600 -128)" + "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" "61711" - "plane" "(-40 -928 336) (-40 -928 368) (-40 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "49373" + "plane" "(1472 -960 -128) (1536 -960 -128) (1536 -960 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77928,10 +79720,10 @@ world } side { - "id" "61710" - "plane" "(-32 -928 336) (-32 -928 368) (-40 -928 368)" + "id" "49372" + "plane" "(1536 -960 -128) (1536 -1600 -128) (1536 -1600 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -77939,129 +79731,148 @@ world } side { - "id" "61709" - "plane" "(-40 -960 336) (-40 -960 368) (-32 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 -256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49371" + "plane" "(1472 -1600 -128) (1472 -960 -128) (1472 -960 64)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61708" - "plane" "(-40 -928 336) (-40 -960 336) (-32 -960 336)" + "id" "49370" + "plane" "(1536 -1600 -128) (1472 -1600 -128) (1472 -1600 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 137 234" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "176841" - side - { - "id" "61719" - "plane" "(-48 -956 368) (-48 -928 368) (-40 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61718" - "plane" "(-40 -956 336) (-40 -956 368) (-40 -928 368)" - "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" "61717" - "plane" "(-48 -928 336) (-48 -928 368) (-48 -956 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "104105" side { - "id" "61716" - "plane" "(-40 -928 336) (-40 -928 368) (-48 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61715" - "plane" "(-48 -956 336) (-48 -956 368) (-40 -956 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "49381" + "plane" "(1472 -1728 64) (1472 -1600 64) (1568 -1600 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 64] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1472 -1728 64]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0" + "row2" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0" + "row3" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0" + "row4" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0" + "row5" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0" + "row6" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0" + "row7" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "5.28019 6.44131 6.62748 7.27198 7.12474 4.63086 0.986233 0 0" + "row2" "29.7471 43.0627 33.7056 30.281 19.0999 15.6102 6.4536 0.916668 0" + "row3" "42.5139 43.5759 33.5532 27.6988 23.6669 15.1938 6.13831 2.25 0" + "row4" "36.2069 39.9984 30.6989 26.5925 23.1574 15.52 3.51541 0.916668 0" + "row5" "41.4693 37.3074 30.1394 24.2795 18.2517 13.9832 3.60636 0 0" + "row6" "27.0223 25.4711 20.1278 14.7928 12.1815 8.64061 0.794106 0 0" + "row7" "4.48823 3.03361 8.93882 9.39432 7.92642 1.61731 0 0 0" + "row8" "0 0 1.75864 3.28314 1.75864 0 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "0 0 0 0 0 0 0 9 1 9 0 9 9 9 9 9" + "row2" "1 0 1 1 9 9 1 9 1 9 1 1 9 9 9 9" + "row3" "9 9 1 1 9 9 9 9 9 9 1 1 9 9 9 9" + "row4" "9 9 1 9 9 9 9 9 9 9 1 1 9 9 9 9" + "row5" "1 1 1 1 1 9 9 9 9 9 9 1 9 9 9 9" + "row6" "0 0 0 1 9 9 9 9 9 9 1 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "61714" - "plane" "(-48 -928 336) (-48 -956 336) (-40 -956 336)" + "id" "49380" + "plane" "(1472 -1600 3.8147e-06) (1472 -1728 3.8147e-06) (1568 -1728 3.8147e-06)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "0 253 174" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "176842" side { - "id" "61725" - "plane" "(-56 -960 368) (-56 -928 368) (-48 -928 368)" + "id" "49379" + "plane" "(1568 -1600 3.8147e-06) (1568 -1728 3.8147e-06) (1568 -1728 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61724" - "plane" "(-48 -960 336) (-48 -960 368) (-48 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -78069,32 +79880,104 @@ world } side { - "id" "61723" - "plane" "(-56 -928 336) (-56 -928 368) (-56 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49378" + "plane" "(1472 -1728 3.8147e-06) (1472 -1600 3.8147e-06) (1472 -1600 64)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1472 -1728 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row2" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row3" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row4" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row5" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row6" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row7" "0 0 0 0 0 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0.730974 3.54412 6.35822 8.91048 9.11641 5.2802" + "row2" "0 1.43524 6.25256 11.3361 17.1678 23.2896 29.3596 33.8779 29.7472" + "row3" "0 5.98113 10.666 14.2196 19.2152 25.8119 32.6946 39.1517 42.5139" + "row4" "0 2.69716 7.70703 11.9716 18.3884 24.7708 31.1514 36.8719 36.2069" + "row5" "0 4.09905 6.73774 12.5328 18.7495 25.6215 32.3285 38.2479 41.4693" + "row6" "0 3.91699 9.03726 13.7597 19.42 25.0751 30.8666 35.4584 27.0223" + "row7" "0 0.192218 2.97583 5.70663 8.11137 11.1685 12.9334 10.1103 4.48823" + "row8" "0 0 0 0 0 0 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row1" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row2" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row3" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row4" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row5" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row6" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row7" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row8" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "61722" - "plane" "(-48 -928 336) (-48 -928 368) (-56 -928 368)" + "id" "49377" + "plane" "(1568 -1728 3.8147e-06) (1472 -1728 3.8147e-06) (1472 -1728 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61721" - "plane" "(-56 -960 336) (-56 -960 368) (-48 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 -256] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -78102,107 +79985,43 @@ world } side { - "id" "61720" - "plane" "(-56 -928 336) (-56 -960 336) (-48 -960 336)" + "id" "49376" + "plane" "(1472 -1600 3.8147e-06) (1568 -1600 3.8147e-06) (1568 -1600 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 137 234" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "176843" - side - { - "id" "61731" - "plane" "(-64 -956 368) (-64 -928 368) (-56 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61730" - "plane" "(-56 -956 336) (-56 -956 368) (-56 -928 368)" - "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" "61729" - "plane" "(-64 -928 336) (-64 -928 368) (-64 -956 368)" - "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" "61728" - "plane" "(-56 -928 336) (-56 -928 368) (-64 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61727" - "plane" "(-64 -956 336) (-64 -956 368) (-56 -956 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "104113" side { - "id" "61726" - "plane" "(-64 -928 336) (-64 -956 336) (-56 -956 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "id" "49393" + "plane" "(1536 -1600 64) (1536 -960 64) (1792 -960 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "0 253 174" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "176844" side { - "id" "61737" - "plane" "(-80 -956 368) (-80 -928 368) (-72 -928 368)" + "id" "49392" + "plane" "(1536 -960 0) (1536 -1600 0) (1792 -1600 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -78210,8 +80029,8 @@ world } side { - "id" "61736" - "plane" "(-72 -956 336) (-72 -956 368) (-72 -928 368)" + "id" "49391" + "plane" "(1536 -1600 0) (1536 -960 0) (1536 -960 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -78221,8 +80040,8 @@ world } side { - "id" "61735" - "plane" "(-80 -928 336) (-80 -928 368) (-80 -956 368)" + "id" "49390" + "plane" "(1792 -960 0) (1792 -1600 0) (1792 -1600 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -78232,75 +80051,10 @@ world } side { - "id" "61734" - "plane" "(-72 -928 336) (-72 -928 368) (-80 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61733" - "plane" "(-80 -956 336) (-80 -956 368) (-72 -956 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61732" - "plane" "(-80 -928 336) (-80 -956 336) (-72 -956 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 253 174" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "176845" - side - { - "id" "61743" - "plane" "(-88 -960 368) (-88 -928 368) (-80 -928 368)" + "id" "49389" + "plane" "(1536 -960 0) (1792 -960 0) (1792 -960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61742" - "plane" "(-80 -960 336) (-80 -960 368) (-80 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61741" - "plane" "(-88 -928 336) (-88 -928 368) (-88 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -78308,53 +80062,32 @@ world } side { - "id" "61740" - "plane" "(-80 -928 336) (-80 -928 368) (-88 -928 368)" + "id" "49388" + "plane" "(1792 -1600 0) (1536 -1600 0) (1536 -1600 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61739" - "plane" "(-88 -960 336) (-88 -960 368) (-80 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 -256] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - side - { - "id" "61738" - "plane" "(-88 -928 336) (-88 -960 336) (-80 -960 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } editor { - "color" "0 253 174" + "color" "0 163 208" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "176846" + "id" "104115" side { - "id" "61749" - "plane" "(-96 -956 368) (-96 -928 368) (-88 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "id" "49405" + "plane" "(1568 -1728 64) (1568 -1600 64) (2240 -1600 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -78362,85 +80095,20 @@ world } side { - "id" "61748" - "plane" "(-88 -956 336) (-88 -956 368) (-88 -928 368)" - "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" "61747" - "plane" "(-96 -928 336) (-96 -928 368) (-96 -956 368)" - "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" "61746" - "plane" "(-88 -928 336) (-88 -928 368) (-96 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61745" - "plane" "(-96 -956 336) (-96 -956 368) (-88 -956 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61744" - "plane" "(-96 -928 336) (-96 -956 336) (-88 -956 336)" + "id" "49404" + "plane" "(1568 -1600 0) (1568 -1728 0) (2240 -1728 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "0 253 174" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "176847" side { - "id" "61755" - "plane" "(-104 -960 368) (-104 -928 368) (-96 -928 368)" + "id" "49403" + "plane" "(1568 -1728 0) (1568 -1600 0) (1568 -1600 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61754" - "plane" "(-96 -960 336) (-96 -960 368) (-96 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -78449,9 +80117,9 @@ world } side { - "id" "61753" - "plane" "(-104 -928 336) (-104 -928 368) (-104 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "49402" + "plane" "(2240 -1600 0) (2240 -1728 0) (2240 -1728 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -78460,21 +80128,10 @@ world } side { - "id" "61752" - "plane" "(-96 -928 336) (-96 -928 368) (-104 -928 368)" + "id" "49401" + "plane" "(1568 -1600 0) (2240 -1600 0) (2240 -1600 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61751" - "plane" "(-104 -960 336) (-104 -960 368) (-96 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 -256] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -78482,53 +80139,54 @@ world } side { - "id" "61750" - "plane" "(-104 -928 336) (-104 -960 336) (-96 -960 336)" + "id" "49400" + "plane" "(2240 -1728 0) (1568 -1728 0) (1568 -1728 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 163 208" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "176848" + "id" "104195" side { - "id" "61761" - "plane" "(-112 -956 368) (-112 -928 368) (-104 -928 368)" + "id" "49429" + "plane" "(1472 -1728 3.8147e-06) (1472 -1600 3.8147e-06) (1536 -1600 3.8147e-06)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61760" - "plane" "(-104 -956 336) (-104 -956 368) (-104 -928 368)" + "id" "49428" + "plane" "(1536 -1600 -128) (1472 -1600 -128) (1472 -1728 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61759" - "plane" "(-112 -928 336) (-112 -928 368) (-112 -956 368)" + "id" "49427" + "plane" "(1472 -1600 -128) (1536 -1600 -128) (1536 -1600 3.8147e-06)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -78536,10 +80194,10 @@ world } side { - "id" "61758" - "plane" "(-104 -928 336) (-104 -928 368) (-112 -928 368)" + "id" "49426" + "plane" "(1536 -1600 -128) (1536 -1728 -128) (1536 -1728 3.8147e-06)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -78547,303 +80205,675 @@ world } side { - "id" "61757" - "plane" "(-112 -956 336) (-112 -956 368) (-104 -956 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 -128] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "49425" + "plane" "(1472 -1728 -128) (1472 -1600 -128) (1472 -1600 3.8147e-06)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61756" - "plane" "(-112 -928 336) (-112 -956 336) (-104 -956 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "49424" + "plane" "(1536 -1728 -128) (1472 -1728 -128) (1472 -1728 3.8147e-06)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 137 234" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + hidden { - "id" "176849" - side - { - "id" "61767" - "plane" "(-128 -964 368) (-128 -928 368) (-112 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61766" - "plane" "(-112 -964 336) (-112 -964 368) (-112 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61765" - "plane" "(-128 -928 336) (-128 -928 368) (-128 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61764" - "plane" "(-112 -928 336) (-112 -928 368) (-128 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61763" - "plane" "(-128 -964 336) (-128 -964 368) (-112 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61762" - "plane" "(-128 -928 336) (-128 -964 336) (-112 -964 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor + solid { - "color" "0 133 222" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "102359" + side + { + "id" "48826" + "plane" "(2320 380 320) (2380 344 320) (2292 192 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48825" + "plane" "(2292 192 96) (2380 344 96) (2320 380 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48824" + "plane" "(2272 392 320) (2272 192 320) (2272 192 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48823" + "plane" "(2292 192 320) (2380 344 320) (2380 344 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48822" + "plane" "(2380 344 320) (2320 380 320) (2320 380 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48821" + "plane" "(2272 192 320) (2292 192 320) (2292 192 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48820" + "plane" "(2320 380 320) (2272 392 320) (2272 391.999 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 101 178" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "176956" - side - { - "id" "61838" - "plane" "(-144 -964 368) (-144 -928 368) (-128 -928 368)" - "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" "61837" - "plane" "(-144 -928 -128) (-144 -928 368) (-144 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61836" - "plane" "(-128 -964 -128) (-128 -964 368) (-128 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61835" - "plane" "(-128 -928 -128) (-128 -928 368) (-144 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61834" - "plane" "(-144 -964 -128) (-144 -964 368) (-128 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 64] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61833" - "plane" "(-144 -928 -128) (-144 -964 -128) (-128 -964 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor + solid { - "color" "0 133 222" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "102374" + side + { + "id" "48832" + "plane" "(1856 -512 320) (2240 -512 320) (2240 -1280 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48831" + "plane" "(1856 -1280 256) (2240 -1280 256) (2240 -512 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48830" + "plane" "(1856 -512 256) (2240 -512 256) (2240 -512 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48829" + "plane" "(2240 -1280 256) (1856 -1280 256) (1856 -1280 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48828" + "plane" "(1856 -1280 256) (1856 -512 256) (1856 -512 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48827" + "plane" "(2240 -512 256) (2240 -1280 256) (2240 -1280 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 198" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "176961" - side - { - "id" "61839" - "plane" "(160 -352 256) (160 -256 256) (384 -256 256)" - "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 + solid { - "id" "61840" - "plane" "(160 -256 240) (160 -352 240) (384 -352 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -96] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "102375" + side + { + "id" "48838" + "plane" "(2240 -192 320) (3264 -192 320) (3264 -1280 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48837" + "plane" "(2240 -1280 256) (3264 -1280 256) (3264 -192 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48836" + "plane" "(3264 -192 256) (3264 -1280 256) (3264 -1280 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48835" + "plane" "(2240 -192 256) (3264 -192 256) (3264 -192 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48834" + "plane" "(3264 -1280 256) (2240 -1280 256) (2240 -1280 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48833" + "plane" "(2240 -1280 256) (2240 -192 256) (2240 -192 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 198" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } - side + } + hidden + { + solid { - "id" "61841" - "plane" "(160 -352 240) (160 -256 240) (160 -256 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "102380" + side + { + "id" "48850" + "plane" "(1856 -1280 320) (864 -1280 320) (864 -512 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48849" + "plane" "(864 -512 256) (864 -1280 256) (1856 -1280 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48848" + "plane" "(1856 -1280 256) (864 -1280 256) (864 -1280 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48847" + "plane" "(864 -1280 256) (864 -512 256) (864 -512 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48846" + "plane" "(1856 -512 256) (1856 -1280 256) (1856 -1280 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48845" + "plane" "(864 -512 256) (1856 -512 256) (1856 -512 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 198" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } - side + } + hidden + { + solid { - "id" "61842" - "plane" "(384 -256 240) (384 -352 240) (384 -352 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "102391" + side + { + "id" "48860" + "plane" "(-127.991 -1920 32) (-64 -1920 32) (-64 -1600 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 63.9374] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48859" + "plane" "(-64 -1600 64) (-64 -1600 32) (-64 -1920 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48858" + "plane" "(-128 -1600 32) (-64 -1600 32) (-64 -1600 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 63.9375] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48857" + "plane" "(-64 -1920 64) (-64 -1920 32) (-127.999 -1920 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 63.9375] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48856" + "plane" "(-127.991 -1920 32) (-127.991 -1600 32) (-64 -1600 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 63.9374] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 233 234" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } - side + } + hidden + { + solid { - "id" "61843" - "plane" "(160 -256 240) (384 -256 240) (384 -256 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "102402" + side + { + "id" "48872" + "plane" "(2464 -832 64) (2528 -832 96) (2528 -1088 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48871" + "plane" "(2464 -1088 64) (2528 -1088 64) (2528 -832 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48869" + "plane" "(2528 -1088 64) (2528 -1088 96) (2528 -832 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48868" + "plane" "(2528 -832 64) (2528 -832 96) (2464 -832 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48867" + "plane" "(2464 -1088 64) (2528 -1088 96) (2528 -1088 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 139 240" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } - side + } + hidden + { + solid { - "id" "61844" - "plane" "(384 -352 240) (160 -352 240) (160 -352 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "102406" + side + { + "id" "48882" + "plane" "(2496 -1120 64) (2464 -1088 64) (2528 -1088 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48881" + "plane" "(2464 -1088 64) (2496 -1120 64) (2528 -1088 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48879" + "plane" "(2464 -1088 64) (2528 -1088 64) (2528 -1088 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48878" + "plane" "(2528 -1088 64) (2496 -1120 64) (2528 -1088 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 139 240" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } - editor + } + hidden + { + solid { - "color" "0 186 219" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "102410" + side + { + "id" "48883" + "plane" "(1472 -1472 256) (1504 -1472 256) (1504 -1984 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48884" + "plane" "(1472 -1984 64) (1504 -1984 64) (1504 -1472 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48885" + "plane" "(1472 -1472 256) (1472 -1984 256) (1472 -1984 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48886" + "plane" "(1504 -1472 64) (1504 -1984 64) (1504 -1984 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48887" + "plane" "(1504 -1472 256) (1472 -1472 256) (1472 -1472 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48888" + "plane" "(1504 -1984 64) (1472 -1984 64) (1472 -1984 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 254 119" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } solid { - "id" "177325" + "id" "102411" side { - "id" "61934" - "plane" "(452 -2280 80) (452 -2296 80) (508 -2296 80)" + "id" "48900" + "plane" "(1792 -1472 256) (1536 -1472 256) (1536 -1344 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61933" - "plane" "(452 -2296 80) (452 -2280 80) (452 -2280 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -31.9971] 0.25" - "vaxis" "[0 0 -1 7] 0.123" + "id" "48899" + "plane" "(1792 -1344 192) (1536 -1344 192) (1536 -1472 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61932" - "plane" "(508 -2280 80) (508 -2296 80) (508 -2296 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 7] 0.123" + "id" "48898" + "plane" "(1792 -1472 192) (1536 -1472 192) (1536 -1472 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61931" - "plane" "(452 -2280 80) (508 -2280 80) (508 -2280 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "48897" + "plane" "(1536 -1344 192) (1792 -1344 192) (1792 -1344 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -78851,76 +80881,211 @@ world } side { - "id" "61930" - "plane" "(508 -2296 80) (452 -2296 80) (452 -2296 184)" - "material" "TEROUST/ARPEGGIO/DOORS/DOORS01" - "uaxis" "[1 0 0 -18.2844] 0.21875" - "vaxis" "[0 0 -1 393.846] 0.203125" + "id" "48896" + "plane" "(1536 -1472 192) (1536 -1344 192) (1536 -1344 256)" + "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" "61929" - "plane" "(452 -2296 184) (452 -2280 184) (508 -2280 184)" + "id" "48895" + "plane" "(1792 -1344 192) (1792 -1472 192) (1792 -1472 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 246 183" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } + hidden + { + solid + { + "id" "102418" + side + { + "id" "48912" + "plane" "(1472 -2016 256) (1024 -2016 256) (1088 -1952 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48911" + "plane" "(1472 -1952 224) (1088 -1952 224) (1024 -2016 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48910" + "plane" "(1088 -1952 224) (1088 -1952 256) (1024 -2016 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48909" + "plane" "(1472 -1952 256) (1472 -1952 224) (1472 -2016 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48908" + "plane" "(1088 -1952 224) (1472 -1952 224) (1472 -1952 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 254 119" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "102439" + side + { + "id" "48927" + "plane" "(1024 -2016 256) (1024 -1920 256) (1088 -1920 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48926" + "plane" "(1024 -1920 256) (1024 -2016 256) (1088 -1952 224)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48925" + "plane" "(1088 -1952 224) (1024 -2016 256) (1088 -1952 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48924" + "plane" "(1088 -1920 224) (1088 -1952 224) (1088 -1952 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48923" + "plane" "(1088 -1920 256) (1024 -1920 256) (1088 -1920 224)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 254 119" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } solid { - "id" "177327" + "id" "100785" side { - "id" "61946" - "plane" "(256 -2296 80) (256 -2304 80) (452 -2304 80)" + "id" "48738" + "plane" "(1808 4 163.998) (1808 68 163.998) (1928 68 163.998)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61945" - "plane" "(256 -2304 80) (256 -2296 80) (256 -2296 112)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[0 -1 0 -127.998] 0.25" - "vaxis" "[0 0 -1 135] 0.123" + "id" "48737" + "plane" "(1808 68 91.519) (1808 4 91.519) (1928 4 91.519)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61944" - "plane" "(452 -2296 80) (452 -2304 80) (452 -2304 112)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 135] 0.123" + "id" "48736" + "plane" "(1928 4 163.998) (1928 68 163.998) (1928 68 91.519)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 80] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61943" - "plane" "(256 -2296 80) (452 -2296 80) (452 -2296 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "48735" + "plane" "(1808 68 163.998) (1808 4 163.998) (1808 4 91.519)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -78928,65 +81093,64 @@ world } side { - "id" "61942" - "plane" "(452 -2304 80) (256 -2304 80) (256 -2304 112)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[1 0 0 -127.998] 0.25" - "vaxis" "[0 0 -1 135] 0.123" + "id" "48734" + "plane" "(1808 4 163.998) (1928 4 163.998) (1928 4 91.519)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61941" - "plane" "(256 -2304 112) (256 -2296 112) (452 -2296 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48733" + "plane" "(1928 68 163.998) (1808 68 163.998) (1808 68 91.519)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 114 227" - "visgroupid" "18" + "color" "0 124 241" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177328" + "id" "100787" side { - "id" "61952" - "plane" "(416 -2304 208) (416 -2296 208) (452 -2296 208)" + "id" "48744" + "plane" "(1928 4 164) (1928 68 164) (1932 68 164)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61951" - "plane" "(416 -2296 112) (416 -2296 208) (416 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48743" + "plane" "(1928 68 155.519) (1928 4 155.519) (1932 4 155.519)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61950" - "plane" "(452 -2304 112) (452 -2304 208) (452 -2296 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" + "id" "48742" + "plane" "(1932 4 164) (1932 68 164) (1932 68 155.519)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -78994,21 +81158,21 @@ world } side { - "id" "61949" - "plane" "(452 -2296 112) (452 -2296 208) (416 -2296 208)" + "id" "48741" + "plane" "(1928 68 164) (1928 4 164) (1928 4 155.519)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61948" - "plane" "(416 -2304 112) (416 -2304 208) (452 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 -128] 0.25" + "id" "48740" + "plane" "(1928 4 164) (1932 4 164) (1932 4 155.519)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79016,54 +81180,56 @@ world } side { - "id" "61947" - "plane" "(416 -2296 112) (416 -2304 112) (452 -2304 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48739" + "plane" "(1932 68 164) (1928 68 164) (1928 68 155.519)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 114 227" - "visgroupid" "18" + "color" "162 131 0" + "groupid" "100786" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177329" + "id" "100788" side { - "id" "61958" - "plane" "(508 -2296 80) (508 -2304 80) (544 -2304 80)" + "id" "48750" + "plane" "(1928 60 156) (1928 68 156) (1932 68 156)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61957" - "plane" "(508 -2304 80) (508 -2296 80) (508 -2296 112)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 135] 0.123" + "id" "48749" + "plane" "(1928 68 100) (1928 60 100) (1932 60 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61956" - "plane" "(544 -2296 80) (544 -2304 80) (544 -2304 112)" + "id" "48748" + "plane" "(1932 60 156) (1932 68 156) (1932 68 100)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79071,76 +81237,78 @@ world } side { - "id" "61955" - "plane" "(508 -2296 80) (544 -2296 80) (544 -2296 112)" + "id" "48747" + "plane" "(1928 68 156) (1928 60 156) (1928 60 100)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61954" - "plane" "(544 -2304 80) (508 -2304 80) (508 -2304 112)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 135] 0.123" + "id" "48746" + "plane" "(1928 60 156) (1932 60 156) (1932 60 100)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61953" - "plane" "(508 -2304 112) (508 -2296 112) (544 -2296 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48745" + "plane" "(1932 68 156) (1928 68 156) (1928 68 100)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 132 249" - "visgroupid" "18" + "color" "162 131 0" + "groupid" "100786" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177330" + "id" "100789" side { - "id" "61964" - "plane" "(508 -2304 208) (508 -2296 208) (544 -2296 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48756" + "plane" "(1928 4 100) (1928 68 100) (1932 68 100)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61963" - "plane" "(508 -2296 112) (508 -2296 208) (508 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48755" + "plane" "(1928 68 91.519) (1928 4 91.519) (1932 4 91.519)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61962" - "plane" "(544 -2304 112) (544 -2304 208) (544 -2296 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" + "id" "48754" + "plane" "(1932 4 100) (1932 68 100) (1932 68 91.519)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79148,21 +81316,21 @@ world } side { - "id" "61961" - "plane" "(544 -2296 112) (544 -2296 208) (508 -2296 208)" + "id" "48753" + "plane" "(1928 68 100) (1928 4 100) (1928 4 91.519)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61960" - "plane" "(508 -2304 112) (508 -2304 208) (544 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 0] 0.25" + "id" "48752" + "plane" "(1928 4 100) (1932 4 100) (1932 4 91.519)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79170,54 +81338,56 @@ world } side { - "id" "61959" - "plane" "(508 -2296 112) (508 -2304 112) (544 -2304 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48751" + "plane" "(1932 68 100) (1928 68 100) (1928 68 91.519)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 132 249" - "visgroupid" "18" + "color" "162 131 0" + "groupid" "100786" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177331" + "id" "100790" side { - "id" "61970" - "plane" "(544 -2288 80) (544 -2304 80) (608 -2304 80)" + "id" "48762" + "plane" "(1928 4 156) (1928 12 156) (1932 12 156)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61969" - "plane" "(544 -2304 80) (544 -2288 80) (544 -2288 112)" + "id" "48761" + "plane" "(1928 12 100) (1928 4 100) (1932 4 100)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61968" - "plane" "(608 -2288 80) (608 -2304 80) (608 -2304 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "48760" + "plane" "(1932 4 156) (1932 12 156) (1932 12 100)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79225,142 +81395,145 @@ world } side { - "id" "61967" - "plane" "(544 -2288 80) (608 -2288 80) (608 -2288 112)" + "id" "48759" + "plane" "(1928 12 156) (1928 4 156) (1928 4 100)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61966" - "plane" "(608 -2304 80) (544 -2304 80) (544 -2304 112)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 135] 0.123" + "id" "48758" + "plane" "(1928 4 156) (1932 4 156) (1932 4 100)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61965" - "plane" "(544 -2304 112) (544 -2288 112) (608 -2288 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48757" + "plane" "(1932 12 156) (1928 12 156) (1928 12 100)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 100 237" - "visgroupid" "18" + "color" "162 131 0" + "groupid" "100786" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177333" + "id" "100791" side { - "id" "61982" - "plane" "(608 -2296 80) (608 -2304 80) (704 -2304 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48768" + "plane" "(1804 0 168) (1804 72 168) (1936 72 168)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 80] 0.25" + "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61981" - "plane" "(608 -2304 80) (608 -2296 80) (608 -2296 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48767" + "plane" "(1808 68 164) (1808 4 164) (1932 4 164)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61980" - "plane" "(704 -2296 80) (704 -2304 80) (704 -2304 112)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 135] 0.123" + "id" "48766" + "plane" "(1932 68 164) (1932 4 164) (1936 0 168)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 80] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61979" - "plane" "(608 -2296 80) (704 -2296 80) (704 -2296 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48765" + "plane" "(1932 4 164) (1808 4 164) (1804 0 168)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 80] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61978" - "plane" "(704 -2304 80) (608 -2304 80) (608 -2304 112)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 135] 0.123" + "id" "48764" + "plane" "(1936 72 168) (1804 72 168) (1808 68 164)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 80] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61977" - "plane" "(608 -2304 112) (608 -2296 112) (704 -2296 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48763" + "plane" "(1804 72 168) (1804 0 168) (1808 4 164)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 80] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 102 255" - "visgroupid" "18" + "color" "0 124 241" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177334" + "id" "101054" side { - "id" "61988" - "plane" "(608 -2304 208) (608 -2296 208) (704 -2296 208)" + "id" "48780" + "plane" "(2464 832 128) (2176 832 128) (2176 768 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61987" - "plane" "(608 -2296 112) (608 -2296 208) (608 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" + "id" "48779" + "plane" "(2464 768 128) (2176 768 128) (2176 768 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79368,10 +81541,10 @@ world } side { - "id" "61986" - "plane" "(704 -2304 112) (704 -2304 208) (704 -2296 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" + "id" "48778" + "plane" "(2176 832 128) (2464 832 128) (2464 832 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79379,10 +81552,10 @@ world } side { - "id" "61985" - "plane" "(704 -2296 112) (704 -2296 208) (608 -2296 208)" + "id" "48777" + "plane" "(2176 768 128) (2176 832 128) (2176 832 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79390,10 +81563,10 @@ world } side { - "id" "61984" - "plane" "(608 -2304 112) (608 -2304 208) (704 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 0] 0.25" + "id" "48776" + "plane" "(2464 832 128) (2464 768 128) (2464 768 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.203954 -0.97898 0 -16.0605] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79401,8 +81574,8 @@ world } side { - "id" "61983" - "plane" "(608 -2296 112) (608 -2304 112) (704 -2304 112)" + "id" "48775" + "plane" "(2464 768 256) (2176 768 256) (2176 832 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -79412,43 +81585,42 @@ world } editor { - "color" "0 102 255" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177546" + "id" "101058" side { - "id" "62006" - "plane" "(704 -1920 80) (720 -1920 80) (720 -1984 80)" + "id" "48802" + "plane" "(2048 1024 64) (1344 1024 64) (1344 960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62005" - "plane" "(704 -1984 64) (720 -1984 64) (720 -1920 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48801" + "plane" "(2048 960 256) (2048 960 64) (1344 960 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62004" - "plane" "(704 -1920 80) (704 -1984 80) (704 -1984 64)" + "id" "48800" + "plane" "(1344 1024 256) (1344 1024 64) (2048 1024 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79456,8 +81628,8 @@ world } side { - "id" "62003" - "plane" "(720 -1920 64) (720 -1984 64) (720 -1984 80)" + "id" "48799" + "plane" "(1344 960 256) (1344 960 64) (1344 1024 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -79467,10 +81639,10 @@ world } side { - "id" "62002" - "plane" "(720 -1920 80) (704 -1920 80) (704 -1920 64)" + "id" "48798" + "plane" "(2048 1024 256) (2048 1024 64) (2048 960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-0.753424 -0.657534 0 15.4211] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79478,42 +81650,42 @@ world } side { - "id" "62001" - "plane" "(720 -1984 64) (704 -1984 64) (704 -1984 80)" + "id" "48797" + "plane" "(2048 960 256) (1344 960 256) (1344 1024 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 216 145" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177594" + "id" "97408" side { - "id" "62040" - "plane" "(240 -2301.99 80) (240 -1984 80) (720 -1984 80)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[1 0 0 -8] 0.25" + "id" "48444" + "plane" "(896 -32 288) (960 -32 288) (960 320 288)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62039" - "plane" "(240 -1984 64) (240 -2301.98 64) (241 -2310 64)" + "id" "48443" + "plane" "(960 -32 320) (896 -32 320) (896 320 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -0.0032959] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79521,108 +81693,142 @@ world } side { - "id" "62038" - "plane" "(240 -2302 64) (240 -1984 64) (240 -1984 80)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 0 1 192] 0.25" - "vaxis" "[0 -1 0 -110.163] 0.25" + "id" "48442" + "plane" "(960 -32 288) (896 -32 288) (896 -32 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" "62037" - "plane" "(720 -1984 64) (720 -2320 64) (720 -2320 80)" + "id" "48441" + "plane" "(960 320 288) (960 -32 288) (960 -32 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62036" - "plane" "(240 -1984 64) (720 -1984 64) (720 -1984 80)" + "id" "48440" + "plane" "(896 320 288) (960 320 288) (960 320 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" "48439" + "plane" "(896 -32 288) (896 320 288) (896 320 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" } + editor + { + "color" "0 226 179" + "groupid" "97407" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "97414" side { - "id" "62035" - "plane" "(720 -2320 64) (258 -2320 64) (258 -2320 80)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 0 1 192] 0.25" - "vaxis" "[1 0 0 -8] 0.25" - "rotation" "90" + "id" "48456" + "plane" "(960 -64 288) (1184 -64 288) (1184 384 288)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62034" - "plane" "(250 -2319 64) (244 -2316 64) (244 -2316 80)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 0 1 192] 0.25" - "vaxis" "[0.894427 -0.447214 0 -467.032] 0.25" + "id" "48455" + "plane" "(1184 -64 320) (960 -64 320) (960 384 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -11.639] 0.25" + "vaxis" "[0 -1 0 21.3334] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62033" - "plane" "(244 -2316 64) (241 -2310 64) (241 -2310 80)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 0 1 192] 0.25" - "vaxis" "[0.447214 -0.894427 0 -77.5352] 0.25" + "id" "48454" + "plane" "(1184 -64 288) (960 -64 288) (960 -64 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -11.6357] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62032" - "plane" "(258 -2320 64) (250 -2319 64) (250 -2319 80)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 0 1 192] 0.25" - "vaxis" "[0.992278 -0.124036 0 -127.084] 0.25" + "id" "48453" + "plane" "(1184 384 288) (1184 -64 288) (1184 -64 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -21.3334] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62031" - "plane" "(241 -2310 64) (240 -2302 64) (240 -2302 80)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 0 1 192] 0.25" - "vaxis" "[0.124035 -0.992278 0 -158.132] 0.25" + "id" "48452" + "plane" "(960 384 288) (1184 384 288) (1184 384 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -11.6357] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48451" + "plane" "(960 -64 288) (960 384 288) (960 384 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -21.3334] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 216 145" + "color" "0 226 179" + "groupid" "97413" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177630" + "id" "97429" side { - "id" "62070" - "plane" "(608 -2304 176) (608 -2296 176) (592 -2296 182)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 0] 0.25" + "id" "48468" + "plane" "(1280 -64 288) (1280 128 288) (1184 224 288)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79630,109 +81836,109 @@ world } side { - "id" "62069" - "plane" "(608 -2304 176) (608 -2304 192) (608 -2296 192)" + "id" "48467" + "plane" "(1184 -64 320) (1184 224 320) (1280 128 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -52.3636] 0.25" + "vaxis" "[0 -1 0 42.6667] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62068" - "plane" "(592 -2296 182) (608 -2296 176) (608 -2296 192)" + "id" "48466" + "plane" "(1184 -64 288) (1184 -64 320) (1280 -64 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -52.3604] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62067" - "plane" "(592 -2304 182) (592 -2304 198) (608 -2304 192)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0.920292 0.184289 -0.345109 183.241] 0.25" - "vaxis" "[0.351123 0 0.936329 22.8906] 0.25" + "id" "48465" + "plane" "(1280 -64 288) (1280 -64 320) (1280 128 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -42.6667] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62066" - "plane" "(592 -2296 182) (592 -2296 198) (592 -2304 198)" + "id" "48464" + "plane" "(1280 128 288) (1280 128 320) (1184 224 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -52.3604] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62065" - "plane" "(608 -2296 192) (608 -2304 192) (592 -2304 198)" + "id" "48463" + "plane" "(1184 224 288) (1184 224 320) (1184 -64 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 -42.6667] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "0 226 179" + "groupid" "97428" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177631" + "id" "97450" side { - "id" "62076" - "plane" "(608 -2296 208) (608 -2304 208) (592 -2304 208)" + "id" "48474" + "plane" "(1088 -128 320) (960 -128 320) (960 -64 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62075" - "plane" "(608 -2304 208) (608 -2296 208) (608 -2296 192)" + "id" "48473" + "plane" "(1088 -64 128) (960 -64 128) (960 -128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62074" - "plane" "(592 -2296 208) (592 -2296 198) (608 -2296 192)" + "id" "48472" + "plane" "(960 -128 128) (960 -64 128) (960 -64 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62073" - "plane" "(592 -2304 208) (608 -2304 208) (608 -2304 192)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 0] 0.25" + "id" "48471" + "plane" "(1088 -128 128) (960 -128 128) (960 -128 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79740,10 +81946,10 @@ world } side { - "id" "62072" - "plane" "(592 -2296 208) (592 -2304 208) (592 -2304 198)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "48470" + "plane" "(960 -64 128) (1088 -64 128) (1088 -64 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79751,65 +81957,64 @@ world } side { - "id" "62071" - "plane" "(608 -2304 192) (608 -2296 192) (592 -2296 198)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48469" + "plane" "(1088 -64 128) (1088 -128 128) (1088 -128 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177654" + "id" "97451" side { - "id" "62082" - "plane" "(592 -2296 182) (576 -2296 184) (576 -2304 184)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48480" + "plane" "(1664 -128 320) (1152 -128 320) (1152 -64 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" "62081" - "plane" "(576 -2296 200) (576 -2296 184) (592 -2296 182)" + "id" "48479" + "plane" "(1664 -64 128) (1152 -64 128) (1152 -128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62080" - "plane" "(592 -2304 182) (576 -2304 184) (576 -2304 200)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0.990345 0.0623783 -0.123793 245.135] 0.25" - "vaxis" "[0.124035 0 0.992278 7.9082] 0.25" + "id" "48478" + "plane" "(1664 -128 128) (1152 -128 128) (1152 -128 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62079" - "plane" "(576 -2304 184) (576 -2296 184) (576 -2296 200)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "48477" + "plane" "(1152 -64 128) (1664 -64 128) (1664 -64 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79817,10 +82022,10 @@ world } side { - "id" "62078" - "plane" "(592 -2296 182) (592 -2304 182) (592 -2304 198)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "48476" + "plane" "(1664 -64 128) (1664 -128 128) (1664 -128 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79828,54 +82033,53 @@ world } side { - "id" "62077" - "plane" "(592 -2304 198) (576 -2304 200) (576 -2296 200)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48475" + "plane" "(1152 -128 128) (1152 -64 128) (1152 -64 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177655" + "id" "97453" side { - "id" "62088" - "plane" "(592 -2304 208) (576 -2304 208) (576 -2296 208)" + "id" "48492" + "plane" "(1152 -128 320) (1088 -128 320) (1088 -64 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62087" - "plane" "(592 -2296 208) (576 -2296 208) (576 -2296 200)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "48491" + "plane" "(1152 -64 256) (1088 -64 256) (1088 -128 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62086" - "plane" "(576 -2304 200) (576 -2304 208) (592 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 0] 0.25" + "id" "48490" + "plane" "(1088 -128 256) (1088 -64 256) (1088 -64 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79883,10 +82087,10 @@ world } side { - "id" "62085" - "plane" "(576 -2296 200) (576 -2296 208) (576 -2304 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "48489" + "plane" "(1152 -128 256) (1088 -128 256) (1088 -128 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79894,10 +82098,10 @@ world } side { - "id" "62084" - "plane" "(592 -2304 198) (592 -2304 208) (592 -2296 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "48488" + "plane" "(1088 -64 256) (1152 -64 256) (1152 -64 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79905,65 +82109,64 @@ world } side { - "id" "62083" - "plane" "(592 -2296 198) (576 -2296 200) (576 -2304 200)" + "id" "48487" + "plane" "(1152 -64 256) (1152 -128 256) (1152 -128 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177656" + "id" "97457" side { - "id" "62118" - "plane" "(560 -2304 182) (576 -2304 184) (576 -2296 184)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48504" + "plane" "(1152 -128 320) (1088 -128 320) (1088 -80 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" "62117" - "plane" "(560 -2296 198) (560 -2296 182) (576 -2296 184)" + "id" "48503" + "plane" "(1152 -80 128) (1088 -80 128) (1088 -128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62116" - "plane" "(560 -2304 198) (576 -2304 200) (576 -2304 184)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[-0.990345 0.0623783 -0.123793 174.243] 0.25" - "vaxis" "[-0.124035 0 0.992278 67.4609] 0.25" + "id" "48502" + "plane" "(1088 -128 128) (1088 -80 128) (1088 -80 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" "62115" - "plane" "(576 -2304 200) (576 -2296 200) (576 -2296 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "48501" + "plane" "(1152 -128 128) (1088 -128 128) (1088 -128 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79971,10 +82174,10 @@ world } side { - "id" "62114" - "plane" "(560 -2296 198) (560 -2304 198) (560 -2304 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "48500" + "plane" "(1088 -80 128) (1152 -80 128) (1152 -80 320)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -79982,76 +82185,75 @@ world } side { - "id" "62113" - "plane" "(560 -2296 198) (576 -2296 200) (576 -2304 200)" + "id" "48499" + "plane" "(1152 -80 128) (1152 -128 128) (1152 -128 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177657" + "id" "97460" side { - "id" "62124" - "plane" "(560 -2304 182) (560 -2296 182) (544 -2296 176)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48516" + "plane" "(1088 -80 128) (1088 -64 128) (1152 -64 128)" + "material" "RYAN_DEV/DEV_BROWN4" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62123" - "plane" "(544 -2296 176) (544 -2296 192) (544 -2304 192)" + "id" "48515" + "plane" "(1088 -64 64) (1088 -80 64) (1152 -80 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62122" - "plane" "(560 -2296 198) (544 -2296 192) (544 -2296 176)" + "id" "48514" + "plane" "(1088 -80 64) (1088 -64 64) (1088 -64 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62121" - "plane" "(544 -2304 176) (544 -2304 192) (560 -2304 198)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[-0.920292 0.184289 -0.345109 127.132] 0.25" - "vaxis" "[-0.351123 0 0.936329 104.867] 0.25" + "id" "48513" + "plane" "(1152 -64 64) (1152 -80 64) (1152 -80 128)" + "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" "62120" - "plane" "(560 -2304 182) (560 -2304 198) (560 -2296 198)" + "id" "48512" + "plane" "(1088 -64 64) (1152 -64 64) (1152 -64 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80059,65 +82261,64 @@ world } side { - "id" "62119" - "plane" "(560 -2296 198) (560 -2304 198) (544 -2304 192)" + "id" "48511" + "plane" "(1152 -80 64) (1088 -80 64) (1088 -80 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "0 119 112" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177658" + "id" "95284" side { - "id" "62130" - "plane" "(560 -2296 208) (560 -2304 208) (544 -2304 208)" + "id" "47694" + "plane" "(1664 48 320) (1664 64 320) (1728 64 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62129" - "plane" "(544 -2304 192) (544 -2296 192) (544 -2296 208)" + "id" "47693" + "plane" "(1664 64 128) (1664 48 128) (1728 48 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62128" - "plane" "(544 -2296 208) (544 -2296 192) (560 -2296 198)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "47692" + "plane" "(1728 64 128) (1728 48 128) (1728 48 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62127" - "plane" "(560 -2304 198) (544 -2304 192) (544 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[-1 0 0 0] 0.25" + "id" "47691" + "plane" "(1664 48 128) (1664 64 128) (1664 64 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 96] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80125,10 +82326,10 @@ world } side { - "id" "62126" - "plane" "(560 -2296 198) (560 -2304 198) (560 -2304 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "47690" + "plane" "(1728 48 128) (1664 48 128) (1664 48 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80136,54 +82337,53 @@ world } side { - "id" "62125" - "plane" "(560 -2304 198) (560 -2296 198) (544 -2296 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "47689" + "plane" "(1664 64 128) (1728 64 128) (1728 64 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177659" + "id" "95286" side { - "id" "62136" - "plane" "(560 -2296 208) (576 -2296 208) (576 -2304 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "47706" + "plane" "(1664 -32 160) (1664 48 160) (1728 48 160)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62135" - "plane" "(560 -2296 198) (576 -2296 200) (576 -2296 208)" + "id" "47705" + "plane" "(1664 48 128) (1664 -32 128) (1728 -32 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62134" - "plane" "(560 -2304 198) (560 -2304 208) (576 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[-1 0 0 0] 0.25" + "id" "47704" + "plane" "(1728 48 128) (1728 -32 128) (1728 -32 160)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80191,10 +82391,10 @@ world } side { - "id" "62133" - "plane" "(576 -2304 200) (576 -2304 208) (576 -2296 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "47703" + "plane" "(1664 -32 128) (1664 48 128) (1664 48 160)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80202,10 +82402,10 @@ world } side { - "id" "62132" - "plane" "(560 -2296 198) (560 -2296 208) (560 -2304 208)" + "id" "47702" + "plane" "(1728 -32 128) (1664 -32 128) (1664 -32 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80213,54 +82413,53 @@ world } side { - "id" "62131" - "plane" "(560 -2304 198) (576 -2304 200) (576 -2296 200)" + "id" "47701" + "plane" "(1664 48 128) (1728 48 128) (1728 48 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177762" + "id" "95290" side { - "id" "62142" - "plane" "(544 -2288 240) (608 -2288 240) (608 -2296 240)" + "id" "47718" + "plane" "(1664 -32 320) (1664 48 320) (1728 48 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62141" - "plane" "(608 -2296 116) (608 -2296 240) (608 -2288 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "47717" + "plane" "(1664 48 240) (1664 -32 240) (1728 -32 240)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62140" - "plane" "(608 -2288 116) (608 -2288 240) (544 -2288 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "47716" + "plane" "(1728 48 240) (1728 -32 240) (1728 -32 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80268,32 +82467,32 @@ world } side { - "id" "62139" - "plane" "(544 -2296 240) (608 -2296 240) (608 -2296 116)" - "material" "TEROUST/ARPEGGIO/WOOD/SHUTTERS" - "uaxis" "[1 0 0 -128] 0.25" - "vaxis" "[0 0 -1 455] 0.25" + "id" "47715" + "plane" "(1664 -32 240) (1664 48 240) (1664 48 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62138" - "plane" "(544 -2296 116) (608 -2296 116) (608 -2288 116)" + "id" "47714" + "plane" "(1728 -32 240) (1664 -32 240) (1664 -32 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62137" - "plane" "(544 -2288 116) (544 -2288 240) (544 -2296 240)" + "id" "47713" + "plane" "(1664 48 240) (1728 48 240) (1728 48 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80301,43 +82500,42 @@ world } editor { - "color" "0 246 183" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177974" + "id" "95292" side { - "id" "62196" - "plane" "(452 -2304 208) (452 -2288 208) (466 -2288 208)" + "id" "47730" + "plane" "(1666 -32 240) (1666 48 240) (1668 48 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62195" - "plane" "(452 -2288 192) (452 -2288 208) (452 -2304 208)" + "id" "47729" + "plane" "(1666 48 160) (1666 -32 160) (1668 -32 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62194" - "plane" "(466 -2288 198) (466 -2288 208) (452 -2288 208)" + "id" "47728" + "plane" "(1668 48 160) (1668 -32 160) (1668 -32 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80345,10 +82543,10 @@ world } side { - "id" "62193" - "plane" "(452 -2304 208) (466 -2304 208) (466 -2304 198)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 0] 0.25" + "id" "47727" + "plane" "(1666 -32 160) (1666 48 160) (1666 48 240)" + "material" "WOOD/HOUSEBEAMS01" + "uaxis" "[0 -1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80356,10 +82554,10 @@ world } side { - "id" "62192" - "plane" "(466 -2304 198) (466 -2304 208) (466 -2288 208)" + "id" "47726" + "plane" "(1668 -32 160) (1666 -32 160) (1666 -32 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80367,54 +82565,53 @@ world } side { - "id" "62191" - "plane" "(452 -2288 192) (452 -2304 192) (466 -2304 198)" + "id" "47725" + "plane" "(1666 48 160) (1668 48 160) (1668 48 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 172 137" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177975" + "id" "95296" side { - "id" "62202" - "plane" "(452 -2296 176) (452 -2304 176) (466 -2304 182)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 127] 0.25" - "vaxis" "[0 -1 0 105] 0.25" + "id" "47742" + "plane" "(1724 -32 240) (1724 48 240) (1726 48 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 40] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62201" - "plane" "(452 -2304 176) (452 -2296 176) (452 -2296 192)" + "id" "47741" + "plane" "(1724 48 160) (1724 -32 160) (1726 -32 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 40] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62200" - "plane" "(452 -2296 176) (466 -2296 182) (466 -2296 198)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "47740" + "plane" "(1726 48 160) (1726 -32 160) (1726 -32 240)" + "material" "WOOD/HOUSEBEAMS01" + "uaxis" "[0 -1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80422,21 +82619,21 @@ world } side { - "id" "62199" - "plane" "(466 -2304 198) (466 -2304 182) (452 -2304 176)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0.962651 -0.124035 0.240663 -127.973] 0.25" - "vaxis" "[-0.242536 0 0.970142 81.5986] 0.25" + "id" "47739" + "plane" "(1724 -32 160) (1724 48 160) (1724 48 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62198" - "plane" "(466 -2296 182) (466 -2304 182) (466 -2304 198)" + "id" "47738" + "plane" "(1726 -32 160) (1724 -32 160) (1724 -32 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -40] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80444,32 +82641,31 @@ world } side { - "id" "62197" - "plane" "(452 -2304 192) (452 -2296 192) (466 -2296 198)" + "id" "47737" + "plane" "(1724 48 160) (1726 48 160) (1726 48 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 172 137" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177988" + "id" "95641" side { - "id" "62208" - "plane" "(466 -2288 208) (480 -2288 208) (480 -2304 208)" + "id" "48192" + "plane" "(366.4 -1424 0) (302.4 -1424 0) (309.6 -1400 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -38.3999] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80477,21 +82673,21 @@ world } side { - "id" "62207" - "plane" "(480 -2288 200) (480 -2288 208) (466 -2288 208)" - "material" "TOOLS/TOOLSNODRAW" + "id" "48191" + "plane" "(309.6 -1400 -40) (302.4 -1424 -64) (366.4 -1424 -64)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62206" - "plane" "(466 -2304 208) (480 -2304 208) (480 -2304 200)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 0] 0.25" + "id" "48190" + "plane" "(373.6 -1400 -40) (366.4 -1424 -64) (366.4 -1424 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.287348 0.957826 0 -5.63589] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80499,10 +82695,10 @@ world } side { - "id" "62205" - "plane" "(480 -2304 200) (480 -2304 208) (480 -2288 208)" + "id" "48189" + "plane" "(302.4 -1424 0) (366.4 -1424 0) (366.4 -1424 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80510,10 +82706,10 @@ world } side { - "id" "62204" - "plane" "(466 -2288 198) (466 -2288 208) (466 -2304 208)" + "id" "48188" + "plane" "(373.6 -1400 0) (309.6 -1400 0) (309.6 -1400 -40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80521,65 +82717,65 @@ world } side { - "id" "62203" - "plane" "(466 -2304 198) (480 -2304 200) (480 -2288 200)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48187" + "plane" "(309.6 -1400 0) (302.4 -1424 0) (302.4 -1424 -64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 172 137" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95488" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177989" + "id" "95642" side { - "id" "62214" - "plane" "(466 -2304 182) (480 -2304 184) (480 -2296 184)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 127] 0.25" - "vaxis" "[0 -1 0 105] 0.25" + "id" "48198" + "plane" "(390.399 -1344 0) (326.4 -1344 0) (333.6 -1320 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -38.3999] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62213" - "plane" "(466 -2296 182) (480 -2296 184) (480 -2296 200)" - "material" "TOOLS/TOOLSNODRAW" + "id" "48197" + "plane" "(397.6 -1320 -40) (333.6 -1320 -40) (326.4 -1344 -32)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62212" - "plane" "(480 -2304 200) (480 -2304 184) (466 -2304 182)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0.995682 -0.0416305 0.0829735 -174.458] 0.25" - "vaxis" "[-0.0830455 0 0.996546 37.6729] 0.25" + "id" "48196" + "plane" "(390.399 -1344 0) (397.6 -1320 0) (397.6 -1320 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.287348 0.957826 0 -5.63589] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62211" - "plane" "(480 -2296 184) (480 -2304 184) (480 -2304 200)" + "id" "48195" + "plane" "(326.4 -1344 0) (390.399 -1344 0) (390.4 -1344 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80587,10 +82783,10 @@ world } side { - "id" "62210" - "plane" "(466 -2304 182) (466 -2296 182) (466 -2296 198)" + "id" "48194" + "plane" "(397.6 -1320 0) (333.6 -1320 0) (333.6 -1320 -40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80598,65 +82794,65 @@ world } side { - "id" "62209" - "plane" "(466 -2296 198) (480 -2296 200) (480 -2304 200)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48193" + "plane" "(326.4 -1344 -32) (333.6 -1320 -40) (333.6 -1320 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 172 137" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95488" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177994" + "id" "95643" side { - "id" "62244" - "plane" "(494 -2296 182) (480 -2296 184) (480 -2304 184)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[-1 0 0 255] 0.25" - "vaxis" "[0 -1 0 105] 0.25" + "id" "48204" + "plane" "(373.6 -1400 0) (309.6 -1400 0) (316.8 -1376 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -38.3999] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62243" - "plane" "(494 -2296 198) (480 -2296 200) (480 -2296 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48203" + "plane" "(380.798 -1376 -32) (316.8 -1376 -32) (309.6 -1400 -40)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62242" - "plane" "(494 -2304 198) (494 -2304 182) (480 -2304 184)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[-0.995682 -0.0416305 0.0829735 183.942] 0.25" - "vaxis" "[0.0830455 0 0.996546 -14.5919] 0.25" + "id" "48202" + "plane" "(380.798 -1376 -32) (373.6 -1400 -40) (373.6 -1400 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.287348 0.957826 0 -5.63589] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62241" - "plane" "(480 -2296 200) (480 -2304 200) (480 -2304 184)" + "id" "48201" + "plane" "(380.8 -1376 0) (316.8 -1376 0) (316.8 -1376 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80664,10 +82860,10 @@ world } side { - "id" "62240" - "plane" "(494 -2304 198) (494 -2296 198) (494 -2296 182)" + "id" "48200" + "plane" "(309.6 -1400 0) (373.6 -1400 0) (373.6 -1400 -40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80675,54 +82871,54 @@ world } side { - "id" "62239" - "plane" "(494 -2304 198) (480 -2304 200) (480 -2296 200)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48199" + "plane" "(316.8 -1376 0) (309.6 -1400 0) (309.6 -1400 -40)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 172 137" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95488" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177995" + "id" "95644" side { - "id" "62250" - "plane" "(494 -2296 182) (494 -2304 182) (508 -2304 176)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[-1 0 0 255] 0.25" - "vaxis" "[0 -1 0 105] 0.25" + "id" "48210" + "plane" "(397.6 -1320 0) (333.6 -1320 0) (340.8 -1296 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -38.3999] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62249" - "plane" "(508 -2304 192) (508 -2296 192) (508 -2296 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48209" + "plane" "(404.8 -1296 -64) (340.8 -1296 -64) (333.6 -1320 -40)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62248" - "plane" "(508 -2296 192) (494 -2296 198) (494 -2296 182)" + "id" "48208" + "plane" "(397.6 -1320 0) (404.801 -1296 0) (404.8 -1296 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0.287348 0.957826 0 -5.63589] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80730,21 +82926,21 @@ world } side { - "id" "62247" - "plane" "(508 -2304 192) (508 -2304 176) (494 -2304 182)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[-0.962651 -0.124035 0.240663 37.6738] 0.25" - "vaxis" "[0.242536 0 0.970142 -50.6936] 0.25" + "id" "48207" + "plane" "(404.801 -1296 0) (340.8 -1296 0) (340.8 -1296 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12.7999] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62246" - "plane" "(494 -2296 198) (494 -2304 198) (494 -2304 182)" + "id" "48206" + "plane" "(333.6 -1320 0) (397.6 -1320 0) (397.6 -1320 -40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80752,32 +82948,32 @@ world } side { - "id" "62245" - "plane" "(494 -2304 198) (494 -2296 198) (508 -2296 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48205" + "plane" "(333.6 -1320 -40) (340.8 -1296 -64) (340.8 -1296 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 172 137" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95488" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177996" + "id" "95645" side { - "id" "62256" - "plane" "(494 -2304 208) (494 -2288 208) (508 -2288 208)" + "id" "48216" + "plane" "(404.8 -1296 0) (340.8 -1296 0) (345.6 -1280 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 -38.3999] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80785,21 +82981,21 @@ world } side { - "id" "62255" - "plane" "(508 -2304 192) (508 -2304 208) (508 -2288 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48215" + "plane" "(409.6 -1280 -128) (345.6 -1280 -128) (340.8 -1296 -64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62254" - "plane" "(508 -2288 192) (508 -2288 208) (494 -2288 208)" + "id" "48214" + "plane" "(404.8 -1296 0) (409.6 -1280 0) (409.6 -1280 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0.287348 0.957826 0 -5.63589] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80807,10 +83003,10 @@ world } side { - "id" "62253" - "plane" "(508 -2304 192) (494 -2304 198) (494 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[-1 0 0 128] 0.25" + "id" "48213" + "plane" "(409.6 -1280 0) (345.6 -1280 0) (345.6 -1280 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80818,10 +83014,10 @@ world } side { - "id" "62252" - "plane" "(494 -2288 198) (494 -2288 208) (494 -2304 208)" + "id" "48212" + "plane" "(340.8 -1296 0) (404.8 -1296 0) (404.8 -1296 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80829,32 +83025,32 @@ world } side { - "id" "62251" - "plane" "(494 -2288 198) (494 -2304 198) (508 -2304 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48211" + "plane" "(340.8 -1296 -64) (345.6 -1280 -128) (345.6 -1280 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 172 137" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95488" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177997" + "id" "95646" side { - "id" "62262" - "plane" "(494 -2304 208) (480 -2304 208) (480 -2288 208)" + "id" "48222" + "plane" "(352 -1472 0) (288 -1472 0) (302.4 -1424 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 -38.3999] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80862,21 +83058,21 @@ world } side { - "id" "62261" - "plane" "(494 -2288 198) (494 -2288 208) (480 -2288 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48221" + "plane" "(302.4 -1424 -64) (288 -1472 -128) (352 -1472 -128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62260" - "plane" "(494 -2304 198) (480 -2304 200) (480 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[-1 0 0 128] 0.25" + "id" "48220" + "plane" "(366.4 -1424 -64) (352 -1472 -128) (352 -1472 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.287348 0.957826 0 -5.63589] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80884,10 +83080,10 @@ world } side { - "id" "62259" - "plane" "(480 -2288 200) (480 -2288 208) (480 -2304 208)" + "id" "48219" + "plane" "(288 -1472 0) (352 -1472 0) (352 -1472 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80895,10 +83091,10 @@ world } side { - "id" "62258" - "plane" "(494 -2304 198) (494 -2304 208) (494 -2288 208)" + "id" "48218" + "plane" "(366.4 -1424 0) (302.4 -1424 0) (302.4 -1424 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80906,54 +83102,54 @@ world } side { - "id" "62257" - "plane" "(494 -2288 198) (480 -2288 200) (480 -2304 200)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48217" + "plane" "(302.4 -1424 0) (288 -1472 0) (288 -1472 -128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 172 137" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95488" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "178018" + "id" "95647" side { - "id" "62340" - "plane" "(416 -2296 240) (352 -2296 240) (352 -2288 240)" + "id" "48228" + "plane" "(380.799 -1376 0) (316.8 -1376 0) (326.4 -1344 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 -38.3999] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62339" - "plane" "(352 -2288 116) (352 -2288 240) (352 -2296 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48227" + "plane" "(390.398 -1344 -32) (326.4 -1344 -32) (316.8 -1376 -32)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62338" - "plane" "(416 -2288 116) (416 -2288 240) (352 -2288 240)" + "id" "48226" + "plane" "(380.799 -1376 0) (390.399 -1344 0) (390.398 -1344 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0.287348 0.957826 0 -5.63589] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80961,32 +83157,32 @@ world } side { - "id" "62337" - "plane" "(416 -2296 116) (352 -2296 116) (352 -2296 240)" - "material" "TEROUST/ARPEGGIO/WOOD/SHUTTERS" - "uaxis" "[-1 0 0 128] 0.25" - "vaxis" "[0 0 -1 455] 0.25" + "id" "48225" + "plane" "(316.8 -1376 0) (380.799 -1376 0) (380.798 -1376 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12.7999] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62336" - "plane" "(416 -2288 116) (352 -2288 116) (352 -2296 116)" + "id" "48224" + "plane" "(390.399 -1344 0) (326.4 -1344 0) (326.4 -1344 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62335" - "plane" "(416 -2296 116) (416 -2296 240) (416 -2288 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "id" "48223" + "plane" "(326.4 -1344 0) (316.8 -1376 0) (316.8 -1376 -32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -80994,21 +83190,21 @@ world } editor { - "color" "0 246 183" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95488" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "178019" + "id" "95664" side { - "id" "62346" - "plane" "(416 -2304 176) (416 -2296 176) (400 -2296 182)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 0] 0.25" + "id" "48276" + "plane" "(421.6 -1240 0) (414.4 -1264 0) (350.4 -1264 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 25.6001] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81016,43 +83212,43 @@ world } side { - "id" "62345" - "plane" "(416 -2304 176) (416 -2304 192) (416 -2296 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "48275" + "plane" "(421.6 -1240 -40) (357.6 -1240 -40) (350.4 -1264 -64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62344" - "plane" "(400 -2296 182) (416 -2296 176) (416 -2296 192)" + "id" "48274" + "plane" "(421.6 -1240 0) (421.6 -1240 -40) (414.4 -1264 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0.287348 0.957826 0 -33.8155] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62343" - "plane" "(400 -2304 182) (400 -2304 198) (416 -2304 192)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0.920292 0.184289 -0.345109 -78.7883] 0.25" - "vaxis" "[0.351123 0 0.936329 -219.447] 0.25" + "id" "48273" + "plane" "(350.4 -1264 -64) (350.4 -1264 0) (414.4 -1264 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12.7999] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62342" - "plane" "(400 -2296 182) (400 -2296 198) (400 -2304 198)" + "id" "48272" + "plane" "(421.6 -1240 -40) (421.6 -1240 0) (357.6 -1240 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81060,32 +83256,32 @@ world } side { - "id" "62341" - "plane" "(416 -2296 192) (416 -2304 192) (400 -2304 198)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48271" + "plane" "(357.6 -1240 -40) (357.6 -1240 0) (350.4 -1264 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95663" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "178020" + "id" "95665" side { - "id" "62352" - "plane" "(400 -2296 182) (384 -2296 184) (384 -2304 184)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 0] 0.25" + "id" "48282" + "plane" "(445.6 -1160 0) (438.399 -1184 0) (374.4 -1184 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 25.6001] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81093,32 +83289,32 @@ world } side { - "id" "62351" - "plane" "(384 -2296 200) (384 -2296 184) (400 -2296 182)" - "material" "TOOLS/TOOLSNODRAW" + "id" "48281" + "plane" "(438.4 -1184 -32) (445.6 -1160 -40) (381.6 -1160 -40)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62350" - "plane" "(400 -2304 182) (384 -2304 184) (384 -2304 200)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0.990345 0.0623783 -0.123793 -44.6833] 0.25" - "vaxis" "[0.124035 0 0.992278 -152.832] 0.25" + "id" "48280" + "plane" "(438.4 -1184 -32) (438.399 -1184 0) (445.6 -1160 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.287348 0.957826 0 -33.8155] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62349" - "plane" "(384 -2304 184) (384 -2296 184) (384 -2296 200)" + "id" "48279" + "plane" "(374.4 -1184 -32) (374.4 -1184 0) (438.399 -1184 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81126,10 +83322,10 @@ world } side { - "id" "62348" - "plane" "(400 -2296 182) (400 -2304 182) (400 -2304 198)" + "id" "48278" + "plane" "(445.6 -1160 -40) (445.6 -1160 0) (381.6 -1160 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81137,32 +83333,32 @@ world } side { - "id" "62347" - "plane" "(400 -2304 198) (384 -2304 200) (384 -2296 200)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48277" + "plane" "(374.4 -1184 0) (374.4 -1184 -32) (381.6 -1160 -40)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95663" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "178021" + "id" "95666" side { - "id" "62358" - "plane" "(368 -2304 182) (384 -2304 184) (384 -2296 184)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[-1 0 0 0] 0.25" + "id" "48288" + "plane" "(428.8 -1216 0) (421.6 -1240 0) (357.6 -1240 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 25.6001] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81170,32 +83366,32 @@ world } side { - "id" "62357" - "plane" "(368 -2296 198) (368 -2296 182) (384 -2296 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "48287" + "plane" "(421.6 -1240 -40) (428.798 -1216 -32) (364.8 -1216 -32)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62356" - "plane" "(368 -2304 198) (384 -2304 200) (384 -2304 184)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[-0.990345 0.0623783 -0.123793 208.061] 0.25" - "vaxis" "[-0.124035 0 0.992278 228.202] 0.25" + "id" "48286" + "plane" "(428.8 -1216 0) (428.798 -1216 -32) (421.6 -1240 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.287348 0.957826 0 -33.8155] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62355" - "plane" "(384 -2304 200) (384 -2296 200) (384 -2296 184)" + "id" "48285" + "plane" "(428.798 -1216 -32) (428.8 -1216 0) (364.8 -1216 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81203,10 +83399,10 @@ world } side { - "id" "62354" - "plane" "(368 -2296 198) (368 -2304 198) (368 -2304 182)" + "id" "48284" + "plane" "(357.6 -1240 -40) (357.6 -1240 0) (421.6 -1240 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81214,32 +83410,32 @@ world } side { - "id" "62353" - "plane" "(368 -2296 198) (384 -2296 200) (384 -2304 200)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48283" + "plane" "(364.8 -1216 -32) (364.8 -1216 0) (357.6 -1240 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95663" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "178022" + "id" "95667" side { - "id" "62364" - "plane" "(368 -2304 182) (368 -2296 182) (352 -2296 176)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[-1 0 0 0] 0.25" + "id" "48294" + "plane" "(452.801 -1136 0) (445.6 -1160 0) (381.6 -1160 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 25.6001] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81247,43 +83443,43 @@ world } side { - "id" "62363" - "plane" "(352 -2296 176) (352 -2296 192) (352 -2304 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "48293" + "plane" "(445.6 -1160 -40) (452.8 -1136 -64) (388.8 -1136 -64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62362" - "plane" "(368 -2296 198) (352 -2296 192) (352 -2296 176)" + "id" "48292" + "plane" "(445.6 -1160 -40) (445.6 -1160 0) (452.801 -1136 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0.287348 0.957826 0 -33.8155] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62361" - "plane" "(352 -2304 176) (352 -2304 192) (368 -2304 198)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[-0.920292 0.184289 -0.345109 133.161] 0.25" - "vaxis" "[-0.351123 0 0.936329 91.2046] 0.25" + "id" "48291" + "plane" "(452.8 -1136 -64) (452.801 -1136 0) (388.8 -1136 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12.7999] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62360" - "plane" "(368 -2304 182) (368 -2304 198) (368 -2296 198)" + "id" "48290" + "plane" "(381.6 -1160 -40) (381.6 -1160 0) (445.6 -1160 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81291,32 +83487,32 @@ world } side { - "id" "62359" - "plane" "(368 -2296 198) (368 -2304 198) (352 -2304 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48289" + "plane" "(381.6 -1160 0) (381.6 -1160 -40) (388.8 -1136 -64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95663" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "178023" + "id" "95668" side { - "id" "62370" - "plane" "(368 -2296 208) (368 -2304 208) (352 -2304 208)" + "id" "48300" + "plane" "(457.6 -1120 0) (452.8 -1136 0) (388.8 -1136 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 25.6001] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81324,32 +83520,32 @@ world } side { - "id" "62369" - "plane" "(352 -2304 192) (352 -2296 192) (352 -2296 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "48299" + "plane" "(452.8 -1136 -64) (457.6 -1120 -128) (393.6 -1120 -128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62368" - "plane" "(352 -2296 208) (352 -2296 192) (368 -2296 198)" + "id" "48298" + "plane" "(452.8 -1136 -64) (452.8 -1136 0) (457.6 -1120 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0.287348 0.957826 0 -33.8155] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62367" - "plane" "(368 -2304 198) (352 -2304 192) (352 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[-1 0 0 256] 0.25" + "id" "48297" + "plane" "(457.6 -1120 -128) (457.6 -1120 0) (393.6 -1120 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81357,10 +83553,10 @@ world } side { - "id" "62366" - "plane" "(368 -2296 198) (368 -2304 198) (368 -2304 208)" + "id" "48296" + "plane" "(388.8 -1136 -64) (388.8 -1136 0) (452.8 -1136 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81368,32 +83564,32 @@ world } side { - "id" "62365" - "plane" "(368 -2304 198) (368 -2296 198) (352 -2296 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48295" + "plane" "(388.8 -1136 0) (388.8 -1136 -64) (393.6 -1120 -128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95663" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "178024" + "id" "95669" side { - "id" "62376" - "plane" "(368 -2296 208) (384 -2296 208) (384 -2304 208)" + "id" "48306" + "plane" "(414.4 -1264 0) (409.6 -1280 0) (345.6 -1280 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 25.6001] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81401,21 +83597,21 @@ world } side { - "id" "62375" - "plane" "(368 -2296 198) (384 -2296 200) (384 -2296 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "48305" + "plane" "(414.4 -1264 -64) (350.4 -1264 -64) (345.6 -1280 -128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62374" - "plane" "(368 -2304 198) (368 -2304 208) (384 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[-1 0 0 256] 0.25" + "id" "48304" + "plane" "(414.4 -1264 0) (414.4 -1264 -64) (409.6 -1280 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.287348 0.957826 0 -33.8155] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81423,10 +83619,10 @@ world } side { - "id" "62373" - "plane" "(384 -2304 200) (384 -2304 208) (384 -2296 208)" + "id" "48303" + "plane" "(345.6 -1280 -128) (345.6 -1280 0) (409.6 -1280 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81434,10 +83630,10 @@ world } side { - "id" "62372" - "plane" "(368 -2296 198) (368 -2296 208) (368 -2304 208)" + "id" "48302" + "plane" "(414.4 -1264 -64) (414.4 -1264 0) (350.4 -1264 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81445,32 +83641,32 @@ world } side { - "id" "62371" - "plane" "(368 -2304 198) (384 -2304 200) (384 -2296 200)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48301" + "plane" "(350.4 -1264 -64) (350.4 -1264 0) (345.6 -1280 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95663" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "178025" + "id" "95670" side { - "id" "62382" - "plane" "(400 -2304 208) (384 -2304 208) (384 -2296 208)" + "id" "48312" + "plane" "(438.399 -1184 0) (428.799 -1216 0) (364.8 -1216 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 25.6001] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81478,21 +83674,21 @@ world } side { - "id" "62381" - "plane" "(400 -2296 208) (384 -2296 208) (384 -2296 200)" - "material" "TOOLS/TOOLSNODRAW" + "id" "48311" + "plane" "(428.798 -1216 -32) (438.398 -1184 -32) (374.4 -1184 -32)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62380" - "plane" "(384 -2304 200) (384 -2304 208) (400 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 -256] 0.25" + "id" "48310" + "plane" "(428.798 -1216 -32) (428.799 -1216 0) (438.399 -1184 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.287348 0.957826 0 -33.8155] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81500,10 +83696,10 @@ world } side { - "id" "62379" - "plane" "(384 -2296 200) (384 -2296 208) (384 -2304 208)" + "id" "48309" + "plane" "(364.8 -1216 -32) (364.8 -1216 0) (428.799 -1216 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81511,10 +83707,10 @@ world } side { - "id" "62378" - "plane" "(400 -2304 198) (400 -2304 208) (400 -2296 208)" + "id" "48308" + "plane" "(438.398 -1184 -32) (438.399 -1184 0) (374.4 -1184 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -12.7999] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81522,32 +83718,32 @@ world } side { - "id" "62377" - "plane" "(400 -2296 198) (384 -2296 200) (384 -2304 200)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48307" + "plane" "(374.4 -1184 -32) (374.4 -1184 0) (364.8 -1216 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95663" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "178026" + "id" "95680" side { - "id" "62388" - "plane" "(416 -2296 208) (416 -2304 208) (400 -2304 208)" + "id" "48360" + "plane" "(462.4 -1104 0) (398.4 -1104 0) (405.6 -1080 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 25.6001] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81555,32 +83751,32 @@ world } side { - "id" "62387" - "plane" "(416 -2304 208) (416 -2296 208) (416 -2296 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "48359" + "plane" "(405.6 -1080 -40) (398.4 -1104 -64) (462.4 -1104 -64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62386" - "plane" "(400 -2296 208) (400 -2296 198) (416 -2296 192)" + "id" "48358" + "plane" "(469.6 -1080 -40) (462.4 -1104 -64) (462.4 -1104 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0.287348 0.957826 0 2.00494] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62385" - "plane" "(400 -2304 208) (416 -2304 208) (416 -2304 192)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 -256] 0.25" + "id" "48357" + "plane" "(398.4 -1104 0) (462.4 -1104 0) (462.4 -1104 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 51.2001] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81588,10 +83784,10 @@ world } side { - "id" "62384" - "plane" "(400 -2296 208) (400 -2304 208) (400 -2304 198)" + "id" "48356" + "plane" "(469.6 -1080 0) (405.6 -1080 0) (405.6 -1080 -40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 51.2001] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81599,32 +83795,32 @@ world } side { - "id" "62383" - "plane" "(416 -2304 192) (416 -2296 192) (400 -2296 198)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48355" + "plane" "(405.6 -1080 0) (398.4 -1104 0) (398.4 -1104 -64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 111" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95679" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "178027" + "id" "95681" side { - "id" "62394" - "plane" "(256 -2304 208) (256 -2296 208) (352 -2296 208)" + "id" "48366" + "plane" "(486.399 -1024 0) (422.4 -1024 0) (429.6 -1000 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 25.6001] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81632,21 +83828,21 @@ world } side { - "id" "62393" - "plane" "(352 -2304 112) (352 -2304 208) (352 -2296 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 -1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48365" + "plane" "(493.6 -1000 -40) (429.6 -1000 -40) (422.4 -1024 -32)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62392" - "plane" "(256 -2296 112) (256 -2296 208) (256 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" + "id" "48364" + "plane" "(486.399 -1024 0) (493.6 -1000 0) (493.6 -1000 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.287348 0.957826 0 2.00494] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81654,10 +83850,10 @@ world } side { - "id" "62391" - "plane" "(352 -2296 112) (352 -2296 208) (256 -2296 208)" + "id" "48363" + "plane" "(422.4 -1024 0) (486.399 -1024 0) (486.4 -1024 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 51.2001] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81665,10 +83861,10 @@ world } side { - "id" "62390" - "plane" "(256 -2304 112) (256 -2304 208) (352 -2304 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[-1 0 0 256] 0.25" + "id" "48362" + "plane" "(493.6 -1000 0) (429.6 -1000 0) (429.6 -1000 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 51.2001] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81676,76 +83872,76 @@ world } side { - "id" "62389" - "plane" "(256 -2296 112) (256 -2304 112) (352 -2304 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "48361" + "plane" "(422.4 -1024 -32) (429.6 -1000 -40) (429.6 -1000 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 102 255" - "visgroupid" "18" + "color" "124 149 0" + "groupid" "95679" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "178055" + "id" "95682" side { - "id" "62406" - "plane" "(352 -2308 116) (352 -2296 116) (416 -2296 116)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 -116.314] 0.123" + "id" "48372" + "plane" "(469.6 -1080 0) (405.6 -1080 0) (412.8 -1056 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 25.6001] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62405" - "plane" "(352 -2296 112) (352 -2308 112) (416 -2308 112)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 1 0 36.1348] 0.123" + "id" "48371" + "plane" "(476.798 -1056 -32) (412.8 -1056 -32) (405.6 -1080 -40)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62404" - "plane" "(352 -2308 112) (352 -2296 112) (352 -2296 116)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[0 -1 0 -384] 0.25" - "vaxis" "[0 0 -1 135] 0.123" + "id" "48370" + "plane" "(476.798 -1056 -32) (469.6 -1080 -40) (469.6 -1080 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.287348 0.957826 0 2.00494] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62403" - "plane" "(416 -2296 112) (416 -2308 112) (416 -2308 116)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[0 1 0 384] 0.25" - "vaxis" "[0 0 -1 135] 0.123" + "id" "48369" + "plane" "(476.8 -1056 0) (412.8 -1056 0) (412.8 -1056 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 51.2001] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62402" - "plane" "(352 -2296 112) (416 -2296 112) (416 -2296 116)" + "id" "48368" + "plane" "(405.6 -1080 0) (469.6 -1080 0) (469.6 -1080 -40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 51.2001] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81753,31 +83949,32 @@ world } side { - "id" "62401" - "plane" "(416 -2308 112) (352 -2308 112) (352 -2308 116)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 0 -1 135] 0.123" + "id" "48367" + "plane" "(412.8 -1056 0) (405.6 -1080 0) (405.6 -1080 -40)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 237" + "color" "124 149 0" + "groupid" "95679" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "178176" + "id" "95683" side { - "id" "62407" - "plane" "(128 -952 96) (192 -952 96) (192 -960 96)" + "id" "48378" + "plane" "(493.6 -1000 0) (429.6 -1000 0) (436.8 -976 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 25.6001] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81785,9 +83982,9 @@ world } side { - "id" "62408" - "plane" "(128 -960 72) (192 -960 72) (192 -952 72)" - "material" "TOOLS/TOOLSNODRAW" + "id" "48377" + "plane" "(500.8 -976 -64) (436.8 -976 -64) (429.6 -1000 -40)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -81796,10 +83993,10 @@ world } side { - "id" "62409" - "plane" "(128 -952 96) (128 -960 96) (128 -960 72)" + "id" "48376" + "plane" "(493.6 -1000 0) (500.801 -976 0) (500.8 -976 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.287348 0.957826 0 2.00494] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81807,10 +84004,10 @@ world } side { - "id" "62410" - "plane" "(192 -952 72) (192 -960 72) (192 -960 96)" + "id" "48375" + "plane" "(500.801 -976 0) (436.8 -976 0) (436.8 -976 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 51.2001] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81818,10 +84015,10 @@ world } side { - "id" "62411" - "plane" "(192 -952 96) (128 -952 96) (128 -952 72)" + "id" "48374" + "plane" "(429.6 -1000 0) (493.6 -1000 0) (493.6 -1000 -40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 51.2001] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81829,10 +84026,10 @@ world } side { - "id" "62412" - "plane" "(192 -960 72) (128 -960 72) (128 -960 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "48373" + "plane" "(429.6 -1000 -40) (436.8 -976 -64) (436.8 -976 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81840,20 +84037,21 @@ world } editor { - "color" "0 148 153" + "color" "124 149 0" + "groupid" "95679" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "178178" + "id" "95684" side { - "id" "62424" - "plane" "(128 -952 248) (192 -952 248) (192 -960 248)" + "id" "48384" + "plane" "(500.8 -976 0) (436.8 -976 0) (456 -912 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 25.6001] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -81861,9 +84059,9 @@ world } side { - "id" "62423" - "plane" "(128 -960 240) (192 -960 240) (192 -952 240)" - "material" "TOOLS/TOOLSNODRAW" + "id" "48383" + "plane" "(520 -912 -128) (456 -912 -128) (436.8 -976 -64)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -81872,163 +84070,175 @@ world } side { - "id" "62422" - "plane" "(128 -952 248) (128 -960 248) (128 -960 240)" + "id" "48382" + "plane" "(500.8 -976 0) (520 -912 0) (520 -912 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0.287348 0.957826 0 2.00494] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62421" - "plane" "(192 -952 240) (192 -960 240) (192 -960 248)" + "id" "48381" + "plane" "(520 -912 0) (456 -912 0) (456 -912 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 51.2001] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62420" - "plane" "(192 -952 248) (128 -952 248) (128 -952 240)" + "id" "48380" + "plane" "(436.8 -976 0) (500.8 -976 0) (500.8 -976 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 51.2001] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62419" - "plane" "(192 -960 240) (128 -960 240) (128 -960 248)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 160] 0.25" + "id" "48379" + "plane" "(436.8 -976 -64) (456 -912 -128) (456 -912 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 148 153" + "color" "124 149 0" + "groupid" "95679" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174544" + "id" "95685" side { - "id" "60963" - "plane" "(328 -692 372) (328 -940 372) (440 -940 372)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "48390" + "plane" "(457.6 -1120 0) (393.6 -1120 0) (398.4 -1104 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 25.6001] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48389" + "plane" "(398.4 -1104 -64) (393.6 -1120 -128) (457.6 -1120 -128)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 144] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60962" - "plane" "(328 -940 372) (328 -692 372) (384 -816 434.333)" - "material" "WOOD/MILROOF001" - "uaxis" "[0 1 0 -193] 0.25" - "vaxis" "[1 0 0 -293] 0.25" - "rotation" "90" + "id" "48388" + "plane" "(462.4 -1104 -64) (457.6 -1120 -128) (457.6 -1120 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.287348 0.957826 0 2.00494] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60961" - "plane" "(384 -816 434.333) (440 -692 372) (440 -940 372)" - "material" "WOOD/MILROOF001" - "uaxis" "[0 1 0 -193] 0.25" - "vaxis" "[1 0 0 -293] 0.25" - "rotation" "90" + "id" "48387" + "plane" "(393.6 -1120 0) (457.6 -1120 0) (457.6 -1120 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 51.2001] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60960" - "plane" "(440 -940 372) (328 -940 372) (384 -816 434.333)" - "material" "WOOD/MILROOF001" - "uaxis" "[1 0 0 -145] 0.25" - "vaxis" "[0 -1 0 -245] 0.25" + "id" "48386" + "plane" "(462.4 -1104 0) (398.4 -1104 0) (398.4 -1104 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 51.2001] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60959" - "plane" "(384 -816 434.333) (328 -692 372) (440 -692 372)" - "material" "WOOD/MILROOF001" - "uaxis" "[1 0 0 -145] 0.25" - "vaxis" "[0 -1 0 -245] 0.25" + "id" "48385" + "plane" "(398.4 -1104 0) (393.6 -1120 0) (393.6 -1120 -128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "201 138 0" - "groupid" "245243" + "color" "124 149 0" + "groupid" "95679" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174676" + "id" "95686" side { - "id" "61080" - "plane" "(332 -940 372) (328 -940 372) (328 -940 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "48396" + "plane" "(476.799 -1056 0) (412.8 -1056 0) (422.4 -1024 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 25.6001] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61079" - "plane" "(384 -816 434.333) (328 -940 372) (332 -940 372)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "48395" + "plane" "(486.398 -1024 -32) (422.4 -1024 -32) (412.8 -1056 -32)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61078" - "plane" "(332 -940 377.667) (328 -940 377.667) (384 -816 440)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "48394" + "plane" "(476.799 -1056 0) (486.399 -1024 0) (486.398 -1024 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.287348 0.957826 0 2.00494] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61077" - "plane" "(328 -940 377.667) (328 -940 372) (384 -816 434.333)" + "id" "48393" + "plane" "(412.8 -1056 0) (476.799 -1056 0) (476.798 -1056 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 51.2001] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82036,10 +84246,10 @@ world } side { - "id" "61076" - "plane" "(384 -824.857 429.881) (332 -940 372) (332 -940 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "48392" + "plane" "(486.399 -1024 0) (422.4 -1024 0) (422.4 -1024 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 51.2001] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82047,10 +84257,10 @@ world } side { - "id" "61075" - "plane" "(384 -816 434.333) (384 -824.857 429.881) (384 -824.857 435.548)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "id" "48391" + "plane" "(422.4 -1024 0) (412.8 -1056 0) (412.8 -1056 -32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82058,307 +84268,293 @@ world } editor { - "color" "201 138 0" - "groupid" "245243" + "color" "124 149 0" + "groupid" "95679" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174679" + "id" "95943" side { - "id" "61086" - "plane" "(328 -940 372) (328 -931.143 372) (328 -931.143 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "48408" + "plane" "(1792 -256 320) (1792 -512 320) (2240 -512 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61085" - "plane" "(380 -816 429.884) (328 -931.143 372) (328 -940 372)" + "id" "48407" + "plane" "(1792 -512 384) (1792 -256 384) (2240 -256 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 48] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61084" - "plane" "(384 -816 440) (328 -940 377.667) (328 -931.143 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 48] 0.25" + "id" "48406" + "plane" "(2240 -256 320) (2240 -512 320) (2240 -512 384)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61083" - "plane" "(384 -816 434.333) (328 -940 372) (328 -940 377.667)" + "id" "48405" + "plane" "(1792 -512 320) (1792 -256 320) (1792 -256 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61082" - "plane" "(328 -931.143 377.667) (328 -931.143 372) (380 -816 429.882)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48404" + "plane" "(1792 -256 320) (2240 -256 320) (2240 -256 384)" + "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" "61081" - "plane" "(380 -816 429.882) (384 -816 434.333) (384 -816 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48403" + "plane" "(2240 -512 320) (1792 -512 320) (1792 -512 384)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "201 138 0" - "groupid" "245243" + "color" "0 119 112" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174682" + "id" "95948" side { - "id" "61104" - "plane" "(440 -692 372) (440 -700.857 372) (440 -700.857 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "48420" + "plane" "(2240 -256 320) (2240 -192 320) (1984 -192 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61103" - "plane" "(388 -816 429.879) (440 -700.857 372) (440 -692 372)" + "id" "48419" + "plane" "(2240 -192 384) (2240 -256 384) (1984 -256 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61102" - "plane" "(384 -816 440) (440 -692 377.667) (440 -700.857 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -48] 0.25" + "id" "48418" + "plane" "(2240 -256 384) (2240 -192 384) (2240 -192 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61101" - "plane" "(384 -816 434.333) (440 -692 372) (440 -692 377.667)" + "id" "48417" + "plane" "(1984 -192 384) (1984 -256 384) (1984 -256 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61100" - "plane" "(440 -700.857 377.667) (440 -700.857 372) (388 -816 429.882)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "48416" + "plane" "(2240 -192 384) (1984 -192 384) (1984 -192 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61099" - "plane" "(388 -816 429.882) (384 -816 434.333) (384 -816 440)" + "id" "48415" + "plane" "(1984 -256 384) (2240 -256 384) (2240 -256 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "201 138 0" - "groupid" "245243" + "color" "0 119 112" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174683" + "id" "91625" side { - "id" "61110" - "plane" "(436 -692 372) (440 -692 372) (440 -692 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "46882" + "plane" "(896 -1472 264) (1024 -1472 264) (960 -1536 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61109" - "plane" "(440 -692 372) (436 -692 372) (384 -807.143 429.882)" + "id" "46881" + "plane" "(896 -1536 384) (960 -1536 384) (960 -1536 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61108" - "plane" "(384 -807.143 435.54) (436 -692 377.667) (440 -692 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "46880" + "plane" "(896 -1536 264) (896 -1472 264) (896 -1536 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61107" - "plane" "(440 -692 377.667) (440 -692 372) (384 -816 434.333)" + "id" "46879" + "plane" "(896 -1536 264) (960 -1536 264) (1024 -1472 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61106" - "plane" "(384 -807.143 429.879) (436 -692 372) (436 -692 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" + "id" "46878" + "plane" "(960 -1536 264) (960 -1536 384) (1024 -1472 264)" + "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 + editor { - "id" "61105" - "plane" "(384 -816 434.333) (384 -807.143 429.885) (384 -807.143 435.548)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "201 138 0" - "groupid" "245243" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174690" + "id" "91627" side { - "id" "61140" - "plane" "(440 -940 372) (436 -940 372) (436 -940 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "46894" + "plane" "(1032 -1464 264) (1000 -1496 264) (896 -1496 264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -58.3842] 0.25" + "vaxis" "[-0.707107 -0.707107 0 21.0985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61139" - "plane" "(384 -824.857 429.884) (436 -940 372) (440 -940 372)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "46893" + "plane" "(1024 -1472 256) (1032 -1464 264) (896 -1464 264)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.707107 0.707107 0 -21.0985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61138" - "plane" "(440 -940 377.667) (436 -940 377.667) (384 -824.857 435.545)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "46892" + "plane" "(1000 -1496 264) (1000 -1496 256) (896 -1496 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -21.0985] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61137" - "plane" "(384 -816 434.333) (440 -940 372) (440 -940 377.667)" + "id" "46891" + "plane" "(896 -1496 256) (896 -1472 256) (896 -1464 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.707107 -0.707107 0 -58.3842] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61136" - "plane" "(436 -940 377.667) (436 -940 372) (384 -824.857 429.882)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "46890" + "plane" "(1000 -1496 256) (1024 -1472 256) (896 -1472 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -58.3842] 0.25" + "vaxis" "[-0.707107 -0.707107 0 21.0985] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61135" - "plane" "(384 -824.857 429.882) (384 -816 434.333) (384 -816 440)" + "id" "46889" + "plane" "(1000 -1496 256) (1000 -1496 264) (1032 -1464 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 -58.3842] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82366,54 +84562,53 @@ world } editor { - "color" "201 138 0" - "groupid" "245243" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174691" + "id" "91690" side { - "id" "61146" - "plane" "(440 -931.143 372) (440 -940 372) (440 -940 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "46906" + "plane" "(1456 -1280 280) (1456 -896 280) (1472 -896 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61145" - "plane" "(384 -816 434.333) (440 -940 372) (440 -931.143 372)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 48] 0.25" + "id" "46905" + "plane" "(1448 -896 256) (1448 -1280 256) (1480 -1280 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -15] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61144" - "plane" "(388 -816 435.551) (440 -931.143 377.667) (440 -940 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 48] 0.25" + "id" "46904" + "plane" "(1448 -1280 256) (1448 -896 256) (1456 -896 280)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61143" - "plane" "(440 -940 377.667) (440 -940 372) (384 -816 434.333)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "id" "46903" + "plane" "(1480 -896 256) (1480 -1280 256) (1472 -1280 280)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -15] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82421,10 +84616,10 @@ world } side { - "id" "61142" - "plane" "(388 -816 429.881) (440 -931.143 372) (440 -931.143 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 -48] 0.25" + "id" "46902" + "plane" "(1480 -1280 256) (1448 -1280 256) (1456 -1280 280)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -15] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82432,10 +84627,10 @@ world } side { - "id" "61141" - "plane" "(384 -816 434.333) (388 -816 429.881) (388 -816 435.548)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "46901" + "plane" "(1448 -896 256) (1480 -896 256) (1472 -896 280)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -15] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82443,54 +84638,53 @@ world } editor { - "color" "201 138 0" - "groupid" "245243" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174692" + "id" "91798" side { - "id" "61152" - "plane" "(328 -692 372) (332 -692 372) (332 -692 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47044" + "plane" "(-768 -2432 256) (-768 -2368 256) (-480 -2368 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61151" - "plane" "(332 -692 372) (328 -692 372) (384 -816 434.333)" + "id" "47043" + "plane" "(-768 -2368 0) (-768 -2432 0) (-480 -2432 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61150" - "plane" "(384 -816 440) (328 -692 377.667) (332 -692 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "47042" + "plane" "(-768 -2432 0) (-768 -2368 0) (-768 -2368 256)" + "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" "61149" - "plane" "(384 -816 434.333) (328 -692 372) (328 -692 377.667)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "47041" + "plane" "(-480 -2368 0) (-480 -2432 0) (-480 -2432 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82498,9 +84692,9 @@ world } side { - "id" "61148" - "plane" "(332 -692 377.667) (332 -692 372) (384 -807.143 429.885)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47040" + "plane" "(-768 -2368 0) (-480 -2368 0) (-480 -2368 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -82509,10 +84703,10 @@ world } side { - "id" "61147" - "plane" "(384 -807.143 429.879) (384 -816 434.333) (384 -816 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" + "id" "47039" + "plane" "(-480 -2432 0) (-768 -2432 0) (-768 -2432 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82520,54 +84714,53 @@ world } editor { - "color" "201 138 0" - "groupid" "245243" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174693" + "id" "91806" side { - "id" "61158" - "plane" "(328 -700.857 372) (328 -692 372) (328 -692 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "47050" + "plane" "(-544 -2368 0) (-480 -2368 0) (-480 -1952 0)" + "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" "61157" - "plane" "(384 -816 434.333) (328 -692 372) (328 -700.857 372)" + "id" "47049" + "plane" "(-544 -2368 0) (-544 -1952 0) (-544 -1952 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61156" - "plane" "(380 -816 435.54) (328 -700.857 377.667) (328 -692 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -48] 0.25" + "id" "47048" + "plane" "(-480 -1952 0) (-480 -2368 0) (-480 -2368 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61155" - "plane" "(328 -692 377.667) (328 -692 372) (384 -816 434.333)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 48] 0.25" + "id" "47047" + "plane" "(-544 -1952 0) (-480 -1952 0) (-480 -1952 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82575,10 +84768,10 @@ world } side { - "id" "61154" - "plane" "(380 -816 429.876) (328 -700.857 372) (328 -700.857 377.667)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 48] 0.25" + "id" "47046" + "plane" "(-480 -2368 0) (-544 -2368 0) (-544 -2368 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82586,32 +84779,31 @@ world } side { - "id" "61153" - "plane" "(384 -816 434.333) (380 -816 429.881) (380 -816 435.548)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47045" + "plane" "(-544 -1952 96) (-480 -1952 96) (-480 -2368 96)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "201 138 0" - "groupid" "245243" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174721" + "id" "91807" side { - "id" "61170" - "plane" "(408 -956 368) (408 -928 368) (416 -928 368)" + "id" "47056" + "plane" "(-544 -1952 256) (-480 -1952 256) (-480 -2368 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82619,8 +84811,8 @@ world } side { - "id" "61169" - "plane" "(408 -928 336) (408 -928 368) (408 -956 368)" + "id" "47055" + "plane" "(-544 -1952 256) (-544 -2368 256) (-544 -2368 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -82630,9 +84822,9 @@ world } side { - "id" "61168" - "plane" "(416 -956 336) (416 -956 368) (416 -928 368)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47054" + "plane" "(-480 -2368 256) (-480 -1952 256) (-480 -1952 192)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -82641,10 +84833,10 @@ world } side { - "id" "61167" - "plane" "(416 -928 336) (416 -928 368) (408 -928 368)" + "id" "47053" + "plane" "(-480 -1952 256) (-544 -1952 256) (-544 -1952 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82652,21 +84844,21 @@ world } side { - "id" "61166" - "plane" "(408 -956 336) (408 -956 368) (416 -956 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "47052" + "plane" "(-544 -2368 256) (-480 -2368 256) (-480 -2368 192)" + "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" "61165" - "plane" "(408 -928 336) (408 -956 336) (416 -956 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" + "id" "47051" + "plane" "(-544 -2368 192) (-480 -2368 192) (-480 -1952 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82674,30 +84866,30 @@ world } editor { - "color" "0 253 174" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174722" + "id" "91812" side { - "id" "61182" - "plane" "(352 -960 368) (352 -928 368) (360 -928 368)" + "id" "47068" + "plane" "(-544 -2176 96) (-544 -2240 96) (-480 -2240 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61181" - "plane" "(352 -928 336) (352 -928 368) (352 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47067" + "plane" "(-544 -2240 192) (-544 -2240 96) (-544 -2176 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -82706,9 +84898,9 @@ world } side { - "id" "61180" - "plane" "(360 -960 336) (360 -960 368) (360 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47066" + "plane" "(-480 -2176 192) (-480 -2176 96) (-480 -2240 96)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -82717,10 +84909,10 @@ world } side { - "id" "61179" - "plane" "(360 -928 336) (360 -928 368) (352 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "47065" + "plane" "(-544 -2176 192) (-544 -2176 96) (-480 -2176 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82728,9 +84920,9 @@ world } side { - "id" "61178" - "plane" "(352 -960 336) (352 -960 368) (360 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47064" + "plane" "(-480 -2240 192) (-480 -2240 96) (-544 -2240 96)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -82739,41 +84931,41 @@ world } side { - "id" "61177" - "plane" "(352 -928 336) (352 -960 336) (360 -960 336)" + "id" "47063" + "plane" "(-544 -2240 192) (-544 -2176 192) (-480 -2176 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174724" + "id" "91826" side { - "id" "61194" - "plane" "(368 -960 368) (368 -928 368) (376 -928 368)" + "id" "47080" + "plane" "(-544 -2080 96) (-480 -2080 96) (-480 -1952 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61193" - "plane" "(368 -928 336) (368 -928 368) (368 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47079" + "plane" "(-544 -2080 96) (-544 -1952 96) (-544 -1952 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -82782,9 +84974,9 @@ world } side { - "id" "61192" - "plane" "(376 -960 336) (376 -960 368) (376 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47078" + "plane" "(-480 -1952 96) (-480 -2080 96) (-480 -2080 192)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -82793,10 +84985,10 @@ world } side { - "id" "61191" - "plane" "(376 -928 336) (376 -928 368) (368 -928 368)" + "id" "47077" + "plane" "(-544 -1952 96) (-480 -1952 96) (-480 -1952 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82804,9 +84996,9 @@ world } side { - "id" "61190" - "plane" "(368 -960 336) (368 -960 368) (376 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47076" + "plane" "(-480 -2080 96) (-544 -2080 96) (-544 -2080 192)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -82815,41 +85007,41 @@ world } side { - "id" "61189" - "plane" "(368 -928 336) (368 -960 336) (376 -960 336)" + "id" "47075" + "plane" "(-544 -1952 192) (-480 -1952 192) (-480 -2080 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174725" + "id" "91828" side { - "id" "61206" - "plane" "(384 -960 368) (384 -928 368) (392 -928 368)" + "id" "47092" + "plane" "(-544 -2336 96) (-544 -2368 96) (-480 -2368 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61205" - "plane" "(384 -928 336) (384 -928 368) (384 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47091" + "plane" "(-544 -2368 192) (-544 -2368 96) (-544 -2336 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -82858,9 +85050,9 @@ world } side { - "id" "61204" - "plane" "(392 -960 336) (392 -960 368) (392 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47090" + "plane" "(-480 -2336 192) (-480 -2336 96) (-480 -2368 96)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -82869,10 +85061,10 @@ world } side { - "id" "61203" - "plane" "(392 -928 336) (392 -928 368) (384 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "47089" + "plane" "(-544 -2336 192) (-544 -2336 96) (-480 -2336 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82880,9 +85072,9 @@ world } side { - "id" "61202" - "plane" "(384 -960 336) (384 -960 368) (392 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47088" + "plane" "(-480 -2368 192) (-480 -2368 96) (-544 -2368 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -82891,41 +85083,41 @@ world } side { - "id" "61201" - "plane" "(384 -928 336) (384 -960 336) (392 -960 336)" + "id" "47087" + "plane" "(-544 -2368 192) (-544 -2336 192) (-480 -2336 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174726" + "id" "91829" side { - "id" "61218" - "plane" "(400 -960 368) (400 -928 368) (408 -928 368)" + "id" "47104" + "plane" "(-544 -2240 96) (-544 -2336 96) (-496 -2336 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61217" - "plane" "(400 -928 336) (400 -928 368) (400 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47103" + "plane" "(-544 -2336 192) (-544 -2336 96) (-544 -2240 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -82934,9 +85126,9 @@ world } side { - "id" "61216" - "plane" "(408 -960 336) (408 -960 368) (408 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47102" + "plane" "(-496 -2240 192) (-496 -2240 96) (-496 -2336 96)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -82945,10 +85137,10 @@ world } side { - "id" "61215" - "plane" "(408 -928 336) (408 -928 368) (400 -928 368)" + "id" "47101" + "plane" "(-544 -2240 192) (-544 -2240 96) (-496 -2240 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82956,9 +85148,9 @@ world } side { - "id" "61214" - "plane" "(400 -960 336) (400 -960 368) (408 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47100" + "plane" "(-496 -2336 192) (-496 -2336 96) (-544 -2336 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -82967,31 +85159,31 @@ world } side { - "id" "61213" - "plane" "(400 -928 336) (400 -960 336) (408 -960 336)" + "id" "47099" + "plane" "(-544 -2336 192) (-544 -2240 192) (-496 -2240 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174727" + "id" "91831" side { - "id" "61230" - "plane" "(392 -956 368) (392 -928 368) (400 -928 368)" + "id" "47116" + "plane" "(-544 -2080 96) (-544 -2176 96) (-496 -2176 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82999,8 +85191,8 @@ world } side { - "id" "61229" - "plane" "(392 -928 336) (392 -928 368) (392 -956 368)" + "id" "47115" + "plane" "(-544 -2176 192) (-544 -2176 96) (-544 -2080 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -83010,9 +85202,9 @@ world } side { - "id" "61228" - "plane" "(400 -956 336) (400 -956 368) (400 -928 368)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47114" + "plane" "(-496 -2080 192) (-496 -2080 96) (-496 -2176 96)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -83021,10 +85213,10 @@ world } side { - "id" "61227" - "plane" "(400 -928 336) (400 -928 368) (392 -928 368)" + "id" "47113" + "plane" "(-544 -2080 192) (-544 -2080 96) (-496 -2080 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83032,21 +85224,21 @@ world } side { - "id" "61226" - "plane" "(392 -956 336) (392 -956 368) (400 -956 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "47112" + "plane" "(-496 -2176 192) (-496 -2176 96) (-544 -2176 96)" + "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" "61225" - "plane" "(392 -928 336) (392 -956 336) (400 -956 336)" + "id" "47111" + "plane" "(-544 -2176 192) (-544 -2080 192) (-496 -2080 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83054,31 +85246,31 @@ world } editor { - "color" "0 253 174" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174728" + "id" "91845" side { - "id" "61242" - "plane" "(376 -956 368) (376 -928 368) (384 -928 368)" + "id" "47128" + "plane" "(-496 -2124 96) (-496 -2132 96) (-492 -2132 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61241" - "plane" "(376 -928 336) (376 -928 368) (376 -956 368)" + "id" "47127" + "plane" "(-496 -2132 192) (-496 -2132 96) (-496 -2124 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83086,9 +85278,9 @@ world } side { - "id" "61240" - "plane" "(384 -956 336) (384 -956 368) (384 -928 368)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47126" + "plane" "(-492 -2124 192) (-492 -2124 96) (-492 -2132 96)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -83097,10 +85289,10 @@ world } side { - "id" "61239" - "plane" "(384 -928 336) (384 -928 368) (376 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "47125" + "plane" "(-496 -2124 192) (-496 -2124 96) (-492 -2124 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83108,53 +85300,53 @@ world } side { - "id" "61238" - "plane" "(376 -956 336) (376 -956 368) (384 -956 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "47124" + "plane" "(-492 -2132 192) (-492 -2132 96) (-496 -2132 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61237" - "plane" "(376 -928 336) (376 -956 336) (384 -956 336)" + "id" "47123" + "plane" "(-496 -2132 192) (-496 -2124 192) (-492 -2124 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174729" + "id" "91848" side { - "id" "61254" - "plane" "(360 -956 368) (360 -928 368) (368 -928 368)" + "id" "47140" + "plane" "(-496 -2284 96) (-496 -2292 96) (-492 -2292 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61253" - "plane" "(360 -928 336) (360 -928 368) (360 -956 368)" + "id" "47139" + "plane" "(-496 -2292 192) (-496 -2292 96) (-496 -2284 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83162,9 +85354,9 @@ world } side { - "id" "61252" - "plane" "(368 -956 336) (368 -956 368) (368 -928 368)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47138" + "plane" "(-492 -2284 192) (-492 -2284 96) (-492 -2292 96)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -83173,10 +85365,10 @@ world } side { - "id" "61251" - "plane" "(368 -928 336) (368 -928 368) (360 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "47137" + "plane" "(-496 -2284 192) (-496 -2284 96) (-492 -2284 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83184,42 +85376,42 @@ world } side { - "id" "61250" - "plane" "(360 -956 336) (360 -956 368) (368 -956 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "47136" + "plane" "(-492 -2292 192) (-492 -2292 96) (-496 -2292 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61249" - "plane" "(360 -928 336) (360 -956 336) (368 -956 336)" + "id" "47135" + "plane" "(-496 -2292 192) (-496 -2284 192) (-492 -2284 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174813" + "id" "91850" side { - "id" "61266" - "plane" "(424 -956 368) (424 -928 368) (432 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" + "id" "47152" + "plane" "(-480 -2176 96) (-480 -2080 96) (-476 -2080 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83227,20 +85419,20 @@ world } side { - "id" "61265" - "plane" "(424 -928 336) (424 -928 368) (424 -956 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "47151" + "plane" "(-476 -2176 92) (-476 -2080 92) (-480 -2080 88)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61264" - "plane" "(432 -956 336) (432 -956 368) (432 -928 368)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47150" + "plane" "(-476 -2080 92) (-476 -2176 92) (-476 -2176 96)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -83249,10 +85441,10 @@ world } side { - "id" "61263" - "plane" "(432 -928 336) (432 -928 368) (424 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" + "id" "47149" + "plane" "(-480 -2080 88) (-476 -2080 92) (-476 -2080 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83260,42 +85452,43 @@ world } side { - "id" "61262" - "plane" "(424 -956 336) (424 -956 368) (432 -956 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 -128] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "47148" + "plane" "(-480 -2176 88) (-480 -2080 88) (-480 -2080 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61261" - "plane" "(424 -928 336) (424 -956 336) (432 -956 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "47147" + "plane" "(-480 -2176 96) (-476 -2176 96) (-476 -2176 92)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 164 221" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174815" + "id" "91853" side { - "id" "61278" - "plane" "(328 -956 368) (328 -928 368) (336 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "47164" + "plane" "(-480 -2336 96) (-480 -2240 96) (-476 -2240 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83303,20 +85496,20 @@ world } side { - "id" "61277" - "plane" "(328 -928 336) (328 -928 368) (328 -956 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "47163" + "plane" "(-476 -2336 92) (-476 -2240 92) (-480 -2240 88)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61276" - "plane" "(336 -956 336) (336 -956 368) (336 -928 368)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47162" + "plane" "(-476 -2240 92) (-476 -2336 92) (-476 -2336 96)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -83325,10 +85518,10 @@ world } side { - "id" "61275" - "plane" "(336 -928 336) (336 -928 368) (328 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "47161" + "plane" "(-480 -2240 88) (-476 -2240 92) (-476 -2240 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83336,184 +85529,174 @@ world } side { - "id" "61274" - "plane" "(328 -956 336) (328 -956 368) (336 -956 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 128] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "47160" + "plane" "(-480 -2336 88) (-480 -2240 88) (-480 -2240 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61273" - "plane" "(328 -928 336) (328 -956 336) (336 -956 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "47159" + "plane" "(-480 -2336 96) (-476 -2336 96) (-476 -2336 92)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 164 221" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174816" + "id" "91865" side { - "id" "61290" - "plane" "(448 -964 368) (448 -928 368) (464 -928 368)" + "id" "47182" + "plane" "(704 -1896 264) (872 -1896 264) (904 -1928 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61289" - "plane" "(448 -928 64) (448 -928 368) (448 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "47181" + "plane" "(896 -1920 256) (704 -1920 256) (704 -1928 264)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61288" - "plane" "(464 -964 64) (464 -964 368) (464 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "47180" + "plane" "(872 -1896 264) (704 -1896 264) (704 -1896 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61287" - "plane" "(464 -928 64) (464 -928 368) (448 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 -96] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "47179" + "plane" "(872 -1896 264) (872 -1896 256) (896 -1920 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61286" - "plane" "(448 -964 64) (448 -964 368) (464 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 -64] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "47178" + "plane" "(704 -1920 256) (896 -1920 256) (872 -1896 256)" + "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" "61285" - "plane" "(448 -928 64) (448 -964 64) (464 -964 64)" + "id" "47177" + "plane" "(704 -1920 256) (704 -1896 256) (704 -1896 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "174909" - side - { - "id" "61318" - "plane" "(200 -960 64) (200 -980 64) (200 -984 68)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 320] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "91867" side { - "id" "61317" - "plane" "(200 -984 72) (200 -984 68) (120 -984 68)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 64] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "47194" + "plane" "(1000 -1496 264) (1032 -1464 264) (1032 -1800 264)" + "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" "61316" - "plane" "(120 -980 64) (200 -980 64) (200 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "47193" + "plane" "(1032 -1464 264) (1024 -1472 256) (1024 -1792 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61315" - "plane" "(200 -984 68) (200 -980 64) (120 -980 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 64] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "47192" + "plane" "(1000 -1496 256) (1000 -1496 264) (1000 -1768 264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61314" - "plane" "(120 -984 72) (120 -984 68) (120 -980 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 -1 0 -192] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "47191" + "plane" "(1032 -1464 264) (1000 -1496 264) (1000 -1496 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61313" - "plane" "(200 -960 72) (200 -984 72) (120 -984 72)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "47190" + "plane" "(1000 -1768 256) (1024 -1792 256) (1024 -1472 256)" + "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" "61312" - "plane" "(120 -960 72) (120 -960 64) (200 -960 64)" + "id" "47189" + "plane" "(1032 -1800 264) (1024 -1792 256) (1000 -1768 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83521,75 +85704,64 @@ world } editor { - "color" "0 221 114" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "170733" + "id" "91880" side { - "id" "58800" - "plane" "(48 -1776 80) (-48 -1776 64) (-48 -1760 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "47204" + "plane" "(1024 -1472 264) (1024 -1792 264) (960 -1728 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58799" - "plane" "(48 -1760 0) (-48 -1760 0) (-48 -1776 0)" + "id" "47203" + "plane" "(960 -1536 384) (960 -1728 384) (960 -1728 264)" "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" "58798" - "plane" "(48 -1776 0) (-48 -1776 0) (-48 -1776 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58797" - "plane" "(48 -1760 80) (-48 -1760 64) (-48 -1760 0)" - "material" "DEV/REFLECTIVITY_50B" + "id" "47202" + "plane" "(960 -1536 264) (1024 -1472 264) (960 -1536 384)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58796" - "plane" "(-48 -1776 0) (-48 -1760 0) (-48 -1760 64)" + "id" "47201" + "plane" "(1024 -1792 264) (1024 -1472 264) (960 -1536 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58795" - "plane" "(48 -1760 0) (48 -1776 0) (48 -1776 80)" + "id" "47200" + "plane" "(960 -1728 264) (960 -1728 384) (1024 -1792 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83598,98 +85770,84 @@ world editor { "color" "0 176 105" - "visgroupid" "23" - "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "170746" + "id" "91885" side { - "id" "58812" - "plane" "(-56 -1760 56) (-56 -1640 56) (-32 -1640 56)" - "material" "TEROUST/ARPEGGIO/COURTYARD/COURTYARD_MINITILES_LIGHT" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "47214" + "plane" "(896 -1920 264) (640 -1920 264) (704 -1856 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58811" - "plane" "(-56 -1640 48) (-56 -1640 56) (-56 -1760 56)" + "id" "47213" + "plane" "(832 -1856 384) (704 -1856 384) (704 -1856 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58810" - "plane" "(-32 -1760 48) (-32 -1760 56) (-32 -1640 56)" + "id" "47212" + "plane" "(832 -1856 264) (896 -1920 264) (832 -1856 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58809" - "plane" "(-32 -1640 48) (-32 -1640 56) (-56 -1640 56)" + "id" "47211" + "plane" "(640 -1920 264) (896 -1920 264) (832 -1856 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58808" - "plane" "(-56 -1760 48) (-56 -1760 56) (-32 -1760 56)" + "id" "47210" + "plane" "(704 -1856 264) (704 -1856 384) (640 -1920 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - side - { - "id" "58807" - "plane" "(-56 -1640 48) (-56 -1760 48) (-32 -1760 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } editor { "color" "0 176 105" - "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "170755" + "id" "91969" side { - "id" "58824" - "plane" "(-24 -1752 64) (-24 -1648 64) (72 -1648 64)" - "material" "TEROUST/ARPEGGIO/COURTYARD/COURTYARD_MINITILES_LIGHT" - "uaxis" "[1 0 0 -64] 0.25" + "id" "47232" + "plane" "(1472 -3584 -64) (1472 -2752 -64) (1984 -2752 -64)" + "material" "LIQUIDS/INFERNO_WATER" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83697,164 +85855,245 @@ world } side { - "id" "58823" - "plane" "(-24 -1648 56) (-24 -1648 64) (-24 -1752 64)" + "id" "47231" + "plane" "(1472 -2752 -128) (1472 -3584 -128) (1984 -3584 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 24] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58822" - "plane" "(72 -1752 56) (72 -1752 64) (72 -1648 64)" + "id" "47230" + "plane" "(1472 -3584 -128) (1472 -2752 -128) (1472 -2752 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58821" - "plane" "(72 -1648 56) (72 -1648 64) (-24 -1648 64)" + "id" "47229" + "plane" "(1984 -2752 -128) (1984 -3584 -128) (1984 -3584 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58820" - "plane" "(-24 -1752 56) (-24 -1752 64) (72 -1752 64)" + "id" "47228" + "plane" "(1472 -2752 -128) (1984 -2752 -128) (1984 -2752 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58819" - "plane" "(-24 -1648 56) (-24 -1752 56) (72 -1752 56)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -256] 0.25" - "vaxis" "[0 -1 0 256] 0.25" + "id" "47227" + "plane" "(1984 -3584 -128) (1472 -3584 -128) (1472 -3584 -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 176 105" - "visgroupid" "23" + "color" "0 173 158" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "170771" - side - { - "id" "58842" - "plane" "(-208 -1640 72) (-192 -1640 72) (-192 -1744 72)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -384] 0.25" - "vaxis" "[0 -1 0 -256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "92174" side { - "id" "58841" - "plane" "(-208 -1640 32) (-208 -1640 72) (-208 -1744 72)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "47286" + "plane" "(1024 -3264 -63) (1024 -2752 -63) (1472 -2752 -63)" + "material" "WATERSOURCE/RIVER/FOAM2" + "uaxis" "[0 1 0 311.79] 0.438" + "vaxis" "[1 0 0 -293] 0.438" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1024 -3264 -63]" + "flags" "14" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "1 0 0 1 0 0 0.984576 -0.174956 0 0.946704 -0.322105 0 0.916984 -0.398925 0 0.921367 -0.388694 0 0.889602 -0.456737 0 0.886408 -0.462905 0 0.936074 -0.351803 0" + "row1" "1 0 0 1 0 0 0.997666 -0.0682863 0 0.965942 -0.258759 0 0.929953 -0.36768 0 0.971373 -0.23756 0 0.986576 -0.163302 0 0.955378 -0.295387 0 0.969749 -0.244104 0" + "row2" "1 0 0 1 0 0 1 0 0 0.998533 -0.0541474 0 0.983698 -0.179827 0 0.995363 -0.0961856 0 0.99748 0.0709472 0 0.998866 0.0476028 0 0.990286 0.139044 0" + "row3" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999574 -0.0291707 0 0.999433 0.0336668 0 0.996098 0.0882552 0 0.988393 0.151917 0" + "row4" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.997023 0.0771024 0 0.974429 0.224697 0" + "row5" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.996184 0.0872739 0 0.983871 0.178881 0" + "row6" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.973241 0.229787 0 0.963715 0.266933 0" + "row7" "1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0.740951 0.671559 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0" + } + distances + { + "row0" "307.991 269.88 358.41 410.223 424.08 495.435 580.603 626.262 609.445" + "row1" "289.731 231.197 335.759 366.772 403.88 482.58 498.072 532.529 533.951" + "row2" "277.639 270.744 307.474 317.019 372.554 354.734 359.615 422.903 452.836" + "row3" "249.862 226.064 208.529 240.41 275.597 270.607 315.39 341.611 375.38" + "row4" "186.175 164.52 181.311 174.467 202.176 217.199 243.944 285.335 290.9" + "row5" "138.418 147.032 135.195 116.913 156.474 180.511 213.947 252.08 245.973" + "row6" "27.3528 56.3927 74.3483 58.4777 41.3984 35.3044 64.707 95.7408 164.835" + "row7" "1.87659 2.79553 1.87659 0 0 2.13928 7.22668 16.5547 65.5192" + "row8" "0 0 0 0 0 0 0 2.31946 1.68311" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "0 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "0 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "47285" + "plane" "(1024 -2752 -64) (1024 -3264 -64) (1472 -3264 -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" "58840" - "plane" "(-192 -1640 72) (-192 -1640 32) (-192 -1744 32)" - "material" "DEV/REFLECTIVITY_50B" + "id" "47284" + "plane" "(1024 -3264 -64) (1024 -2752 -64) (1024 -2752 -63)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58839" - "plane" "(-192 -1640 72) (-208 -1640 72) (-208 -1640 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "47283" + "plane" "(1472 -2752 -64) (1472 -3264 -64) (1472 -3264 -63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58838" - "plane" "(-208 -1744 32) (-192 -1744 32) (-192 -1640 32)" + "id" "47282" + "plane" "(1024 -2752 -64) (1472 -2752 -64) (1472 -2752 -63)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58837" - "plane" "(-208 -1744 72) (-192 -1744 72) (-192 -1744 32)" - "material" "DEV/GRAYGRID" + "id" "47281" + "plane" "(1472 -3264 -64) (1024 -3264 -64) (1024 -3264 -63)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" - "visgroupid" "23" + "color" "0 234 195" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "170772" + "id" "92656" side { - "id" "58848" - "plane" "(-208 -1744 72) (-192 -1744 72) (-192 -1776 56)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -384] 0.25" - "vaxis" "[0 -1 0 -320] 0.25" + "id" "47303" + "plane" "(1568 -2592 464) (1568 -2207.99 464) (1472 -2112 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 -0.046875] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58847" - "plane" "(-208 -1776 56) (-208 -1776 32) (-208 -1744 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "47302" + "plane" "(1472 -2112 464) (1567.99 -2207.99 464) (1568 -2208 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83862,9 +86101,9 @@ world } side { - "id" "58846" - "plane" "(-192 -1776 32) (-192 -1776 56) (-192 -1744 72)" - "material" "DEV/REFLECTIVITY_50B" + "id" "47301" + "plane" "(1568 -2208 576) (1567.99 -2207.99 464) (1568 -2592 464)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -83873,10 +86112,10 @@ world } side { - "id" "58845" - "plane" "(-208 -1776 56) (-192 -1776 56) (-192 -1776 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "47300" + "plane" "(1472 -2688 464) (1472 -2112 464) (1568 -2208 576)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83884,21 +86123,10 @@ world } side { - "id" "58844" - "plane" "(-208 -1776 32) (-192 -1776 32) (-192 -1744 32)" + "id" "47299" + "plane" "(1568.01 -2591.99 576.016) (1568 -2592 464) (1472 -2688 464)" "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" "58843" - "plane" "(-192 -1744 72) (-208 -1744 72) (-208 -1744 32)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83906,43 +86134,43 @@ world } editor { - "color" "0 176 105" - "visgroupid" "23" + "color" "0 251 148" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "170828" + "id" "92657" side { - "id" "58890" - "plane" "(128 896 0) (320 672 0) (384 736 0)" + "id" "47309" + "plane" "(1456.02 -2703.98 464) (1456.01 -2096.02 464) (1535.99 -2176 464)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" - "vaxis" "[0.707107 -0.707107 0 -26.7431] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0.046875] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58889" - "plane" "(320 672 64) (128 896 64) (138.981 943.529 64)" - "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" - "uaxis" "[0.707107 0.707107 0 0] 0.25" - "vaxis" "[0.707107 -0.707107 0 251.606] 0.25" + "id" "47308" + "plane" "(1536 -2624 448) (1536 -2175.99 448) (1472 -2112 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0.046875] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58888" - "plane" "(320 672 0) (128 896 0) (128 896 64)" + "id" "47307" + "plane" "(1472 -2112 448) (1535.99 -2175.99 448) (1535.99 -2176 464)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" + "uaxis" "[-1 0 0 -0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83950,10 +86178,10 @@ world } side { - "id" "58887" - "plane" "(138.981 943.529 0) (384 736 0) (384 736 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" + "id" "47306" + "plane" "(1472.01 -2687.99 448) (1472 -2112 448) (1456 -2096.02 464)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83961,21 +86189,21 @@ world } side { - "id" "58886" - "plane" "(384 736 0) (320 672 0) (320 672 64)" + "id" "47305" + "plane" "(1535.99 -2176 448) (1536 -2624 448) (1536 -2624 464)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58885" - "plane" "(128 896 0) (138.981 943.529 0) (138.981 943.529 64)" + "id" "47304" + "plane" "(1536 -2624 448) (1472.01 -2687.99 448) (1456.01 -2703.99 464)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83983,44 +86211,43 @@ world } editor { - "color" "220 220 220" - "groupid" "170827" - "visgroupid" "23" + "color" "0 111 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "170829" + "id" "92707" side { - "id" "58896" - "plane" "(138.981 943.529 0) (384 736 0) (436 820 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" - "vaxis" "[0.707107 -0.707107 0 -26.7431] 0.25" + "id" "47321" + "plane" "(1472 -3584 -128) (1472 -2752 -128) (1984 -2752 -128)" + "material" "RYAN_DEV/DEV_BLACK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58895" - "plane" "(384 736 64) (138.981 943.529 64) (150.294 977.47 64)" - "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" - "uaxis" "[0.512362 0.827662 0.229039 -114.424] 0.25" - "vaxis" "[0.850265 -0.526355 0 -500.419] 0.25" + "id" "47320" + "plane" "(1472 -2752 -192) (1472 -3584 -192) (1984 -3584 -192)" + "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" "58894" - "plane" "(384 736 0) (138.981 943.529 0) (138.981 943.529 64)" + "id" "47319" + "plane" "(1472 -3584 -192) (1472 -2752 -192) (1472 -2752 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84028,10 +86255,10 @@ world } side { - "id" "58893" - "plane" "(150.294 977.47 0) (436 820 0) (436 820 64)" + "id" "47318" + "plane" "(1984 -2752 -192) (1984 -3584 -192) (1984 -3584 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84039,21 +86266,21 @@ world } side { - "id" "58892" - "plane" "(436 820 0) (384 736 0) (384 736 64)" + "id" "47317" + "plane" "(1472 -2752 -192) (1984 -2752 -192) (1984 -2752 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58891" - "plane" "(138.981 943.529 0) (150.294 977.47 0) (150.294 977.47 64)" + "id" "47316" + "plane" "(1984 -3584 -192) (1472 -3584 -192) (1472 -3584 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84061,44 +86288,42 @@ world } editor { - "color" "220 220 220" - "groupid" "170827" - "visgroupid" "23" + "color" "0 173 158" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "170830" + "id" "92754" side { - "id" "58902" - "plane" "(150.294 977.47 0) (436 820 0) (472.735 903.931 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" - "vaxis" "[0.707107 -0.707107 0 -26.7431] 0.25" + "id" "47344" + "plane" "(-64 -1856 64) (-64 -2112 64) (-128 -2048 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58901" - "plane" "(436 820 64) (150.294 977.47 64) (172.922 1045.35 64)" - "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" - "uaxis" "[0.373412 0.853159 0.364257 9.66244] 0.25" - "vaxis" "[0.916096 -0.400959 0 -2.52637] 0.25" + "id" "47343" + "plane" "(-128 -2048 0) (-64 -2112 0) (-64 -1856 0)" + "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" "58900" - "plane" "(436 820 0) (150.294 977.47 0) (150.294 977.47 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" + "id" "47342" + "plane" "(-64 -1856 0) (-64 -2112 0) (-64 -2112 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84106,10 +86331,10 @@ world } side { - "id" "58899" - "plane" "(172.922 1045.35 0) (472.735 903.931 0) (472.735 903.931 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" + "id" "47341" + "plane" "(-64 -2112 0) (-128 -2048 0) (-128 -2048 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84117,21 +86342,21 @@ world } side { - "id" "58898" - "plane" "(472.735 903.931 0) (436 820 0) (436 820 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "47340" + "plane" "(-128 -1920 0) (-64 -1856 0) (-64 -1856 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58897" - "plane" "(150.294 977.47 0) (172.922 1045.35 0) (172.922 1045.35 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" + "id" "47339" + "plane" "(-128 -2048 0) (-128 -1920 0) (-128 -1920 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84139,55 +86364,42 @@ world } editor { - "color" "220 220 220" - "groupid" "170827" - "visgroupid" "23" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "170831" + "id" "92822" side { - "id" "58908" - "plane" "(172.922 1045.35 0) (472.735 903.931 0) (498.191 997.269 0)" + "id" "47418" + "plane" "(-120 -2056 176) (-128 -2048 176) (-112 -2048 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" - "vaxis" "[0.707107 -0.707107 0 -26.7431] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "58907" - "plane" "(472.735 903.931 64) (172.922 1045.35 64) (184.236 1079.29 64)" - "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" - "uaxis" "[0.228449 0.837649 0.496139 306.095] 0.25" - "vaxis" "[0.964764 -0.263117 0 -592.953] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58906" - "plane" "(472.735 903.931 0) (172.922 1045.35 0) (172.922 1045.35 64)" + "id" "47417" + "plane" "(-128 -2048 64) (-120 -2056 64) (-112 -2048 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58905" - "plane" "(184.236 1079.29 0) (498.191 997.269 0) (498.191 997.269 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" + "id" "47416" + "plane" "(-120 -2056 64) (-128 -2048 64) (-128 -2048 176)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84195,21 +86407,21 @@ world } side { - "id" "58904" - "plane" "(498.191 997.269 0) (472.735 903.931 0) (472.735 903.931 64)" + "id" "47415" + "plane" "(-128 -2048 64) (-112 -2048 64) (-112 -2048 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58903" - "plane" "(172.922 1045.35 0) (184.236 1079.29 0) (184.236 1079.29 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" + "id" "47414" + "plane" "(-112 -2048 64) (-120 -2056 64) (-120 -2056 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84217,44 +86429,42 @@ world } editor { - "color" "220 220 220" - "groupid" "170827" - "visgroupid" "23" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "170832" + "id" "92831" side { - "id" "58914" - "plane" "(184 1088 0) (184.236 1079.29 0) (498.191 997.269 0)" + "id" "47442" + "plane" "(-112 -2048 176) (-128 -2048 176) (-128 -2040 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" - "vaxis" "[0.707107 -0.707107 0 -26.7431] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58913" - "plane" "(512 1088 64) (498.191 997.269 64) (184.236 1079.29 64)" - "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" - "uaxis" "[0.121193 0.796282 0.592661 660.14] 0.25" - "vaxis" "[0.988615 -0.150466 0 -65.8572] 0.25" + "id" "47441" + "plane" "(-128 -2040 64) (-128 -2048 64) (-112 -2048 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" "58912" - "plane" "(498.191 997.269 64) (498.191 997.269 0) (184.236 1079.29 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" + "id" "47440" + "plane" "(-128 -2048 64) (-128 -2040 64) (-128 -2040 176)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84262,10 +86472,10 @@ world } side { - "id" "58911" - "plane" "(184 1088 64) (184 1088 0) (512 1088 0)" + "id" "47439" + "plane" "(-112 -2048 64) (-128 -2048 64) (-128 -2048 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84273,21 +86483,21 @@ world } side { - "id" "58910" - "plane" "(512 1088 64) (512 1088 0) (498.191 997.269 0)" + "id" "47438" + "plane" "(-112 -2040 64) (-112 -2048 64) (-112 -2048 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58909" - "plane" "(184.236 1079.29 64) (184.236 1079.29 0) (184 1088 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" + "id" "47437" + "plane" "(-128 -2040 64) (-112 -2040 64) (-112 -2040 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84295,44 +86505,42 @@ world } editor { - "color" "220 220 220" - "groupid" "170827" - "visgroupid" "23" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "170833" + "id" "92832" side { - "id" "58920" - "plane" "(512 1440 0) (128 1440 0) (128 1088 0)" + "id" "47448" + "plane" "(-128 -2040 176) (-128 -1928 176) (-112 -1928 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" - "vaxis" "[0.707107 -0.707107 0 -26.7431] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58919" - "plane" "(128 1440 64) (512 1440 64) (512 1088 64)" - "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" - "uaxis" "[0 0.707107 0.707107 243.135] 0.25" - "vaxis" "[1 0 0 -744] 0.25" + "id" "47447" + "plane" "(-128 -1928 168) (-128 -2040 168) (-112 -2040 168)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58918" - "plane" "(128 1088 64) (512 1088 64) (512 1088 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" + "id" "47446" + "plane" "(-128 -2040 168) (-128 -1928 168) (-128 -1928 176)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84340,10 +86548,10 @@ world } side { - "id" "58917" - "plane" "(512 1440 64) (128 1440 64) (128 1440 0)" + "id" "47445" + "plane" "(-112 -1928 168) (-112 -2040 168) (-112 -2040 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 26.7431] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84351,21 +86559,21 @@ world } side { - "id" "58916" - "plane" "(512 1088 64) (512 1440 64) (512 1440 0)" + "id" "47444" + "plane" "(-112 -2040 168) (-128 -2040 168) (-128 -2040 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58915" - "plane" "(128 1440 64) (128 1088 64) (128 1088 0)" + "id" "47443" + "plane" "(-128 -1928 168) (-112 -1928 168) (-112 -1928 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 30.9561] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84373,21 +86581,19 @@ world } editor { - "color" "220 220 220" - "groupid" "170827" - "visgroupid" "23" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "170952" + "id" "92833" side { - "id" "58932" - "plane" "(512 1280 68) (720 1072 68) (432 784 68)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "47454" + "plane" "(-128 -1928 176) (-128 -1920 176) (-112 -1920 176)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -84396,8 +86602,8 @@ world } side { - "id" "58931" - "plane" "(416 800 0) (432 784 0) (720 1072 0)" + "id" "47453" + "plane" "(-112 -1920 64) (-128 -1920 64) (-128 -1928 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -84407,9 +86613,9 @@ world } side { - "id" "58930" - "plane" "(512 1280 0) (512 1280 68) (416 800 68)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "47452" + "plane" "(-128 -1928 64) (-128 -1920 64) (-128 -1920 176)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -84418,10 +86624,10 @@ world } side { - "id" "58929" - "plane" "(432 784 0) (432 784 68) (720 1072 68)" + "id" "47451" + "plane" "(-128 -1920 64) (-112 -1920 64) (-112 -1920 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84429,10 +86635,10 @@ world } side { - "id" "58928" - "plane" "(720 1072 0) (720 1072 68) (512 1280 68)" + "id" "47450" + "plane" "(-112 -1920 64) (-112 -1928 64) (-112 -1928 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84440,30 +86646,29 @@ world } side { - "id" "58927" - "plane" "(416 800 0) (416 800 68) (432 784 68)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47449" + "plane" "(-112 -1928 64) (-128 -1928 64) (-128 -1928 176)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "170994" + "id" "92841" side { - "id" "58950" - "plane" "(-128 -960 -128) (448 -960 -128) (448 -928 -128)" + "id" "47459" + "plane" "(-128 -1920 176) (-120 -1912 176) (-112 -1920 176)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -84473,20 +86678,20 @@ world } side { - "id" "58949" - "plane" "(-128 -928 -128) (-128 -928 -64) (-128 -960 -64)" + "id" "47458" + "plane" "(-120 -1912 64) (-128 -1920 64) (-112 -1920 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58948" - "plane" "(448 -960 -128) (448 -960 -64) (448 -928 -64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47457" + "plane" "(-128 -1920 64) (-120 -1912 64) (-120 -1912 176)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -84495,8 +86700,8 @@ world } side { - "id" "58947" - "plane" "(448 -928 -128) (448 -928 -64) (-128 -928 -64)" + "id" "47456" + "plane" "(-112 -1920 64) (-128 -1920 64) (-128 -1920 176)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -84506,41 +86711,30 @@ world } side { - "id" "58946" - "plane" "(-128 -960 -128) (-128 -960 -64) (448 -960 -64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "47455" + "plane" "(-120 -1912 64) (-112 -1920 64) (-112 -1920 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - side - { - "id" "58945" - "plane" "(-128 -928 -64) (448 -928 -64) (448 -960 -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" - } editor { - "color" "0 243 128" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "170996" + "id" "92847" side { - "id" "58962" - "plane" "(-128 -964 -32) (-128 -928 -32) (448 -928 -32)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47471" + "plane" "(-112 -2048 176) (-64 -2096 176) (-72 -2104 176)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -84549,20 +86743,20 @@ world } side { - "id" "58961" - "plane" "(-128 -928 -64) (-128 -928 -32) (-128 -964 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "47470" + "plane" "(-120 -2056 168) (-72 -2104 168) (-64 -2096 168)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58960" - "plane" "(448 -964 -64) (448 -964 -32) (448 -928 -32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47469" + "plane" "(-72 -2104 168) (-120 -2056 168) (-120 -2056 176)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -84571,10 +86765,10 @@ world } side { - "id" "58959" - "plane" "(448 -928 -64) (448 -928 -32) (-128 -928 -32)" + "id" "47468" + "plane" "(-112 -2048 168) (-64 -2096 168) (-64 -2096 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84582,10 +86776,10 @@ world } side { - "id" "58958" - "plane" "(-128 -964 -64) (-128 -964 -32) (448 -964 -32)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "47467" + "plane" "(-120 -2056 168) (-112 -2048 168) (-112 -2048 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84593,29 +86787,29 @@ world } side { - "id" "58957" - "plane" "(-128 -928 -64) (-128 -964 -64) (448 -964 -64)" + "id" "47466" + "plane" "(-64 -2096 168) (-72 -2104 168) (-72 -2104 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171002" + "id" "92848" side { - "id" "58974" - "plane" "(120 -960 64) (120 -928 64) (128 -928 64)" + "id" "47476" + "plane" "(-64 -2096 176) (-64 -2112 176) (-72 -2104 176)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -84625,20 +86819,20 @@ world } side { - "id" "58973" - "plane" "(120 -928 -32) (120 -928 64) (120 -960 64)" + "id" "47475" + "plane" "(-72 -2104 64) (-64 -2112 64) (-64 -2096 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58972" - "plane" "(128 -960 -32) (128 -960 64) (128 -928 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47474" + "plane" "(-64 -2096 64) (-64 -2112 64) (-64 -2112 176)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -84647,10 +86841,10 @@ world } side { - "id" "58971" - "plane" "(128 -928 -32) (128 -928 64) (120 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "47473" + "plane" "(-64 -2112 64) (-72 -2104 64) (-72 -2104 176)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84658,40 +86852,29 @@ world } side { - "id" "58970" - "plane" "(120 -960 -32) (120 -960 64) (128 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "47472" + "plane" "(-72 -2104 64) (-64 -2096 64) (-64 -2096 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - side - { - "id" "58969" - "plane" "(120 -928 -32) (120 -960 -32) (128 -960 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171005" + "id" "92853" side { - "id" "58986" - "plane" "(192 -960 64) (192 -928 64) (200 -928 64)" + "id" "47481" + "plane" "(-72 -1864 176) (-64 -1856 176) (-64 -1872 176)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -84701,20 +86884,20 @@ world } side { - "id" "58985" - "plane" "(192 -928 -32) (192 -928 64) (192 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "47480" + "plane" "(-64 -1872 64) (-64 -1856 64) (-72 -1864 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" "58984" - "plane" "(200 -960 -32) (200 -960 64) (200 -928 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47479" + "plane" "(-64 -1856 64) (-64 -1872 64) (-64 -1872 176)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -84723,10 +86906,10 @@ world } side { - "id" "58983" - "plane" "(200 -928 -32) (200 -928 64) (192 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "47478" + "plane" "(-72 -1864 64) (-64 -1856 64) (-64 -1856 176)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84734,42 +86917,31 @@ world } side { - "id" "58982" - "plane" "(192 -960 -32) (192 -960 64) (200 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "47477" + "plane" "(-64 -1872 64) (-72 -1864 64) (-72 -1864 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - side - { - "id" "58981" - "plane" "(192 -928 -32) (192 -960 -32) (200 -960 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171012" + "id" "92854" side { - "id" "58998" - "plane" "(128 -960 64) (128 -928 64) (192 -928 64)" + "id" "47487" + "plane" "(-120 -1912 176) (-72 -1864 176) (-64 -1872 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84777,20 +86949,20 @@ world } side { - "id" "58997" - "plane" "(128 -928 56) (128 -928 64) (128 -960 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "47486" + "plane" "(-112 -1920 168) (-64 -1872 168) (-72 -1864 168)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58996" - "plane" "(192 -960 56) (192 -960 64) (192 -928 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47485" + "plane" "(-120 -1912 168) (-72 -1864 168) (-72 -1864 176)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -84799,10 +86971,10 @@ world } side { - "id" "58995" - "plane" "(192 -928 56) (192 -928 64) (128 -928 64)" + "id" "47484" + "plane" "(-64 -1872 168) (-112 -1920 168) (-112 -1920 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84810,10 +86982,10 @@ world } side { - "id" "58994" - "plane" "(128 -960 56) (128 -960 64) (192 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "47483" + "plane" "(-112 -1920 168) (-120 -1912 168) (-120 -1912 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84821,31 +86993,31 @@ world } side { - "id" "58993" - "plane" "(128 -928 56) (128 -960 56) (192 -960 56)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "47482" + "plane" "(-72 -1864 168) (-64 -1872 168) (-64 -1872 176)" + "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" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171017" + "id" "92861" side { - "id" "59010" - "plane" "(128 -952 56) (128 -928 56) (192 -928 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "id" "47511" + "plane" "(-128 -2040 144) (-128 -1928 144) (-112 -1928 144)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84853,75 +87025,75 @@ world } side { - "id" "59009" - "plane" "(128 -928 -32) (128 -928 56) (128 -952 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "47510" + "plane" "(-128 -1928 136) (-128 -2040 136) (-112 -2040 136)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59008" - "plane" "(192 -952 -32) (192 -952 56) (192 -928 56)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47509" + "plane" "(-128 -2040 136) (-128 -1928 136) (-128 -1928 144)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59007" - "plane" "(192 -928 -32) (192 -928 56) (128 -928 56)" + "id" "47508" + "plane" "(-112 -1928 136) (-112 -2040 136) (-112 -2040 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59006" - "plane" "(128 -952 -32) (128 -952 56) (192 -952 56)" - "material" "METAL/METALDOOR001A" - "uaxis" "[1 0 0 -264.258] 0.155" - "vaxis" "[0 0 -1 353.584] 0.202" + "id" "47507" + "plane" "(-112 -2040 136) (-128 -2040 136) (-128 -2040 144)" + "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" "59005" - "plane" "(128 -928 -32) (128 -952 -32) (192 -952 -32)" + "id" "47506" + "plane" "(-128 -1928 136) (-112 -1928 136) (-112 -1928 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 131 176" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171025" + "id" "92862" side { - "id" "59022" - "plane" "(200 -960 64) (200 -928 64) (216 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "id" "47517" + "plane" "(-120 -1912 144) (-72 -1864 144) (-64 -1872 144)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84929,20 +87101,20 @@ world } side { - "id" "59021" - "plane" "(200 -928 -32) (200 -928 64) (200 -960 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "47516" + "plane" "(-112 -1920 136) (-64 -1872 136) (-72 -1864 136)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59020" - "plane" "(216 -960 -32) (216 -960 64) (216 -928 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47515" + "plane" "(-120 -1912 136) (-72 -1864 136) (-72 -1864 144)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -84951,10 +87123,10 @@ world } side { - "id" "59019" - "plane" "(216 -928 -32) (216 -928 64) (200 -928 64)" + "id" "47514" + "plane" "(-64 -1872 136) (-112 -1920 136) (-112 -1920 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84962,10 +87134,10 @@ world } side { - "id" "59018" - "plane" "(200 -960 -32) (200 -960 64) (216 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "47513" + "plane" "(-112 -1920 136) (-120 -1912 136) (-120 -1912 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -84973,30 +87145,30 @@ world } side { - "id" "59017" - "plane" "(200 -928 -32) (200 -960 -32) (216 -960 -32)" + "id" "47512" + "plane" "(-72 -1864 136) (-64 -1872 136) (-64 -1872 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 183 140" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171032" + "id" "92863" side { - "id" "59034" - "plane" "(104 -960 64) (104 -928 64) (120 -928 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47523" + "plane" "(-112 -2048 144) (-64 -2096 144) (-72 -2104 144)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -85005,20 +87177,20 @@ world } side { - "id" "59033" - "plane" "(104 -928 -32) (104 -928 64) (104 -960 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "47522" + "plane" "(-120 -2056 136) (-72 -2104 136) (-64 -2096 136)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59032" - "plane" "(120 -960 -32) (120 -960 64) (120 -928 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47521" + "plane" "(-72 -2104 136) (-120 -2056 136) (-120 -2056 144)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -85027,10 +87199,10 @@ world } side { - "id" "59031" - "plane" "(120 -928 -32) (120 -928 64) (104 -928 64)" + "id" "47520" + "plane" "(-112 -2048 136) (-64 -2096 136) (-64 -2096 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85038,10 +87210,10 @@ world } side { - "id" "59030" - "plane" "(104 -960 -32) (104 -960 64) (120 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "47519" + "plane" "(-120 -2056 136) (-112 -2048 136) (-112 -2048 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85049,31 +87221,31 @@ world } side { - "id" "59029" - "plane" "(104 -928 -32) (104 -960 -32) (120 -960 -32)" + "id" "47518" + "plane" "(-64 -2096 136) (-72 -2104 136) (-72 -2104 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 183 140" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171035" + "id" "92925" side { - "id" "59046" - "plane" "(216 -960 64) (216 -928 64) (224 -928 64)" + "id" "47559" + "plane" "(-120 -2048 168) (-120 -1920 168) (-64 -1864 168)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85081,20 +87253,20 @@ world } side { - "id" "59045" - "plane" "(216 -928 -32) (216 -928 64) (216 -960 64)" + "id" "47558" + "plane" "(-120 -1920 64) (-120 -2048 64) (-64 -2104 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59044" - "plane" "(224 -960 -32) (224 -960 64) (224 -928 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47557" + "plane" "(-120 -2048 64) (-120 -1920 64) (-120 -1920 168)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -85103,10 +87275,10 @@ world } side { - "id" "59043" - "plane" "(224 -928 -32) (224 -928 64) (216 -928 64)" + "id" "47556" + "plane" "(-64 -1864 64) (-64 -2104 64) (-64 -2104 168)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85114,10 +87286,10 @@ world } side { - "id" "59042" - "plane" "(216 -960 -32) (216 -960 64) (224 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "47555" + "plane" "(-64 -2104 64) (-120 -2048 64) (-120 -2048 168)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85125,30 +87297,30 @@ world } side { - "id" "59041" - "plane" "(216 -928 -32) (216 -960 -32) (224 -960 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "47554" + "plane" "(-120 -1920 64) (-64 -1864 64) (-64 -1864 168)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171036" + "id" "92977" side { - "id" "59058" - "plane" "(288 -960 64) (288 -928 64) (296 -928 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47572" + "plane" "(-136 -2048 176) (-64 -2120 176) (-64 -1856 176)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -85157,9 +87329,9 @@ world } side { - "id" "59057" - "plane" "(288 -928 -32) (288 -928 64) (288 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47571" + "plane" "(-64 -1856 176) (-64 -2120 176) (-64 -2048 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -85168,9 +87340,9 @@ world } side { - "id" "59056" - "plane" "(296 -960 -32) (296 -960 64) (296 -928 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47570" + "plane" "(-64 -2048 256) (-64 -2120 176) (-136 -2048 176)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -85179,10 +87351,10 @@ world } side { - "id" "59055" - "plane" "(296 -928 -32) (296 -928 64) (288 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "47569" + "plane" "(-136 -1920 176) (-72 -1856 176) (-64 -1856 184.891)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85190,10 +87362,10 @@ world } side { - "id" "59054" - "plane" "(288 -960 -32) (288 -960 64) (296 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "47568" + "plane" "(-136 -2048 176) (-136 -1920 176) (-64 -1920 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85201,30 +87373,30 @@ world } side { - "id" "59053" - "plane" "(288 -928 -32) (288 -960 -32) (296 -960 -32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47567" + "plane" "(-72 -1856 176) (-64 -1856 176) (-64 -1856 184.889)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171037" + "id" "92985" side { - "id" "59070" - "plane" "(224 -960 -24) (224 -928 -24) (288 -928 -24)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47606" + "plane" "(-64 -1856 0) (-64 -1920 0) (320 -1920 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -85233,8 +87405,8 @@ world } side { - "id" "59069" - "plane" "(224 -928 -32) (224 -928 -24) (224 -960 -24)" + "id" "47605" + "plane" "(-64 -1920 0) (-64 -1856 0) (-64 -1856 184.889)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -85244,9 +87416,9 @@ world } side { - "id" "59068" - "plane" "(288 -960 -32) (288 -960 -24) (288 -928 -24)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47604" + "plane" "(320 -1856 0) (320 -1920 0) (320 -1920 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -85255,10 +87427,10 @@ world } side { - "id" "59067" - "plane" "(288 -928 -32) (288 -928 -24) (224 -928 -24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "id" "47603" + "plane" "(-64 -1856 0) (320 -1856 0) (320 -1856 184.889)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85266,9 +87438,9 @@ world } side { - "id" "59066" - "plane" "(224 -960 -32) (224 -960 -24) (288 -960 -24)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47602" + "plane" "(320 -1856 184.888) (320 -1920 256) (-64 -1920 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -85277,31 +87449,31 @@ world } side { - "id" "59065" - "plane" "(224 -928 -32) (224 -960 -32) (288 -960 -32)" + "id" "47601" + "plane" "(320 -1920 0) (-64 -1920 0) (-64 -1920 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171040" + "id" "92986" side { - "id" "59082" - "plane" "(224 -960 64) (224 -928 64) (288 -928 64)" + "id" "47618" + "plane" "(-64 -2176 256) (-64 -1920 256) (320 -1920 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85309,42 +87481,42 @@ world } side { - "id" "59081" - "plane" "(224 -928 56) (224 -928 64) (224 -960 64)" + "id" "47617" + "plane" "(-64 -1920 -7.62939e-06) (-64 -2176 -7.62939e-06) (320 -2176 -7.62939e-06)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59080" - "plane" "(288 -960 56) (288 -960 64) (288 -928 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "47616" + "plane" "(-64 -2176 -7.62939e-06) (-64 -1920 -7.62939e-06) (-64 -1920 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59079" - "plane" "(288 -928 56) (288 -928 64) (224 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "47615" + "plane" "(320 -1920 -7.62939e-06) (320 -2176 -7.62939e-06) (320 -2176 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59078" - "plane" "(224 -960 56) (224 -960 64) (288 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47614" + "plane" "(-64 -1920 -7.62939e-06) (320 -1920 -7.62939e-06) (320 -1920 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -85353,42 +87525,42 @@ world } side { - "id" "59077" - "plane" "(224 -928 56) (224 -960 56) (288 -960 56)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "47613" + "plane" "(320 -2176 -7.62939e-06) (-64 -2176 -7.62939e-06) (-64 -2176 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171041" + "id" "93008" side { - "id" "59106" - "plane" "(96 -928 -24) (96 -960 -24) (32 -960 -24)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "47640" + "plane" "(-72 -1984 256) (-72 -2176 256) (448 -2176 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59105" - "plane" "(96 -960 -32) (96 -960 -24) (96 -928 -24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "47639" + "plane" "(-72 -2176 256) (-72 -1984 256) (-72 -2080 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85396,10 +87568,10 @@ world } side { - "id" "59104" - "plane" "(32 -928 -32) (32 -928 -24) (32 -960 -24)" + "id" "47638" + "plane" "(448 -1984 256) (448 -2176 256) (448 -2080 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85407,10 +87579,10 @@ world } side { - "id" "59103" - "plane" "(32 -960 -32) (32 -960 -24) (96 -960 -24)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" + "id" "47637" + "plane" "(448 -2080 320) (448 -2176 256) (-72 -2176 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85418,62 +87590,134 @@ world } side { - "id" "59102" - "plane" "(96 -928 -32) (96 -928 -24) (32 -928 -24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" + "id" "47636" + "plane" "(-72 -2080 320) (-72 -1984 256) (448 -1984 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - side - { - "id" "59101" - "plane" "(96 -960 -32) (96 -928 -32) (32 -928 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171042" + "id" "87811" side { - "id" "59112" - "plane" "(32 -928 64) (32 -960 64) (24 -960 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "45108" + "plane" "(-960 -2816 -40) (-960 -3520 -40) (-1536 -3520 -40)" + "material" "NATURE/BLEND_GRASS_GRAVEL_02" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 1 0 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1536 -3520 -40]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + } + distances + { + "row0" "3.31994 4.28334 5.5616 9.72958 15.201 20.1282 25.4266 22.7993 15.8893" + "row1" "5.62031 8.31203 10.5971 15.7588 21.4781 29.1374 32.4485 28.8538 20.9411" + "row2" "5.62215 8.31605 9.59226 11.4375 15.7286 22.3931 24.885 20.4855 14.1129" + "row3" "1.5861 4.29119 4.28978 3.60506 2.8119 2.77571 3.29436 3.38355 0.771461" + "row4" "0 0.293415 0.968136 0.293415 0 0 0 1.07837 3.79468" + "row5" "0 0 0 0 0 0.618896 14.4587 34.6174 39.3584" + "row6" "0 0 0 0 2.52588 17.1624 56.4395 93.3813 100.481" + "row7" "0 0 0 0 4.60083 25.5525 100.464 150.244 156.737" + "row8" "0 0 0 0 2.64746 15.5247 102.691 177.151 187.702" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "147 255 255 255 255 255 255 172 0" + "row1" "196 255 255 255 255 255 255 147 49" + "row2" "245 255 255 207 255 255 255 147 0" + "row3" "49 74 48 159 207 255 255 0 0" + "row4" "144 0 0 97 255 255 250 0 0" + "row5" "144 0 0 0 147 0 0 0 0" + "row6" "120 0 0 0 0 0 0 0 0" + "row7" "111 0 0 0 0 0 0 0 0" + "row8" "48 48 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "59111" - "plane" "(32 -960 -32) (32 -960 64) (32 -928 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "45107" + "plane" "(-960 -3520 -64) (-960 -2816 -64) (-1536 -2816 -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" "59110" - "plane" "(24 -928 -32) (24 -928 64) (24 -960 64)" + "id" "45106" + "plane" "(-960 -3520 -40) (-960 -2816 -40) (-960 -2816 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -85483,10 +87727,10 @@ world } side { - "id" "59109" - "plane" "(24 -960 -32) (24 -960 64) (32 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" + "id" "45105" + "plane" "(-1536 -2816 -40) (-1536 -3520 -40) (-1536 -3520 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85494,8 +87738,8 @@ world } side { - "id" "59108" - "plane" "(32 -928 -32) (32 -928 64) (24 -928 64)" + "id" "45104" + "plane" "(-1536 -3520 -40) (-960 -3520 -40) (-960 -3520 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -85505,129 +87749,141 @@ world } side { - "id" "59107" - "plane" "(32 -960 -32) (32 -928 -32) (24 -928 -32)" + "id" "45103" + "plane" "(-960 -2816 -40) (-1536 -2816 -40) (-1536 -2816 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171043" + "id" "88301" side { - "id" "59118" - "plane" "(96 -928 64) (96 -960 64) (32 -960 64)" + "id" "45608" + "plane" "(-1456 -3328 128) (-1456 -3456 128) (-1040 -3456 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59117" - "plane" "(96 -960 56) (96 -960 64) (96 -928 64)" + "id" "45607" + "plane" "(-1040 -3360.01 192.012) (-1040 -3328 128) (-1040 -3456 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59116" - "plane" "(32 -928 56) (32 -928 64) (32 -960 64)" + "id" "45606" + "plane" "(-1456 -3456 128) (-1456 -3328 128) (-1456 -3360 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59115" - "plane" "(32 -960 56) (32 -960 64) (96 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "45605" + "plane" "(-1456 -3360 192) (-1456 -3328 128) (-1040 -3328 128)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[-1 0 0 247] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59114" - "plane" "(96 -928 56) (96 -928 64) (32 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "45604" + "plane" "(-1456 -3392 224) (-1456 -3360 192) (-1040 -3360 192)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[-1 0 0 247] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59113" - "plane" "(96 -960 56) (96 -928 56) (32 -928 56)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "45603" + "plane" "(-1456 -3424 240) (-1456 -3392 224) (-1040 -3392 224)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[-1 0 0 247] 0.25" + "vaxis" "[0 1 0 480.002] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor + side { - "color" "0 133 222" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "45602" + "plane" "(-1456 -3456 240) (-1456 -3424 240) (-1040 -3424 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - solid - { - "id" "171047" side { - "id" "59130" - "plane" "(224 -956 56) (224 -928 56) (288 -928 56)" + "id" "45601" + "plane" "(-1040 -3456 240) (-1040 -3456 128) (-1456 -3456 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + editor + { + "color" "0 145 226" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "88302" side { - "id" "59129" - "plane" "(224 -928 -24) (224 -928 56) (224 -956 56)" + "id" "45613" + "plane" "(-1376 -3456 160) (-1120 -3456 160) (-1120 -3304 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59128" - "plane" "(288 -956 -24) (288 -956 56) (288 -928 56)" + "id" "45612" + "plane" "(-1120 -3456 160) (-1376 -3456 160) (-1248 -3456 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85635,10 +87891,10 @@ world } side { - "id" "59127" - "plane" "(288 -928 -24) (288 -928 56) (224 -928 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "45611" + "plane" "(-1376 -3304 160) (-1120 -3304 160) (-1248 -3304 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85646,53 +87902,54 @@ world } side { - "id" "59126" - "plane" "(224 -956 -24) (224 -956 56) (288 -956 56)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "45610" + "plane" "(-1248 -3304 256) (-1120 -3304 160) (-1120 -3456 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59125" - "plane" "(224 -928 -24) (224 -956 -24) (288 -956 -24)" + "id" "45609" + "plane" "(-1248 -3456 256) (-1376 -3456 160) (-1376 -3304 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 183 140" + "color" "0 223 168" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171051" + "id" "88303" side { - "id" "59142" - "plane" "(32 -956 56) (32 -928 56) (96 -928 56)" + "id" "45619" + "plane" "(-1232 -3304 192) (-1232 -3304 232) (-1216 -3304 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59141" - "plane" "(32 -928 -24) (32 -928 56) (32 -956 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "45618" + "plane" "(-1162.66 -3296 192) (-1216 -3296 232) (-1232 -3296 232)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85700,21 +87957,21 @@ world } side { - "id" "59140" - "plane" "(96 -956 -24) (96 -956 56) (96 -928 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "45617" + "plane" "(-1216 -3296 232) (-1162.66 -3296 192) (-1162.67 -3304 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59139" - "plane" "(96 -928 -24) (96 -928 56) (32 -928 56)" + "id" "45616" + "plane" "(-1232 -3304 232) (-1232 -3304 192) (-1232 -3296 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85722,53 +87979,54 @@ world } side { - "id" "59138" - "plane" "(32 -956 -24) (32 -956 56) (96 -956 56)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "45615" + "plane" "(-1232 -3304 192) (-1162.67 -3304 192) (-1162.66 -3296 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59137" - "plane" "(32 -928 -24) (32 -956 -24) (96 -956 -24)" + "id" "45614" + "plane" "(-1232 -3296 232) (-1216 -3296 232) (-1216 -3304 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 183 140" + "color" "0 229 206" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171052" + "id" "88304" side { - "id" "59154" - "plane" "(96 -960 64) (96 -928 64) (104 -928 64)" + "id" "45625" + "plane" "(-1376 -3304 160) (-1264 -3304 160) (-1264 -3296 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 32.002] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59153" - "plane" "(96 -928 -32) (96 -928 64) (96 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "45624" + "plane" "(-1264 -3304 160) (-1376 -3304 160) (-1333.33 -3304 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85776,10 +88034,10 @@ world } side { - "id" "59152" - "plane" "(104 -960 -32) (104 -960 64) (104 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "45623" + "plane" "(-1376 -3296 160) (-1264 -3296 160) (-1264 -3296 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85787,21 +88045,21 @@ world } side { - "id" "59151" - "plane" "(104 -928 -32) (104 -928 64) (96 -928 64)" + "id" "45622" + "plane" "(-1333.34 -3304 192) (-1376 -3304 160) (-1376 -3296 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59150" - "plane" "(96 -960 -32) (96 -960 64) (104 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "45621" + "plane" "(-1264 -3296 192) (-1264 -3296 160) (-1264 -3304 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85809,42 +88067,43 @@ world } side { - "id" "59149" - "plane" "(96 -928 -32) (96 -960 -32) (104 -960 -32)" + "id" "45620" + "plane" "(-1333.34 -3296 192) (-1264 -3296 192) (-1264 -3304 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 119 120" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171057" + "id" "88305" side { - "id" "59166" - "plane" "(296 -928 64) (312 -928 64) (312 -960 64)" + "id" "45632" + "plane" "(-1264 -3304 232) (-1264 -3304 244) (-1248 -3304 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59165" - "plane" "(296 -928 64) (296 -960 64) (296 -960 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "45631" + "plane" "(-1232 -3296 232) (-1232 -3296 244) (-1248 -3296 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85852,21 +88111,32 @@ world } side { - "id" "59164" - "plane" "(312 -960 64) (312 -928 64) (312 -928 -32)" + "id" "45630" + "plane" "(-1248 -3296 256) (-1232 -3296 244) (-1232 -3304 244)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "45629" + "plane" "(-1264 -3296 244) (-1248 -3296 256) (-1248 -3304 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59163" - "plane" "(312 -928 64) (296 -928 64) (296 -928 -32)" + "id" "45628" + "plane" "(-1232 -3296 244) (-1232 -3296 232) (-1232 -3304 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85874,10 +88144,10 @@ world } side { - "id" "59162" - "plane" "(296 -960 64) (312 -960 64) (312 -960 -32)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "45627" + "plane" "(-1264 -3304 244) (-1264 -3304 232) (-1264 -3296 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85885,42 +88155,32 @@ world } side { - "id" "59161" - "plane" "(296 -960 -32) (312 -960 -32) (312 -928 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45626" + "plane" "(-1264 -3304 232) (-1232 -3304 232) (-1232 -3296 232)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 183 140" + "color" "0 157 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171058" - side - { - "id" "59178" - "plane" "(8 -960 64) (8 -928 64) (24 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "88306" side { - "id" "59177" - "plane" "(8 -928 -32) (8 -928 64) (8 -960 64)" + "id" "45637" + "plane" "(-1232 -3304 232) (-1232 -3304 244) (-1216 -3304 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85928,10 +88188,10 @@ world } side { - "id" "59176" - "plane" "(24 -960 -32) (24 -960 64) (24 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "45636" + "plane" "(-1216 -3296 232) (-1232 -3296 244) (-1232 -3296 232)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85939,21 +88199,21 @@ world } side { - "id" "59175" - "plane" "(24 -928 -32) (24 -928 64) (8 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "45635" + "plane" "(-1232 -3296 244) (-1216 -3296 232) (-1216 -3304 232)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59174" - "plane" "(8 -960 -32) (8 -960 64) (24 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "45634" + "plane" "(-1232 -3304 244) (-1232 -3304 232) (-1232 -3296 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -85961,64 +88221,65 @@ world } side { - "id" "59173" - "plane" "(8 -928 -32) (8 -960 -32) (24 -960 -32)" + "id" "45633" + "plane" "(-1232 -3304 232) (-1216 -3304 232) (-1216 -3296 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 183 140" + "color" "0 223 156" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171059" + "id" "88307" side { - "id" "59190" - "plane" "(312 -964 368) (312 -928 368) (328 -928 368)" + "id" "45643" + "plane" "(-1333.32 -3304 192) (-1280 -3304 232) (-1264 -3304 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59189" - "plane" "(312 -928 -32) (312 -928 368) (312 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "45642" + "plane" "(-1264 -3296 192) (-1264 -3296 232) (-1280 -3296 232)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59188" - "plane" "(328 -964 -32) (328 -964 368) (328 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "45641" + "plane" "(-1333.33 -3296 192) (-1280 -3296 232) (-1280 -3304 232)" + "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" "59187" - "plane" "(328 -928 -32) (328 -928 368) (312 -928 368)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "45640" + "plane" "(-1264 -3296 232) (-1264 -3296 192) (-1264 -3304 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86026,53 +88287,54 @@ world } side { - "id" "59186" - "plane" "(312 -964 -32) (312 -964 368) (328 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "45639" + "plane" "(-1333.33 -3304 192) (-1264 -3304 192) (-1264 -3296 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59185" - "plane" "(312 -928 -32) (312 -964 -32) (328 -964 -32)" + "id" "45638" + "plane" "(-1280 -3296 232) (-1264 -3296 232) (-1264 -3304 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 253 190" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171061" + "id" "88308" side { - "id" "59202" - "plane" "(328 -960 64) (328 -928 64) (348 -928 64)" + "id" "45649" + "plane" "(-1264 -3304 160) (-1232 -3304 160) (-1232 -3296 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 32.002] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59201" - "plane" "(328 -928 -32) (328 -928 64) (328 -960 64)" + "id" "45648" + "plane" "(-1232 -3304 192) (-1232 -3304 160) (-1264 -3304 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86080,10 +88342,10 @@ world } side { - "id" "59200" - "plane" "(348 -960 -32) (348 -960 64) (348 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "45647" + "plane" "(-1264 -3296 192) (-1264 -3296 160) (-1232 -3296 160)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86091,10 +88353,10 @@ world } side { - "id" "59199" - "plane" "(348 -928 -32) (348 -928 64) (328 -928 64)" + "id" "45646" + "plane" "(-1232 -3296 192) (-1232 -3296 160) (-1232 -3304 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86102,10 +88364,10 @@ world } side { - "id" "59198" - "plane" "(328 -960 -32) (328 -960 64) (348 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "45645" + "plane" "(-1264 -3304 192) (-1264 -3304 160) (-1264 -3296 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86113,42 +88375,32 @@ world } side { - "id" "59197" - "plane" "(328 -928 -32) (328 -960 -32) (348 -960 -32)" + "id" "45644" + "plane" "(-1264 -3296 192) (-1232 -3296 192) (-1232 -3304 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 183 140" + "color" "0 187 216" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171065" + "id" "88309" side { - "id" "59232" - "plane" "(448 -928 64) (448 -960 64) (428 -960 64)" + "id" "45654" + "plane" "(-1280 -3304 232) (-1264 -3304 244) (-1264 -3304 232)" "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" "59231" - "plane" "(448 -960 -32) (448 -960 64) (448 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86156,10 +88408,10 @@ world } side { - "id" "59230" - "plane" "(428 -928 -32) (428 -928 64) (428 -960 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "45653" + "plane" "(-1264 -3296 232) (-1264 -3296 244) (-1280 -3296 232)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86167,21 +88419,21 @@ world } side { - "id" "59229" - "plane" "(428 -960 -32) (428 -960 64) (448 -960 64)" - "material" "DEV/REFLECTIVITY_50B" + "id" "45652" + "plane" "(-1280 -3296 232) (-1264 -3296 244) (-1264 -3304 244)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59228" - "plane" "(448 -928 -32) (448 -928 64) (428 -928 64)" + "id" "45651" + "plane" "(-1264 -3296 244) (-1264 -3296 232) (-1264 -3304 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86189,42 +88441,43 @@ world } side { - "id" "59227" - "plane" "(448 -960 -32) (448 -928 -32) (428 -928 -32)" + "id" "45650" + "plane" "(-1280 -3304 232) (-1264 -3304 232) (-1264 -3296 232)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 183 140" + "color" "0 153 214" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171079" + "id" "88310" side { - "id" "59280" - "plane" "(420 -960 64) (420 -928 64) (428 -928 64)" + "id" "45660" + "plane" "(-1232 -3304 160) (-1120 -3304 160) (-1120 -3296 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 32.002] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59279" - "plane" "(420 -928 -32) (420 -928 64) (420 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "45659" + "plane" "(-1120 -3304 160) (-1232 -3304 160) (-1232 -3304 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86232,10 +88485,10 @@ world } side { - "id" "59278" - "plane" "(428 -960 -32) (428 -960 64) (428 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "45658" + "plane" "(-1232 -3296 160) (-1120 -3296 160) (-1162.66 -3296 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86243,21 +88496,21 @@ world } side { - "id" "59277" - "plane" "(428 -928 -32) (428 -928 64) (420 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "45657" + "plane" "(-1162.66 -3296 192) (-1120 -3296 160) (-1120 -3304 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59276" - "plane" "(420 -960 -32) (420 -960 64) (428 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "45656" + "plane" "(-1232 -3304 192) (-1232 -3304 160) (-1232 -3296 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86265,129 +88518,131 @@ world } side { - "id" "59275" - "plane" "(420 -928 -32) (420 -960 -32) (428 -960 -32)" + "id" "45655" + "plane" "(-1232 -3296 192) (-1162.66 -3296 192) (-1162.66 -3304 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 155 212" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171080" + "id" "88311" side { - "id" "59286" - "plane" "(356 -952 56) (356 -928 56) (420 -928 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45666" + "plane" "(-1264 -3296 188) (-1232 -3296 188) (-1232 -3292 188)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59285" - "plane" "(356 -928 -32) (356 -928 56) (356 -952 56)" + "id" "45665" + "plane" "(-1232 -3296 192) (-1232 -3296 188) (-1264 -3296 188)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59284" - "plane" "(420 -952 -32) (420 -952 56) (420 -928 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "45664" + "plane" "(-1264 -3292 192) (-1264 -3292 188) (-1232 -3292 188)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59283" - "plane" "(420 -928 -32) (420 -928 56) (356 -928 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "45663" + "plane" "(-1232 -3292 192) (-1232 -3292 188) (-1232 -3296 188)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59282" - "plane" "(356 -952 -32) (356 -952 56) (420 -952 56)" - "material" "METAL/METALDOOR001A" - "uaxis" "[1 0 0 -199.226] 0.155" - "vaxis" "[0 0 -1 353.584] 0.202" + "id" "45662" + "plane" "(-1264 -3296 192) (-1264 -3296 188) (-1264 -3292 188)" + "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" "59281" - "plane" "(356 -928 -32) (356 -952 -32) (420 -952 -32)" + "id" "45661" + "plane" "(-1264 -3292 192) (-1232 -3292 192) (-1232 -3296 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 131 176" + "color" "0 153 162" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171081" + "id" "88312" side { - "id" "59292" - "plane" "(348 -960 64) (348 -928 64) (356 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45672" + "plane" "(-1408 -3456 160) (-1408 -3296 160) (-1088 -3296 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59291" - "plane" "(348 -928 -32) (348 -928 64) (348 -960 64)" + "id" "45671" + "plane" "(-1408 -3296 128) (-1408 -3456 128) (-1088 -3456 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59290" - "plane" "(356 -960 -32) (356 -960 64) (356 -928 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "45670" + "plane" "(-1088 -3296 128) (-1088 -3456 128) (-1088 -3456 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86395,10 +88650,10 @@ world } side { - "id" "59289" - "plane" "(356 -928 -32) (356 -928 64) (348 -928 64)" + "id" "45669" + "plane" "(-1408 -3456 128) (-1408 -3296 128) (-1408 -3296 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86406,10 +88661,10 @@ world } side { - "id" "59288" - "plane" "(348 -960 -32) (348 -960 64) (356 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "45668" + "plane" "(-1408 -3296 128) (-1088 -3296 128) (-1088 -3296 160)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86417,53 +88672,54 @@ world } side { - "id" "59287" - "plane" "(348 -928 -32) (348 -960 -32) (356 -960 -32)" + "id" "45667" + "plane" "(-1088 -3456 128) (-1408 -3456 128) (-1408 -3456 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 159 180" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171082" + "id" "88313" side { - "id" "59298" - "plane" "(356 -960 64) (356 -928 64) (420 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45678" + "plane" "(-1024 -3296 128) (-1024 -3312 128) (-1472 -3312 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59297" - "plane" "(356 -928 56) (356 -928 64) (356 -960 64)" + "id" "45677" + "plane" "(-1024 -3312 96) (-1024 -3296 96) (-1472 -3296 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59296" - "plane" "(420 -960 56) (420 -960 64) (420 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "45676" + "plane" "(-1024 -3296 96) (-1024 -3312 96) (-1024 -3312 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86471,10 +88727,10 @@ world } side { - "id" "59295" - "plane" "(420 -928 56) (420 -928 64) (356 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" + "id" "45675" + "plane" "(-1472 -3312 96) (-1472 -3296 96) (-1472 -3296 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86482,10 +88738,10 @@ world } side { - "id" "59294" - "plane" "(356 -960 56) (356 -960 64) (420 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "45674" + "plane" "(-1024 -3312 96) (-1472 -3312 96) (-1472 -3312 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86493,64 +88749,65 @@ world } side { - "id" "59293" - "plane" "(356 -928 56) (356 -960 56) (420 -960 56)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45673" + "plane" "(-1472 -3296 96) (-1024 -3296 96) (-1024 -3296 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 189 142" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171096" + "id" "88315" side { - "id" "59364" - "plane" "(-8 -964 368) (-8 -928 368) (8 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45690" + "plane" "(-1312 -3292 8) (-1312 -3296 8) (-1376 -3296 8)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59363" - "plane" "(8 -964 -32) (8 -964 368) (8 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "45689" + "plane" "(-1312 -3296 0) (-1312 -3292 0) (-1376 -3292 0)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59362" - "plane" "(-8 -928 -32) (-8 -928 368) (-8 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "45688" + "plane" "(-1312 -3292 0) (-1312 -3296 0) (-1312 -3296 8)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59361" - "plane" "(8 -928 -32) (8 -928 368) (-8 -928 368)" + "id" "45687" + "plane" "(-1376 -3296 0) (-1376 -3292 0) (-1376 -3292 8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86558,64 +88815,64 @@ world } side { - "id" "59360" - "plane" "(-8 -964 -32) (-8 -964 368) (8 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "45686" + "plane" "(-1312 -3296 0) (-1376 -3296 0) (-1376 -3296 8)" + "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" "59359" - "plane" "(-8 -928 -32) (-8 -964 -32) (8 -964 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45685" + "plane" "(-1376 -3292 0) (-1312 -3292 0) (-1312 -3292 8)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 241 254" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171097" + "id" "88316" side { - "id" "59370" - "plane" "(-28 -960 64) (-28 -928 64) (-8 -928 64)" + "id" "45696" + "plane" "(-1376 -3296 96) (-1376 -3312 96) (-1472 -3312 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59369" - "plane" "(-8 -960 -32) (-8 -960 64) (-8 -928 64)" + "id" "45695" + "plane" "(-1376 -3312 -32) (-1376 -3296 -32) (-1472 -3296 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59368" - "plane" "(-28 -928 -32) (-28 -928 64) (-28 -960 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "45694" + "plane" "(-1376 -3296 -32) (-1376 -3312 -32) (-1376 -3312 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86623,10 +88880,10 @@ world } side { - "id" "59367" - "plane" "(-8 -928 -32) (-8 -928 64) (-28 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" + "id" "45693" + "plane" "(-1472 -3312 -32) (-1472 -3296 -32) (-1472 -3296 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86634,9 +88891,9 @@ world } side { - "id" "59366" - "plane" "(-28 -960 -32) (-28 -960 64) (-8 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "id" "45692" + "plane" "(-1376 -3312 -32) (-1472 -3312 -32) (-1472 -3312 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -86645,53 +88902,54 @@ world } side { - "id" "59365" - "plane" "(-28 -928 -32) (-28 -960 -32) (-8 -960 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45691" + "plane" "(-1472 -3296 -32) (-1376 -3296 -32) (-1376 -3296 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 183 140" + "color" "0 199 116" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171098" + "id" "88317" side { - "id" "59376" - "plane" "(-36 -960 64) (-36 -928 64) (-28 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45702" + "plane" "(-1312 -3296 8) (-1312 -3312 8) (-1376 -3312 8)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59375" - "plane" "(-28 -960 -32) (-28 -960 64) (-28 -928 64)" + "id" "45701" + "plane" "(-1312 -3312 -32) (-1312 -3296 -32) (-1376 -3296 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59374" - "plane" "(-36 -928 -32) (-36 -928 64) (-36 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "45700" + "plane" "(-1312 -3296 -32) (-1312 -3312 -32) (-1312 -3312 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86699,10 +88957,10 @@ world } side { - "id" "59373" - "plane" "(-28 -928 -32) (-28 -928 64) (-36 -928 64)" + "id" "45699" + "plane" "(-1376 -3312 -32) (-1376 -3296 -32) (-1376 -3296 8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86710,9 +88968,9 @@ world } side { - "id" "59372" - "plane" "(-36 -960 -32) (-36 -960 64) (-28 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "45698" + "plane" "(-1312 -3312 -32) (-1376 -3312 -32) (-1376 -3312 8)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -86721,53 +88979,54 @@ world } side { - "id" "59371" - "plane" "(-36 -928 -32) (-36 -960 -32) (-28 -960 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45697" + "plane" "(-1376 -3296 -32) (-1312 -3296 -32) (-1312 -3296 8)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 189 194" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171099" + "id" "88318" side { - "id" "59382" - "plane" "(-100 -960 64) (-100 -928 64) (-36 -928 64)" + "id" "45708" + "plane" "(-1280 -3296 96) (-1280 -3312 96) (-1312 -3312 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59381" - "plane" "(-36 -960 56) (-36 -960 64) (-36 -928 64)" + "id" "45707" + "plane" "(-1280 -3312 -32) (-1280 -3296 -32) (-1312 -3296 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59380" - "plane" "(-100 -928 56) (-100 -928 64) (-100 -960 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "45706" + "plane" "(-1280 -3296 -32) (-1280 -3312 -32) (-1280 -3312 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86775,10 +89034,10 @@ world } side { - "id" "59379" - "plane" "(-36 -928 56) (-36 -928 64) (-100 -928 64)" + "id" "45705" + "plane" "(-1312 -3312 -32) (-1312 -3296 -32) (-1312 -3296 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86786,9 +89045,9 @@ world } side { - "id" "59378" - "plane" "(-100 -960 56) (-100 -960 64) (-36 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "45704" + "plane" "(-1280 -3312 -32) (-1312 -3312 -32) (-1312 -3312 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -86797,129 +89056,131 @@ world } side { - "id" "59377" - "plane" "(-100 -928 56) (-100 -960 56) (-36 -960 56)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "45703" + "plane" "(-1312 -3296 -32) (-1280 -3296 -32) (-1280 -3296 96)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 211 204" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171100" + "id" "88319" side { - "id" "59388" - "plane" "(-100 -952 56) (-100 -928 56) (-36 -928 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45806" + "plane" "(-1472 -3456 128) (-1472 -3312 128) (-1024 -3312 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59387" - "plane" "(-36 -952 -32) (-36 -952 56) (-36 -928 56)" + "id" "45805" + "plane" "(-1472 -3312 -32) (-1472 -3456 -32) (-1024 -3456 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59386" - "plane" "(-100 -928 -32) (-100 -928 56) (-100 -952 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "45804" + "plane" "(-1024 -3312 -32) (-1024 -3456 -32) (-1024 -3456 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59385" - "plane" "(-36 -928 -32) (-36 -928 56) (-100 -928 56)" + "id" "45803" + "plane" "(-1472 -3456 -32) (-1472 -3312 -32) (-1472 -3312 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59384" - "plane" "(-100 -952 -32) (-100 -952 56) (-36 -952 56)" - "material" "METAL/METALDOOR001A" - "uaxis" "[-1 0 0 -182.71] 0.155" - "vaxis" "[0 0 -1 353.584] 0.202" + "id" "45802" + "plane" "(-1472 -3312 -32) (-1024 -3312 -32) (-1024 -3312 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59383" - "plane" "(-100 -928 -32) (-100 -952 -32) (-36 -952 -32)" + "id" "45801" + "plane" "(-1024 -3456 -32) (-1472 -3456 -32) (-1472 -3456 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 131 176" + "color" "0 193 250" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171101" + "id" "88320" side { - "id" "59394" - "plane" "(-108 -960 64) (-108 -928 64) (-100 -928 64)" + "id" "45720" + "plane" "(-1232 -3312 96) (-1280 -3312 96) (-1280 -3296 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59393" - "plane" "(-100 -960 -32) (-100 -960 64) (-100 -928 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "45719" + "plane" "(-1232 -3296 72) (-1280 -3296 64) (-1280 -3312 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59392" - "plane" "(-108 -928 -32) (-108 -928 64) (-108 -960 64)" + "id" "45718" + "plane" "(-1280 -3312 64) (-1280 -3296 64) (-1280 -3296 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86927,10 +89188,10 @@ world } side { - "id" "59391" - "plane" "(-100 -928 -32) (-100 -928 64) (-108 -928 64)" + "id" "45717" + "plane" "(-1280 -3312 96) (-1232 -3312 96) (-1232 -3312 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -86938,9 +89199,9 @@ world } side { - "id" "59390" - "plane" "(-108 -960 -32) (-108 -960 64) (-100 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "45716" + "plane" "(-1280 -3296 64) (-1232 -3296 72) (-1232 -3296 96)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -86949,75 +89210,76 @@ world } side { - "id" "59389" - "plane" "(-108 -928 -32) (-108 -960 -32) (-100 -960 -32)" + "id" "45715" + "plane" "(-1232 -3296 72) (-1232 -3312 72) (-1232 -3312 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 199 136" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171102" + "id" "88321" side { - "id" "59400" - "plane" "(-108 -928 64) (-108 -960 64) (-128 -960 64)" + "id" "45726" + "plane" "(-1312 -3296 96) (-1312 -3312 96) (-1344 -3312 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59399" - "plane" "(-128 -928 -32) (-128 -928 64) (-128 -960 64)" + "id" "45725" + "plane" "(-1312 -3312 64) (-1312 -3296 64) (-1344 -3296 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59398" - "plane" "(-108 -960 -32) (-108 -960 64) (-108 -928 64)" + "id" "45724" + "plane" "(-1312 -3296 64) (-1312 -3312 64) (-1312 -3312 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59397" - "plane" "(-128 -960 -32) (-128 -960 64) (-108 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "45723" + "plane" "(-1312 -3312 64) (-1344 -3312 72) (-1344 -3312 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59396" - "plane" "(-108 -928 -32) (-108 -928 64) (-128 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "45722" + "plane" "(-1312 -3296 96) (-1344 -3296 96) (-1344 -3296 72)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87025,64 +89287,65 @@ world } side { - "id" "59395" - "plane" "(-108 -960 -32) (-108 -928 -32) (-128 -928 -32)" + "id" "45721" + "plane" "(-1344 -3312 72) (-1344 -3296 72) (-1344 -3296 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 183 140" + "color" "0 173 122" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171205" + "id" "88322" side { - "id" "59467" - "plane" "(216 -960 216) (216 -928 216) (224 -928 216)" + "id" "45732" + "plane" "(-1344 -3312 96) (-1376 -3312 96) (-1376 -3296 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59466" - "plane" "(216 -928 88) (216 -928 216) (216 -960 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "45731" + "plane" "(-1344 -3296 72) (-1376 -3296 64) (-1376 -3312 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59465" - "plane" "(224 -960 88) (224 -960 216) (224 -928 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "45730" + "plane" "(-1376 -3312 64) (-1376 -3296 64) (-1376 -3296 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59464" - "plane" "(224 -928 88) (224 -928 216) (216 -928 216)" + "id" "45729" + "plane" "(-1376 -3312 96) (-1344 -3312 96) (-1344 -3312 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87090,10 +89353,10 @@ world } side { - "id" "59463" - "plane" "(216 -960 88) (216 -960 216) (224 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "45728" + "plane" "(-1376 -3296 64) (-1344 -3296 72) (-1344 -3296 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87101,53 +89364,54 @@ world } side { - "id" "59462" - "plane" "(216 -928 88) (216 -960 88) (224 -960 88)" + "id" "45727" + "plane" "(-1344 -3296 72) (-1344 -3312 72) (-1344 -3312 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 255 220" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171207" + "id" "88323" side { - "id" "59479" - "plane" "(224 -960 216) (224 -928 216) (288 -928 216)" + "id" "45738" + "plane" "(-1184 -3296 96) (-1184 -3312 96) (-1232 -3312 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59478" - "plane" "(224 -928 208) (224 -928 216) (224 -960 216)" + "id" "45737" + "plane" "(-1184 -3312 64) (-1184 -3296 64) (-1232 -3296 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59477" - "plane" "(288 -960 208) (288 -960 216) (288 -928 216)" + "id" "45736" + "plane" "(-1184 -3296 64) (-1184 -3312 64) (-1184 -3312 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87155,10 +89419,10 @@ world } side { - "id" "59476" - "plane" "(288 -928 208) (288 -928 216) (224 -928 216)" + "id" "45735" + "plane" "(-1184 -3312 64) (-1232 -3312 72) (-1232 -3312 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87166,10 +89430,10 @@ world } side { - "id" "59475" - "plane" "(224 -960 208) (224 -960 216) (288 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "45734" + "plane" "(-1184 -3296 96) (-1232 -3296 96) (-1232 -3296 72)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87177,64 +89441,65 @@ world } side { - "id" "59474" - "plane" "(224 -928 208) (224 -960 208) (288 -960 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45733" + "plane" "(-1232 -3312 72) (-1232 -3296 72) (-1232 -3296 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 129 202" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171208" + "id" "88324" side { - "id" "59485" - "plane" "(288 -960 216) (288 -928 216) (296 -928 216)" + "id" "45744" + "plane" "(-1024 -3296 96) (-1024 -3312 96) (-1184 -3312 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59484" - "plane" "(288 -928 88) (288 -928 216) (288 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "45743" + "plane" "(-1024 -3312 -32) (-1024 -3296 -32) (-1184 -3296 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59483" - "plane" "(296 -960 88) (296 -960 216) (296 -928 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "45742" + "plane" "(-1024 -3296 -32) (-1024 -3312 -32) (-1024 -3312 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59482" - "plane" "(296 -928 88) (296 -928 216) (288 -928 216)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "45741" + "plane" "(-1184 -3312 -32) (-1184 -3296 -32) (-1184 -3296 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87242,10 +89507,10 @@ world } side { - "id" "59481" - "plane" "(288 -960 88) (288 -960 216) (296 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "45740" + "plane" "(-1024 -3312 -32) (-1184 -3312 -32) (-1184 -3312 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87253,75 +89518,76 @@ world } side { - "id" "59480" - "plane" "(288 -928 88) (288 -960 88) (296 -960 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45739" + "plane" "(-1184 -3296 -32) (-1024 -3296 -32) (-1024 -3296 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 139 240" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171209" + "id" "88328" side { - "id" "59491" - "plane" "(224 -960 96) (224 -928 96) (288 -928 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45800" + "plane" "(-1456 -3456 128) (-1456 -3296 128) (-1472 -3296 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59490" - "plane" "(224 -928 88) (224 -928 96) (224 -960 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "45799" + "plane" "(-1456 -3304 144) (-1456 -3296 128) (-1456 -3456 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59489" - "plane" "(288 -960 88) (288 -960 96) (288 -928 96)" + "id" "45798" + "plane" "(-1472 -3456 128) (-1472 -3296 128) (-1472 -3304 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59488" - "plane" "(288 -928 88) (288 -928 96) (224 -928 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "45797" + "plane" "(-1472 -3304 144) (-1472 -3296 128) (-1456 -3296 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59487" - "plane" "(224 -960 88) (224 -960 96) (288 -960 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "45796" + "plane" "(-1456 -3456 144) (-1456 -3456 128) (-1472 -3456 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87329,173 +89595,153 @@ world } side { - "id" "59486" - "plane" "(224 -928 88) (224 -960 88) (288 -960 88)" + "id" "45795" + "plane" "(-1456 -3304 144) (-1456 -3456 144) (-1472 -3456 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 151 252" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171257" - side - { - "id" "59519" - "plane" "(192 -928 88) (312 -928 88) (312 -964 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "88329" side { - "id" "59518" - "plane" "(312 -964 68) (312 -964 88) (312 -928 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "45775" + "plane" "(-1456 -3328 192) (-1456 -3304 144) (-1456 -3432 144)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59517" - "plane" "(192 -928 64) (312 -928 64) (312 -928 88)" + "id" "45774" + "plane" "(-1472 -3304 144) (-1472 -3328 192) (-1472 -3432 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59516" - "plane" "(192 -964 88) (312 -964 88) (312 -964 68)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "45773" + "plane" "(-1472 -3328 192) (-1472 -3304 144) (-1456 -3304 144)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59515" - "plane" "(192 -960 64) (312 -960 64) (312 -928 64)" + "id" "45772" + "plane" "(-1456 -3432 192) (-1456 -3432 144) (-1472 -3432 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59514" - "plane" "(192 -964 68) (312 -964 68) (312 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "45771" + "plane" "(-1456 -3328 192) (-1456 -3432 192) (-1472 -3432 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59513" - "plane" "(192 -928 64) (192 -928 88) (192 -964 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "45770" + "plane" "(-1456 -3432 144) (-1456 -3304 144) (-1472 -3304 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 221 114" + "color" "0 225 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171258" - side - { - "id" "59526" - "plane" "(8 -964 88) (8 -928 88) (128 -928 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "88330" side { - "id" "59525" - "plane" "(8 -928 64) (8 -928 88) (8 -964 88)" + "id" "45781" + "plane" "(-1456 -3376 272) (-1456 -3376 256) (-1472 -3376 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59524" - "plane" "(128 -928 88) (8 -928 88) (8 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "45780" + "plane" "(-1456 -3344 240) (-1456 -3344 224) (-1456 -3376 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59523" - "plane" "(8 -964 68) (8 -964 88) (128 -964 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "45779" + "plane" "(-1472 -3376 272) (-1472 -3376 256) (-1472 -3344 224)" + "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" "59522" - "plane" "(8 -928 64) (8 -960 64) (128 -960 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "45778" + "plane" "(-1472 -3344 240) (-1472 -3344 224) (-1456 -3344 224)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59521" - "plane" "(8 -960 64) (8 -964 68) (128 -964 68)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "45777" + "plane" "(-1456 -3344 240) (-1456 -3376 272) (-1472 -3376 272)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87503,42 +89749,43 @@ world } side { - "id" "59520" - "plane" "(128 -964 68) (128 -964 88) (128 -928 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "45776" + "plane" "(-1472 -3344 224) (-1472 -3376 256) (-1456 -3376 256)" + "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 221 114" + "color" "0 199 216" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171260" + "id" "88331" side { - "id" "59538" - "plane" "(192 -964 216) (192 -928 216) (200 -928 216)" + "id" "45787" + "plane" "(-1456 -3456 272) (-1456 -3456 256) (-1472 -3456 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59537" - "plane" "(192 -928 88) (192 -928 216) (192 -964 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "45786" + "plane" "(-1456 -3376 272) (-1456 -3376 256) (-1456 -3456 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87546,86 +89793,98 @@ world } side { - "id" "59536" - "plane" "(200 -964 88) (200 -964 216) (200 -928 216)" + "id" "45785" + "plane" "(-1472 -3456 272) (-1472 -3456 256) (-1472 -3376 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59535" - "plane" "(200 -928 88) (200 -928 216) (192 -928 216)" + "id" "45784" + "plane" "(-1472 -3376 272) (-1472 -3376 256) (-1456 -3376 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59534" - "plane" "(192 -964 88) (192 -964 216) (200 -964 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "45783" + "plane" "(-1456 -3376 272) (-1456 -3456 272) (-1472 -3456 272)" + "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" "59533" - "plane" "(192 -928 88) (192 -964 88) (200 -964 88)" + "id" "45782" + "plane" "(-1472 -3456 256) (-1456 -3456 256) (-1456 -3376 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 117 250" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171262" + "id" "88332" side { - "id" "59550" - "plane" "(120 -964 216) (120 -928 216) (128 -928 216)" + "id" "45794" + "plane" "(-1456 -3376 256) (-1456 -3456 256) (-1472 -3456 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0.00195313] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59549" - "plane" "(120 -928 88) (120 -928 216) (120 -964 216)" + "id" "45793" + "plane" "(-1456 -3456 192) (-1456 -3456 256) (-1456 -3376 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "45792" + "plane" "(-1472 -3328 192) (-1472 -3344 224) (-1472 -3376 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59548" - "plane" "(128 -964 88) (128 -964 216) (128 -928 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "45791" + "plane" "(-1456 -3328 192) (-1456 -3344 224) (-1472 -3344 224)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87633,21 +89892,21 @@ world } side { - "id" "59547" - "plane" "(128 -928 88) (128 -928 216) (120 -928 216)" + "id" "45790" + "plane" "(-1456 -3344 224) (-1456 -3376 256) (-1472 -3376 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59546" - "plane" "(120 -964 88) (120 -964 216) (128 -964 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "45789" + "plane" "(-1472 -3456 192) (-1472 -3456 256) (-1456 -3456 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87655,53 +89914,54 @@ world } side { - "id" "59545" - "plane" "(120 -928 88) (120 -964 88) (128 -964 88)" + "id" "45788" + "plane" "(-1456 -3456 192) (-1456 -3328 192) (-1472 -3328 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 163 216" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171263" + "id" "89906" side { - "id" "59562" - "plane" "(128 -964 216) (128 -928 216) (192 -928 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "46112" + "plane" "(-2048 -3520 -48) (-2048 -2592 -48) (-1856 -2592 -48)" + "material" "DE_CBBLE/GRASSFLOOR01" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59561" - "plane" "(128 -928 208) (128 -928 216) (128 -964 216)" + "id" "46111" + "plane" "(-2048 -2592 -64) (-2048 -3520 -64) (-1856 -3520 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59560" - "plane" "(192 -964 208) (192 -964 216) (192 -928 216)" + "id" "46110" + "plane" "(-1856 -2592 -64) (-1856 -3520 -64) (-1856 -3520 -48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87709,10 +89969,10 @@ world } side { - "id" "59559" - "plane" "(192 -928 208) (192 -928 216) (128 -928 216)" + "id" "46109" + "plane" "(-2048 -3520 -64) (-2048 -2592 -64) (-2048 -2592 -48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87720,42 +89980,42 @@ world } side { - "id" "59558" - "plane" "(128 -964 208) (128 -964 216) (192 -964 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46108" + "plane" "(-1856 -3520 -64) (-2048 -3520 -64) (-2048 -3520 -48)" + "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" "59557" - "plane" "(128 -928 208) (128 -964 208) (192 -964 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 -1 0 0] 0.125" + "id" "46107" + "plane" "(-2048 -2592 -64) (-1856 -2592 -64) (-1856 -2592 -48)" + "material" "DE_CBBLE/GRASSFLOOR01" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171268" + "id" "89921" side { - "id" "59610" - "plane" "(24 -960 216) (24 -928 216) (32 -928 216)" + "id" "46130" + "plane" "(880 -1200 256) (880 -1184 256) (896 -1184 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87763,21 +90023,21 @@ world } side { - "id" "59609" - "plane" "(24 -928 88) (24 -928 216) (24 -960 216)" + "id" "46129" + "plane" "(880 -1184 64) (880 -1200 64) (896 -1204 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59608" - "plane" "(32 -960 88) (32 -960 216) (32 -928 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "46128" + "plane" "(880 -1184 64) (880 -1184 256) (880 -1200 256)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87785,20 +90045,20 @@ world } side { - "id" "59607" - "plane" "(32 -928 88) (32 -928 216) (24 -928 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46127" + "plane" "(896 -1184 256) (896 -1184 64) (896 -1204 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59606" - "plane" "(24 -960 88) (24 -960 216) (32 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46126" + "plane" "(896 -1184 64) (896 -1184 256) (880 -1184 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -87807,30 +90067,30 @@ world } side { - "id" "59605" - "plane" "(24 -928 88) (24 -960 88) (32 -960 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "46125" + "plane" "(896 -1204 256) (896 -1204 64) (880 -1200 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171269" + "id" "89931" side { - "id" "59616" - "plane" "(32 -960 96) (32 -928 96) (96 -928 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46148" + "plane" "(766 -1184 256) (718 -1360 256) (706 -1360 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -87839,42 +90099,42 @@ world } side { - "id" "59615" - "plane" "(32 -928 88) (32 -928 96) (32 -960 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46147" + "plane" "(718 -1360 224) (766 -1184 224) (754 -1184 224)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59614" - "plane" "(96 -960 88) (96 -960 96) (96 -928 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46146" + "plane" "(754 -1184 256) (706 -1360 256) (706 -1360 224)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59613" - "plane" "(96 -928 88) (96 -928 96) (32 -928 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" + "id" "46145" + "plane" "(718 -1360 256) (766 -1184 256) (766 -1184 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59612" - "plane" "(32 -960 88) (32 -960 96) (96 -960 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46144" + "plane" "(706 -1360 256) (718 -1360 256) (718 -1360 224)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -87883,29 +90143,29 @@ world } side { - "id" "59611" - "plane" "(32 -928 88) (32 -960 88) (96 -960 88)" + "id" "46143" + "plane" "(766 -1184 256) (754 -1184 256) (754 -1184 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171271" + "id" "89932" side { - "id" "59628" - "plane" "(96 -960 216) (96 -928 216) (104 -928 216)" + "id" "46430" + "plane" "(768 -1160 256) (766 -1184 256) (754 -1184 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -87915,42 +90175,42 @@ world } side { - "id" "59627" - "plane" "(96 -928 88) (96 -928 216) (96 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "46429" + "plane" "(766 -1184 64) (768 -1160 64) (752 -1152 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" "59626" - "plane" "(104 -960 88) (104 -960 216) (104 -928 216)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46428" + "plane" "(752 -1152 256) (754 -1184 256) (754 -1184 64)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59625" - "plane" "(104 -928 88) (104 -928 216) (96 -928 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46427" + "plane" "(766 -1184 256) (768 -1160 256) (768 -1160 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59624" - "plane" "(96 -960 88) (96 -960 216) (104 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46426" + "plane" "(768 -1160 256) (752 -1152 256) (752 -1152 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -87959,52 +90219,52 @@ world } side { - "id" "59623" - "plane" "(96 -928 88) (96 -960 88) (104 -960 88)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46425" + "plane" "(754 -1184 256) (766 -1184 256) (766 -1184 64)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171272" + "id" "90070" side { - "id" "59634" - "plane" "(32 -960 216) (32 -928 216) (96 -928 216)" + "id" "46286" + "plane" "(736 -1294 224) (727 -1327 224) (715 -1327 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 -1 0 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59633" - "plane" "(32 -928 208) (32 -928 216) (32 -960 216)" + "id" "46285" + "plane" "(727 -1327 177) (735.998 -1294 214) (723.997 -1294 214)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 -1 0 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59632" - "plane" "(96 -960 208) (96 -960 216) (96 -928 216)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46284" + "plane" "(724 -1294 224) (715 -1327 224) (715 -1327 177)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -88013,10 +90273,10 @@ world } side { - "id" "59631" - "plane" "(96 -928 208) (96 -928 216) (32 -928 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "id" "46283" + "plane" "(727 -1327 224) (736 -1294 224) (735.998 -1294 214)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88024,10 +90284,10 @@ world } side { - "id" "59630" - "plane" "(32 -960 208) (32 -960 216) (96 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "46282" + "plane" "(715 -1327 224) (727 -1327 224) (727 -1327 177)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -36] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88035,75 +90295,75 @@ world } side { - "id" "59629" - "plane" "(32 -928 208) (32 -960 208) (96 -960 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "46281" + "plane" "(736 -1294 224) (724 -1294 224) (723.997 -1294 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171278" + "id" "90073" side { - "id" "59646" - "plane" "(200 -928 216) (216 -928 216) (216 -960 216)" + "id" "46304" + "plane" "(745 -1217 224) (757 -1217 224) (748 -1250 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 28] 0.25" + "vaxis" "[0 1 0 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59645" - "plane" "(200 -928 216) (200 -964 216) (200 -964 88)" + "id" "46303" + "plane" "(736 -1250 214) (748 -1250 214) (757 -1217 177)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 28] 0.25" + "vaxis" "[0 1 0 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59644" - "plane" "(216 -960 216) (216 -928 216) (216 -928 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46302" + "plane" "(748 -1250 214) (748 -1250 224) (757 -1217 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59643" - "plane" "(216 -928 216) (200 -928 216) (200 -928 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46301" + "plane" "(736 -1250 224) (736 -1250 214) (745 -1217 177)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59642" - "plane" "(200 -964 216) (216 -960 216) (216 -960 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "46300" + "plane" "(757 -1217 177) (757 -1217 224) (745 -1217 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 28] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88111,75 +90371,75 @@ world } side { - "id" "59641" - "plane" "(200 -964 88) (216 -960 88) (216 -928 88)" + "id" "46299" + "plane" "(736 -1250 214) (736 -1250 224) (748 -1250 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 187 100" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171284" + "id" "90079" side { - "id" "59658" - "plane" "(104 -928 216) (120 -928 216) (120 -964 216)" + "id" "46322" + "plane" "(736 -1294 224) (724 -1294 224) (736 -1250 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -20] 0.25" + "vaxis" "[0 1 0 20] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59657" - "plane" "(104 -928 216) (104 -960 216) (104 -960 88)" + "id" "46321" + "plane" "(748 -1250 218) (736 -1250 218) (724.002 -1294 218)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 -20] 0.25" + "vaxis" "[0 1 0 20] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59656" - "plane" "(120 -964 216) (120 -928 216) (120 -928 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46320" + "plane" "(736.003 -1294 218) (736 -1294 224) (748 -1250 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59655" - "plane" "(120 -928 216) (104 -928 216) (104 -928 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46319" + "plane" "(736 -1250 218) (736 -1250 224) (724 -1294 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59654" - "plane" "(104 -960 216) (120 -964 216) (120 -964 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "46318" + "plane" "(748 -1250 218) (748 -1250 224) (736 -1250 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -20] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88187,64 +90447,64 @@ world } side { - "id" "59653" - "plane" "(104 -960 88) (120 -964 88) (120 -928 88)" + "id" "46317" + "plane" "(724.002 -1294 218) (724 -1294 224) (736 -1294 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 187 100" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171287" + "id" "90083" side { - "id" "59670" - "plane" "(296 -928 216) (312 -928 216) (312 -964 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "46323" + "plane" "(754 -1224.85 186) (823.345 -1170.67 186) (825.808 -1173.82 186)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.788011 0.615662 0 -14.6686] 0.25" + "vaxis" "[0.615662 -0.788011 0 10.8477] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59669" - "plane" "(296 -928 216) (296 -960 216) (296 -960 88)" + "id" "46324" + "plane" "(756.463 -1228 64) (825.808 -1173.82 64) (823.345 -1170.67 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0.788011 0.615662 0 -0.272707] 0.25" + "vaxis" "[0.615662 -0.788011 0 26.3911] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59668" - "plane" "(312 -964 216) (312 -928 216) (312 -928 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46325" + "plane" "(754 -1224.85 186) (756.463 -1228 186) (756.463 -1228 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.615662 0.788011 0 -10.8477] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59667" - "plane" "(312 -928 216) (296 -928 216) (296 -928 88)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "46326" + "plane" "(823.345 -1170.67 64) (825.808 -1173.82 64) (825.808 -1173.82 186)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.615662 0.788011 0 -10.8477] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88252,10 +90512,10 @@ world } side { - "id" "59666" - "plane" "(296 -960 216) (312 -964 216) (312 -964 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "46327" + "plane" "(823.345 -1170.67 186) (754 -1224.85 186) (754 -1224.85 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.788011 0.615662 0 -0.272707] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88263,193 +90523,182 @@ world } side { - "id" "59665" - "plane" "(296 -960 88) (312 -964 88) (312 -928 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "46328" + "plane" "(825.808 -1173.82 64) (756.463 -1228 64) (756.463 -1228 186)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.788011 0.615662 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 239 136" + "color" "0 199 224" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171294" + "id" "90089" side { - "id" "59682" - "plane" "(24 -960 216) (8 -964 216) (8 -928 216)" + "id" "46340" + "plane" "(749 -1217 218) (753 -1217 218) (722.997 -1327 218)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -20] 0.25" + "vaxis" "[0 1 0 20] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59681" - "plane" "(24 -928 88) (24 -960 88) (24 -960 216)" + "id" "46339" + "plane" "(718.999 -1327 182) (723 -1327 182) (753 -1217 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 -20] 0.25" + "vaxis" "[0 1 0 20] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59680" - "plane" "(8 -964 88) (8 -928 88) (8 -928 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46338" + "plane" "(753 -1217 218) (753 -1217 182) (723 -1327 182)" + "material" "CS_ASSAULT/METALWALL002A" + "uaxis" "[0 -1 0 256] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59679" - "plane" "(8 -928 88) (24 -928 88) (24 -928 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46337" + "plane" "(718.997 -1327 218) (718.999 -1327 182) (749 -1217 182)" + "material" "CS_ASSAULT/METALWALL002A" + "uaxis" "[0 -1 0 256] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59678" - "plane" "(24 -960 88) (8 -964 88) (8 -964 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "46336" + "plane" "(749 -1217 218) (749 -1217 182) (753 -1217 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -20] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59677" - "plane" "(24 -928 88) (8 -928 88) (8 -964 88)" + "id" "46335" + "plane" "(722.997 -1327 218) (723 -1327 182) (718.999 -1327 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -20] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 239 136" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171296" - side - { - "id" "59696" - "plane" "(328 -928 88) (448 -928 88) (448 -964 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "90095" side { - "id" "59695" - "plane" "(448 -964 68) (448 -964 88) (448 -928 88)" + "id" "46352" + "plane" "(754 -1217 182) (724 -1327 182) (718 -1327 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 -20] 0.25" + "vaxis" "[0 1 0 20] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59694" - "plane" "(328 -928 64) (448 -928 64) (448 -928 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46351" + "plane" "(724.003 -1327 180) (754 -1217 180) (748 -1217 180)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59693" - "plane" "(328 -964 88) (448 -964 88) (448 -964 68)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46350" + "plane" "(754 -1217 180) (724.003 -1327 180) (724 -1327 182)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59692" - "plane" "(328 -960 64) (448 -960 64) (448 -928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "46349" + "plane" "(718.002 -1327 180) (748 -1217 180) (748 -1217 182)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59691" - "plane" "(328 -964 68) (448 -964 68) (448 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "46348" + "plane" "(748 -1217 180) (754 -1217 180) (754 -1217 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -20] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59690" - "plane" "(328 -928 64) (328 -928 88) (328 -964 88)" + "id" "46347" + "plane" "(724.003 -1327 180) (718.002 -1327 180) (718 -1327 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -20] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 221 114" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171299" + "id" "90153" side { - "id" "59710" - "plane" "(-128 -928 88) (-8 -928 88) (-8 -964 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46364" + "plane" "(768 -1184 280) (720 -1360 280) (704 -1360 280)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -88458,65 +90707,54 @@ world } side { - "id" "59709" - "plane" "(-8 -964 68) (-8 -964 88) (-8 -928 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46363" + "plane" "(728 -1360 256) (776 -1184 256) (744 -1184 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -15] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59708" - "plane" "(-128 -928 64) (-8 -928 64) (-8 -928 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46362" + "plane" "(752 -1184 280) (704 -1360 280) (696 -1360 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59707" - "plane" "(-128 -964 88) (-8 -964 88) (-8 -964 68)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46361" + "plane" "(720 -1360 280) (768 -1184 280) (776 -1184 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -15] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59706" - "plane" "(-128 -960 64) (-8 -960 64) (-8 -928 64)" + "id" "46360" + "plane" "(704 -1360 280) (720 -1360 280) (728 -1360 256)" "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" "59705" - "plane" "(-128 -964 68) (-8 -964 68) (-8 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59704" - "plane" "(-128 -928 64) (-128 -928 88) (-128 -964 88)" + "id" "46359" + "plane" "(768 -1184 280) (752 -1184 280) (744 -1184 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88524,19 +90762,19 @@ world } editor { - "color" "0 221 114" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171313" + "id" "90169" side { - "id" "59746" - "plane" "(356 -960 96) (356 -928 96) (420 -928 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46376" + "plane" "(720 -1392 280) (703.999 -1392 280) (704 -1360 280)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -88545,32 +90783,32 @@ world } side { - "id" "59745" - "plane" "(356 -928 88) (356 -928 96) (356 -960 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46375" + "plane" "(728 -1360 256) (696 -1360 256) (696 -1392 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -15] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59744" - "plane" "(420 -960 88) (420 -960 96) (420 -928 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46374" + "plane" "(703.999 -1392 280) (696 -1392 256) (696 -1360 256)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59743" - "plane" "(420 -928 88) (420 -928 96) (356 -928 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "46373" + "plane" "(720 -1360 280) (728 -1360 256) (728 -1392 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 17] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88578,9 +90816,9 @@ world } side { - "id" "59742" - "plane" "(356 -960 88) (356 -960 96) (420 -960 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46372" + "plane" "(720 -1392 280) (728 -1392 256) (696 -1392 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -88589,64 +90827,64 @@ world } side { - "id" "59741" - "plane" "(356 -928 88) (356 -960 88) (420 -960 88)" + "id" "46371" + "plane" "(704 -1360 280) (696 -1360 256) (728 -1360 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171314" + "id" "90171" side { - "id" "59752" - "plane" "(420 -960 216) (420 -928 216) (428 -928 216)" + "id" "46388" + "plane" "(768 -1184 280) (751.999 -1184 280) (752 -1152 280)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59751" - "plane" "(420 -928 88) (420 -928 216) (420 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "46387" + "plane" "(776 -1152 256) (744 -1152 256) (744 -1184 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -15] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59750" - "plane" "(428 -960 88) (428 -960 216) (428 -928 216)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46386" + "plane" "(751.999 -1184 280) (744 -1184 256) (744 -1152 256)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59749" - "plane" "(428 -928 88) (428 -928 216) (420 -928 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "46385" + "plane" "(768 -1152 280) (776 -1152 256) (776 -1184 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -15] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88654,9 +90892,9 @@ world } side { - "id" "59748" - "plane" "(420 -960 88) (420 -960 216) (428 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46384" + "plane" "(768 -1184 280) (776 -1184 256) (744 -1184 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -88665,53 +90903,53 @@ world } side { - "id" "59747" - "plane" "(420 -928 88) (420 -960 88) (428 -960 88)" + "id" "46383" + "plane" "(752 -1152 280) (744 -1152 256) (776 -1152 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171316" + "id" "90210" side { - "id" "59764" - "plane" "(348 -960 216) (348 -928 216) (356 -928 216)" + "id" "46454" + "plane" "(766 -1184 224) (757 -1217 224) (745 -1217 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59763" - "plane" "(348 -928 88) (348 -928 216) (348 -960 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46453" + "plane" "(766 -1184 224) (766 -1184 112) (757 -1217 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59762" - "plane" "(356 -960 88) (356 -960 216) (356 -928 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "46452" + "plane" "(745 -1217 224) (745 -1217 112) (754 -1184 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88719,10 +90957,10 @@ world } side { - "id" "59761" - "plane" "(356 -928 88) (356 -928 216) (348 -928 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "46451" + "plane" "(754 -1184 224) (754 -1184 112) (766 -1184 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88730,10 +90968,10 @@ world } side { - "id" "59760" - "plane" "(348 -960 88) (348 -960 216) (356 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "46450" + "plane" "(757 -1217 224) (757 -1217 112) (745 -1217 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88741,10 +90979,10 @@ world } side { - "id" "59759" - "plane" "(348 -928 88) (348 -960 88) (356 -960 88)" + "id" "46449" + "plane" "(757 -1217 112) (766 -1184 112) (754 -1184 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88752,31 +90990,31 @@ world } editor { - "color" "0 133 222" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171317" + "id" "90211" side { - "id" "59770" - "plane" "(356 -960 216) (356 -928 216) (420 -928 216)" + "id" "46460" + "plane" "(754 -1184 64) (745 -1217 64) (757 -1217 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59769" - "plane" "(356 -928 208) (356 -928 216) (356 -960 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "46459" + "plane" "(766 -1184 64) (757 -1217 64) (757 -1217 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88784,10 +91022,10 @@ world } side { - "id" "59768" - "plane" "(420 -960 208) (420 -960 216) (420 -928 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "46458" + "plane" "(745 -1217 64) (754 -1184 64) (754 -1184 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88795,10 +91033,10 @@ world } side { - "id" "59767" - "plane" "(420 -928 208) (420 -928 216) (356 -928 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "46457" + "plane" "(754 -1184 64) (766 -1184 64) (766 -1184 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88806,10 +91044,10 @@ world } side { - "id" "59766" - "plane" "(356 -960 208) (356 -960 216) (420 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "46456" + "plane" "(757 -1217 64) (745 -1217 64) (745 -1217 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88817,9 +91055,9 @@ world } side { - "id" "59765" - "plane" "(356 -928 208) (356 -960 208) (420 -960 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46455" + "plane" "(745 -1217 112) (754 -1184 112) (766 -1184 112)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -88828,63 +91066,63 @@ world } editor { - "color" "0 133 222" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171328" + "id" "90212" side { - "id" "59806" - "plane" "(-100 -960 96) (-100 -928 96) (-36 -928 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46466" + "plane" "(706 -1360 224) (715 -1327 224) (727 -1327 224)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59805" - "plane" "(-100 -928 88) (-100 -928 96) (-100 -960 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46465" + "plane" "(715 -1327 112) (715 -1327 224) (706 -1360 224)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59804" - "plane" "(-36 -960 88) (-36 -960 96) (-36 -928 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46464" + "plane" "(718 -1360 112) (718 -1360 224) (727 -1327 224)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59803" - "plane" "(-36 -928 88) (-36 -928 96) (-100 -928 96)" + "id" "46463" + "plane" "(706 -1360 112) (706 -1360 224) (718 -1360 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59802" - "plane" "(-100 -960 88) (-100 -960 96) (-36 -960 96)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46462" + "plane" "(727 -1327 112) (727 -1327 224) (715 -1327 224)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -88893,10 +91131,10 @@ world } side { - "id" "59801" - "plane" "(-100 -928 88) (-100 -960 88) (-36 -960 88)" + "id" "46461" + "plane" "(715 -1327 112) (706 -1360 112) (718 -1360 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88904,30 +91142,30 @@ world } editor { - "color" "0 133 222" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171329" + "id" "90213" side { - "id" "59812" - "plane" "(-36 -960 216) (-36 -928 216) (-28 -928 216)" + "id" "46472" + "plane" "(715 -1327 64) (706 -1360 64) (718 -1360 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59811" - "plane" "(-36 -928 88) (-36 -928 216) (-36 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46471" + "plane" "(706 -1360 64) (715 -1327 64) (715 -1327 112)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -88936,31 +91174,31 @@ world } side { - "id" "59810" - "plane" "(-28 -960 88) (-28 -960 216) (-28 -928 216)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46470" + "plane" "(727 -1327 64) (718 -1360 64) (718 -1360 112)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59809" - "plane" "(-28 -928 88) (-28 -928 216) (-36 -928 216)" + "id" "46469" + "plane" "(718 -1360 64) (706 -1360 64) (706 -1360 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59808" - "plane" "(-36 -960 88) (-36 -960 216) (-28 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46468" + "plane" "(715 -1327 64) (727 -1327 64) (727 -1327 112)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -88969,10 +91207,10 @@ world } side { - "id" "59807" - "plane" "(-36 -928 88) (-36 -960 88) (-28 -960 88)" + "id" "46467" + "plane" "(706 -1360 112) (715 -1327 112) (727 -1327 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -88980,42 +91218,42 @@ world } editor { - "color" "0 133 222" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171331" + "id" "90214" side { - "id" "59824" - "plane" "(-108 -960 216) (-108 -928 216) (-100 -928 216)" + "id" "46478" + "plane" "(896 -1472 256) (640 -1472 256) (640 -1440 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59823" - "plane" "(-108 -928 88) (-108 -928 216) (-108 -960 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46477" + "plane" "(640 -1440 112) (640 -1440 256) (640 -1472 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59822" - "plane" "(-100 -960 88) (-100 -960 216) (-100 -928 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "46476" + "plane" "(640 -1472 112) (640 -1472 256) (896 -1472 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89023,21 +91261,21 @@ world } side { - "id" "59821" - "plane" "(-100 -928 88) (-100 -928 216) (-108 -928 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46475" + "plane" "(896 -1472 112) (896 -1472 256) (704 -1376 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59820" - "plane" "(-108 -960 88) (-108 -960 216) (-100 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "46474" + "plane" "(704 -1376 112) (704 -1376 256) (640 -1440 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89045,10 +91283,10 @@ world } side { - "id" "59819" - "plane" "(-108 -928 88) (-108 -960 88) (-100 -960 88)" + "id" "46473" + "plane" "(640 -1440 112) (640 -1472 112) (896 -1472 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89056,31 +91294,31 @@ world } editor { - "color" "0 133 222" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171332" + "id" "90215" side { - "id" "59830" - "plane" "(-100 -960 216) (-100 -928 216) (-36 -928 216)" + "id" "46484" + "plane" "(640 -1440 64) (640 -1472 64) (896 -1472 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59829" - "plane" "(-100 -928 208) (-100 -928 216) (-100 -960 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "46483" + "plane" "(640 -1472 64) (640 -1440 64) (640 -1440 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89088,10 +91326,10 @@ world } side { - "id" "59828" - "plane" "(-36 -960 208) (-36 -960 216) (-36 -928 216)" + "id" "46482" + "plane" "(896 -1472 64) (640 -1472 64) (640 -1472 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89099,10 +91337,10 @@ world } side { - "id" "59827" - "plane" "(-36 -928 208) (-36 -928 216) (-100 -928 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "46481" + "plane" "(704 -1376 64) (896 -1472 64) (896 -1472 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89110,10 +91348,10 @@ world } side { - "id" "59826" - "plane" "(-100 -960 208) (-100 -960 216) (-36 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "46480" + "plane" "(640 -1440 64) (704 -1376 64) (704 -1376 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89121,9 +91359,9 @@ world } side { - "id" "59825" - "plane" "(-100 -928 208) (-100 -960 208) (-36 -960 208)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46479" + "plane" "(896 -1472 112) (640 -1472 112) (640 -1440 112)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -89132,20 +91370,20 @@ world } editor { - "color" "0 133 222" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171338" + "id" "90216" side { - "id" "59842" - "plane" "(328 -960 216) (328 -928 216) (348 -928 216)" + "id" "46490" + "plane" "(706 -1360 256) (718 -1360 256) (720 -1384 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89153,31 +91391,31 @@ world } side { - "id" "59841" - "plane" "(328 -928 88) (328 -928 216) (328 -960 216)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46489" + "plane" "(706 -1360 256) (704 -1376 256) (704 -1376 112)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59840" - "plane" "(348 -960 88) (348 -960 216) (348 -928 216)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46488" + "plane" "(720 -1384 256) (718 -1360 256) (718 -1360 112)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59839" - "plane" "(348 -928 88) (348 -928 216) (328 -928 216)" - "material" "DEV/REFLECTIVITY_50B" + "id" "46487" + "plane" "(704 -1376 256) (720 -1384 256) (720 -1384 112)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -89186,9 +91424,9 @@ world } side { - "id" "59838" - "plane" "(328 -960 88) (328 -960 216) (348 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "id" "46486" + "plane" "(718 -1360 256) (706 -1360 256) (706 -1360 112)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -89197,10 +91435,10 @@ world } side { - "id" "59837" - "plane" "(328 -928 88) (328 -960 88) (348 -960 88)" + "id" "46485" + "plane" "(704 -1376 112) (720 -1384 112) (718 -1360 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89208,18 +91446,18 @@ world } editor { - "color" "0 143 120" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171348" + "id" "90217" side { - "id" "59854" - "plane" "(-28 -960 216) (-28 -928 216) (-8 -928 216)" + "id" "46496" + "plane" "(704 -1376 64) (720 -1384 64) (718 -1360 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -89229,42 +91467,42 @@ world } side { - "id" "59853" - "plane" "(-28 -928 88) (-28 -928 216) (-28 -960 216)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46495" + "plane" "(704 -1376 64) (706 -1360 64) (706 -1360 112)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59852" - "plane" "(-8 -960 88) (-8 -960 216) (-8 -928 216)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46494" + "plane" "(718 -1360 64) (720 -1384 64) (720 -1384 112)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59851" - "plane" "(-8 -928 88) (-8 -928 216) (-28 -928 216)" + "id" "46493" + "plane" "(720 -1384 64) (704 -1376 64) (704 -1376 112)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59850" - "plane" "(-28 -960 88) (-28 -960 216) (-8 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "id" "46492" + "plane" "(706 -1360 64) (718 -1360 64) (718 -1360 112)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -89273,8 +91511,8 @@ world } side { - "id" "59849" - "plane" "(-28 -928 88) (-28 -960 88) (-8 -960 88)" + "id" "46491" + "plane" "(706 -1360 112) (718 -1360 112) (720 -1384 112)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -89284,20 +91522,20 @@ world } editor { - "color" "0 143 120" + "color" "0 125 202" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171351" + "id" "90253" side { - "id" "59868" - "plane" "(312 -928 240) (312 -968 240) (8.00003 -968 240)" + "id" "46502" + "plane" "(640 -1728 64) (640 -1920 64) (704 -1920 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89305,9 +91543,9 @@ world } side { - "id" "59867" - "plane" "(312 -968 240) (312 -928 240) (312 -928 216)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46501" + "plane" "(640 -1920 64) (640 -1728 64) (640 -1728 112)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -89316,10 +91554,10 @@ world } side { - "id" "59866" - "plane" "(312 -928 216) (312 -928 240) (8.00003 -928 240)" + "id" "46500" + "plane" "(704 -1728 64) (704 -1920 64) (704 -1920 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89327,63 +91565,52 @@ world } side { - "id" "59865" - "plane" "(312 -968 240) (312 -968 220) (8.00003 -968 220)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46499" + "plane" "(640 -1728 64) (704 -1728 64) (704 -1728 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59864" - "plane" "(312 -964 216) (312 -928 216) (8.00003 -928 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 1 0 352] 0.125" + "id" "46498" + "plane" "(704 -1920 64) (640 -1920 64) (640 -1920 112)" + "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" "59863" - "plane" "(312 -968 220) (312 -964 216) (8.00003 -964 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46497" + "plane" "(640 -1920 112) (640 -1728 112) (704 -1728 112)" + "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 + editor { - "id" "59862" - "plane" "(8.00003 -928 240) (8.00003 -968 240) (8.00003 -968 220)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 221 114" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171378" + "id" "90254" side { - "id" "59915" - "plane" "(332 -964 88) (328 -968 88) (312 -968 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46508" + "plane" "(640 -1920 256) (640 -1856 256) (704 -1856 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -89392,98 +91619,97 @@ world } side { - "id" "59914" - "plane" "(332 -964 64) (328 -968 68) (328 -968 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46507" + "plane" "(640 -1856 112) (640 -1856 256) (640 -1920 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59913" - "plane" "(312 -968 88) (328 -968 88) (328 -968 68)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46506" + "plane" "(704 -1920 112) (704 -1920 256) (704 -1856 256)" + "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" "59912" - "plane" "(312 -968 68) (328 -968 68) (332 -964 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46505" + "plane" "(704 -1856 112) (704 -1856 256) (640 -1856 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59911" - "plane" "(308 -964 88) (312 -968 88) (312 -968 68)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46504" + "plane" "(640 -1920 112) (640 -1920 256) (704 -1920 256)" + "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" "59910" - "plane" "(308 -964 64) (332 -964 64) (332 -964 88)" + "id" "46503" + "plane" "(640 -1856 112) (640 -1920 112) (704 -1920 112)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "223 212 0" - "groupid" "171409" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171400" + "id" "90270" side { - "id" "59930" - "plane" "(336 -960 64) (332 -964 64) (332 -964 68)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46544" + "plane" "(640 -1728 256) (640 -1664 256) (704 -1664 256)" + "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" "59929" - "plane" "(328 -964 64) (332 -964 64) (336 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 1 0 31.9985] 0.125" + "id" "46543" + "plane" "(640 -1664 192) (640 -1664 256) (640 -1728 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59928" - "plane" "(332 -964 68) (332 -964 64) (328 -964 64)" + "id" "46542" + "plane" "(704 -1728 192) (704 -1728 256) (704 -1664 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89491,8 +91717,8 @@ world } side { - "id" "59927" - "plane" "(328 -960 64) (336 -960 64) (332 -964 68)" + "id" "46541" + "plane" "(704 -1664 192) (704 -1664 256) (640 -1664 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -89502,54 +91728,64 @@ world } side { - "id" "59926" - "plane" "(328 -964 68) (328 -964 64) (328 -960 64)" + "id" "46540" + "plane" "(640 -1728 192) (640 -1728 256) (704 -1728 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "46539" + "plane" "(640 -1664 192) (640 -1728 192) (704 -1728 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "223 212 0" - "groupid" "171409" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171405" + "id" "90301" side { - "id" "59935" - "plane" "(312 -960 64) (304 -960 64) (308 -964 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 1 0 31.9985] 0.125" + "id" "46592" + "plane" "(704 -1712 192) (640 -1712 192) (640 -1696 192)" + "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" "59934" - "plane" "(308 -964 68) (308 -964 64) (304 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46591" + "plane" "(640 -1712 192) (640 -1712 176) (640 -1696 180)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59933" - "plane" "(312 -964 64) (308 -964 64) (308 -964 68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "46590" + "plane" "(704 -1712 176) (704 -1712 192) (704 -1696 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89557,10 +91793,21 @@ world } side { - "id" "59932" - "plane" "(308 -964 68) (304 -960 64) (312 -960 64)" + "id" "46589" + "plane" "(640 -1712 176) (704 -1712 176) (704 -1696 180)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "46588" + "plane" "(704 -1696 192) (640 -1696 192) (640 -1696 180)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89568,10 +91815,10 @@ world } side { - "id" "59931" - "plane" "(312 -960 64) (312 -964 64) (312 -964 68)" + "id" "46587" + "plane" "(640 -1712 192) (704 -1712 192) (704 -1712 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89579,43 +91826,42 @@ world } editor { - "color" "223 212 0" - "groupid" "171409" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171411" + "id" "90302" side { - "id" "59956" - "plane" "(-8 -960 64) (-16 -960 64) (-12 -964 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 1 0 31.9985] 0.125" + "id" "46598" + "plane" "(640 -1728 192) (640 -1712 192) (704 -1712 192)" + "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" "59955" - "plane" "(-12 -964 68) (-12 -964 64) (-16 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46597" + "plane" "(640 -1728 192) (704 -1728 192) (704 -1728 168)" + "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" "59954" - "plane" "(-8 -964 64) (-12 -964 64) (-12 -964 68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "46596" + "plane" "(640 -1728 192) (640 -1728 168) (640 -1712 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89623,10 +91869,10 @@ world } side { - "id" "59953" - "plane" "(-12 -964 68) (-16 -960 64) (-8 -960 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "46595" + "plane" "(704 -1728 192) (704 -1712 192) (704 -1712 176)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89634,10 +91880,21 @@ world } side { - "id" "59952" - "plane" "(-8 -960 64) (-8 -964 64) (-8 -964 68)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46594" + "plane" "(640 -1728 168) (704 -1728 168) (704 -1712 176)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "46593" + "plane" "(704 -1712 192) (640 -1712 192) (640 -1712 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89645,43 +91902,42 @@ world } editor { - "color" "223 212 0" - "groupid" "171410" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171412" + "id" "90303" side { - "id" "59961" - "plane" "(16 -960 64) (12 -964 64) (12 -964 68)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46604" + "plane" "(704 -1696 192) (640 -1696 192) (640 -1680 192)" + "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" "59960" - "plane" "(8 -964 64) (12 -964 64) (16 -960 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 1 0 31.9985] 0.125" + "id" "46603" + "plane" "(640 -1680 176) (640 -1680 192) (640 -1696 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59959" - "plane" "(12 -964 68) (12 -964 64) (8 -964 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "46602" + "plane" "(704 -1696 180) (704 -1696 192) (704 -1680 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89689,10 +91945,21 @@ world } side { - "id" "59958" - "plane" "(8 -960 64) (16 -960 64) (12 -964 68)" + "id" "46601" + "plane" "(640 -1696 180) (704 -1696 180) (704 -1680 176)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "46600" + "plane" "(640 -1696 192) (704 -1696 192) (704 -1696 180)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89700,10 +91967,10 @@ world } side { - "id" "59957" - "plane" "(8 -964 68) (8 -964 64) (8 -960 64)" + "id" "46599" + "plane" "(704 -1680 192) (640 -1680 192) (640 -1680 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89711,76 +91978,75 @@ world } editor { - "color" "223 212 0" - "groupid" "171410" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171413" + "id" "90304" side { - "id" "59967" - "plane" "(12 -964 88) (8 -968 88) (-8 -968 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "46610" + "plane" "(640 -1664 192) (704 -1664 192) (704 -1680 192)" + "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" "59966" - "plane" "(12 -964 64) (8 -968 68) (8 -968 88)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46609" + "plane" "(704 -1664 192) (640 -1664 192) (640 -1664 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59965" - "plane" "(-8 -968 88) (8 -968 88) (8 -968 68)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46608" + "plane" "(640 -1664 168) (640 -1664 192) (640 -1680 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59964" - "plane" "(-8 -968 68) (8 -968 68) (12 -964 64)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46607" + "plane" "(704 -1664 192) (704 -1664 168) (704 -1680 176)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59963" - "plane" "(-12 -964 88) (-8 -968 88) (-8 -968 68)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46606" + "plane" "(704 -1664 168) (640 -1664 168) (640 -1680 176)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "59962" - "plane" "(-12 -964 64) (12 -964 64) (12 -964 88)" + "id" "46605" + "plane" "(640 -1680 192) (704 -1680 192) (704 -1680 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89788,162 +92054,170 @@ world } editor { - "color" "223 212 0" - "groupid" "171410" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171432" + "id" "90313" side { - "id" "60004" - "plane" "(336 -960 216) (332 -964 216) (332 -964 220)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46622" + "plane" "(704 -1728 64) (640 -1728 64) (640 -1664 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60003" - "plane" "(328 -964 216) (332 -964 216) (336 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "46621" + "plane" "(704 -1664 0) (640 -1664 0) (640 -1728 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60002" - "plane" "(332 -964 220) (332 -964 216) (328 -964 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46620" + "plane" "(640 -1728 0) (640 -1664 0) (640 -1664 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60001" - "plane" "(328 -960 216) (336 -960 216) (332 -964 220)" + "id" "46619" + "plane" "(640 -1664 0) (704 -1664 0) (704 -1664 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60000" - "plane" "(328 -964 220) (328 -964 216) (328 -960 216)" + "id" "46618" + "plane" "(704 -1728 0) (640 -1728 0) (640 -1728 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "46617" + "plane" "(704 -1664 0) (704 -1728 0) (704 -1728 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "223 212 0" - "groupid" "171414" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171433" + "id" "90318" side { - "id" "60010" - "plane" "(332 -964 240) (328 -968 240) (312 -968 240)" + "id" "46634" + "plane" "(656 -1664 64) (656 -1728 64) (704 -1728 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60009" - "plane" "(332 -964 216) (328 -968 220) (328 -968 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46633" + "plane" "(656 -1728 64) (656 -1664 64) (656 -1664 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60008" - "plane" "(312 -968 240) (328 -968 240) (328 -968 220)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46632" + "plane" "(704 -1664 64) (704 -1728 64) (704 -1728 192)" + "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" "60007" - "plane" "(312 -968 220) (328 -968 220) (332 -964 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46631" + "plane" "(656 -1664 64) (704 -1664 64) (704 -1664 192)" + "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" "60006" - "plane" "(312 -964 216) (332 -964 216) (332 -964 240)" + "id" "46630" + "plane" "(704 -1728 64) (656 -1728 64) (656 -1728 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60005" - "plane" "(312 -964 240) (312 -968 240) (312 -968 220)" + "id" "46629" + "plane" "(656 -1728 192) (656 -1664 192) (704 -1664 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "223 212 0" - "groupid" "171414" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171434" + "id" "90341" side { - "id" "60024" - "plane" "(448 -964 240) (328 -964 240) (328 -928 240)" + "id" "46646" + "plane" "(640 -1792 256) (640 -1728 256) (704 -1728 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -89953,21 +92227,21 @@ world } side { - "id" "60023" - "plane" "(448 -928 240) (448 -928 216) (448 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46645" + "plane" "(640 -1728 112) (640 -1728 256) (640 -1792 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60022" - "plane" "(448 -928 240) (328 -928 240) (328 -928 216)" + "id" "46644" + "plane" "(704 -1792 112) (704 -1792 256) (704 -1728 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -89975,207 +92249,205 @@ world } side { - "id" "60021" - "plane" "(448 -964 220) (328 -964 220) (328 -964 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "60020" - "plane" "(448 -928 216) (328 -928 216) (328 -960 216)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46643" + "plane" "(704 -1728 112) (704 -1728 256) (640 -1728 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60019" - "plane" "(448 -960 216) (328 -960 216) (328 -964 220)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46642" + "plane" "(640 -1792 112) (640 -1792 256) (704 -1792 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60018" - "plane" "(328 -964 240) (328 -964 220) (328 -960 216)" + "id" "46641" + "plane" "(640 -1728 112) (640 -1792 112) (704 -1792 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 221 114" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171439" + "id" "90342" side { - "id" "60041" - "plane" "(8 -964 240) (8 -968 240) (-8 -968 240)" + "id" "46658" + "plane" "(640 -1856 256) (640 -1792 256) (704 -1792 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60040" - "plane" "(-12 -964 240) (-8 -968 240) (-8 -968 220)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46657" + "plane" "(640 -1792 208) (640 -1792 256) (640 -1856 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60039" - "plane" "(8 -968 220) (-8 -968 220) (-8 -968 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46656" + "plane" "(704 -1856 208) (704 -1856 256) (704 -1792 256)" + "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" "60038" - "plane" "(8 -964 216) (-12 -964 216) (-8 -968 220)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46655" + "plane" "(704 -1792 208) (704 -1792 256) (640 -1792 256)" + "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" "60037" - "plane" "(8 -964 240) (-12 -964 240) (-12 -964 216)" + "id" "46654" + "plane" "(640 -1856 208) (640 -1856 256) (704 -1856 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60036" - "plane" "(8 -964 216) (8 -968 220) (8 -968 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "46653" + "plane" "(640 -1792 208) (640 -1856 208) (704 -1856 208)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "223 212 0" - "groupid" "171438" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171440" + "id" "90348" side { - "id" "60046" - "plane" "(-12 -964 220) (-12 -964 216) (-16 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46670" + "plane" "(640 -1856 128) (640 -1792 128) (704 -1792 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60045" - "plane" "(-8 -960 216) (-16 -960 216) (-12 -964 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "46669" + "plane" "(640 -1792 112) (640 -1792 128) (640 -1856 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60044" - "plane" "(-8 -964 220) (-8 -964 216) (-12 -964 216)" + "id" "46668" + "plane" "(704 -1856 112) (704 -1856 128) (704 -1792 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60043" - "plane" "(-8 -964 220) (-12 -964 220) (-16 -960 216)" + "id" "46667" + "plane" "(704 -1792 112) (704 -1792 128) (640 -1792 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60042" - "plane" "(-8 -960 216) (-8 -964 216) (-8 -964 220)" + "id" "46666" + "plane" "(640 -1856 112) (640 -1856 128) (704 -1856 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "46665" + "plane" "(640 -1792 112) (640 -1856 112) (704 -1856 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "223 212 0" - "groupid" "171438" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171447" + "id" "90351" side { - "id" "60060" - "plane" "(-8 -964 240) (-128 -964 240) (-128 -928 240)" + "id" "46682" + "plane" "(656 -1856 208) (656 -1792 208) (704 -1792 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90183,9 +92455,9 @@ world } side { - "id" "60059" - "plane" "(-8 -928 240) (-8 -928 216) (-8 -960 216)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46681" + "plane" "(656 -1792 128) (656 -1792 208) (656 -1856 208)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90194,10 +92466,10 @@ world } side { - "id" "60058" - "plane" "(-8 -928 240) (-128 -928 240) (-128 -928 216)" + "id" "46680" + "plane" "(704 -1856 128) (704 -1856 208) (704 -1792 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90205,75 +92477,64 @@ world } side { - "id" "60057" - "plane" "(-8 -964 220) (-128 -964 220) (-128 -964 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "60056" - "plane" "(-8 -928 216) (-128 -928 216) (-128 -960 216)" + "id" "46679" + "plane" "(704 -1792 128) (704 -1792 208) (656 -1792 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60055" - "plane" "(-8 -960 216) (-128 -960 216) (-128 -964 220)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "46678" + "plane" "(656 -1856 128) (656 -1856 208) (704 -1856 208)" + "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" "60054" - "plane" "(-128 -964 240) (-128 -964 220) (-128 -960 216)" + "id" "46677" + "plane" "(656 -1792 128) (656 -1856 128) (704 -1856 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 221 114" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171603" + "id" "90370" side { - "id" "60282" - "plane" "(120 -964 368) (120 -928 368) (128 -928 368)" + "id" "46718" + "plane" "(640 -1472 64) (640 -1664 64) (704 -1664 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60281" - "plane" "(120 -928 240) (120 -928 368) (120 -964 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "id" "46717" + "plane" "(640 -1664 64) (640 -1472 64) (640 -1472 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90281,9 +92542,9 @@ world } side { - "id" "60280" - "plane" "(128 -964 240) (128 -964 368) (128 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46716" + "plane" "(704 -1472 64) (704 -1664 64) (704 -1664 112)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90292,10 +92553,10 @@ world } side { - "id" "60279" - "plane" "(128 -928 240) (128 -928 368) (120 -928 368)" + "id" "46715" + "plane" "(640 -1472 64) (704 -1472 64) (704 -1472 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90303,9 +92564,9 @@ world } side { - "id" "60278" - "plane" "(120 -964 240) (120 -964 368) (128 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46714" + "plane" "(704 -1664 64) (640 -1664 64) (640 -1664 112)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90314,29 +92575,29 @@ world } side { - "id" "60277" - "plane" "(120 -928 240) (120 -964 240) (128 -964 240)" + "id" "46713" + "plane" "(640 -1664 112) (640 -1472 112) (704 -1472 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171604" + "id" "90371" side { - "id" "60288" - "plane" "(104 -928 368) (120 -928 368) (120 -964 368)" + "id" "46724" + "plane" "(640 -1536 256) (640 -1472 256) (704 -1472 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -90346,9 +92607,9 @@ world } side { - "id" "60287" - "plane" "(104 -928 368) (104 -960 368) (104 -960 240)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46723" + "plane" "(640 -1472 112) (640 -1472 256) (640 -1536 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90357,8 +92618,8 @@ world } side { - "id" "60286" - "plane" "(120 -964 368) (120 -928 368) (120 -928 240)" + "id" "46722" + "plane" "(704 -1536 112) (704 -1536 256) (704 -1472 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -90368,8 +92629,8 @@ world } side { - "id" "60285" - "plane" "(120 -928 368) (104 -928 368) (104 -928 240)" + "id" "46721" + "plane" "(704 -1472 112) (704 -1472 256) (640 -1472 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -90379,9 +92640,9 @@ world } side { - "id" "60284" - "plane" "(104 -960 368) (120 -964 368) (120 -964 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "id" "46720" + "plane" "(640 -1536 112) (640 -1536 256) (704 -1536 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90390,8 +92651,8 @@ world } side { - "id" "60283" - "plane" "(104 -960 240) (120 -964 240) (120 -928 240)" + "id" "46719" + "plane" "(640 -1472 112) (640 -1536 112) (704 -1536 112)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -90401,19 +92662,19 @@ world } editor { - "color" "0 187 100" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171605" + "id" "90372" side { - "id" "60294" - "plane" "(96 -960 368) (96 -928 368) (104 -928 368)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46730" + "plane" "(640 -1600 128) (640 -1536 128) (704 -1536 128)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -90422,9 +92683,9 @@ world } side { - "id" "60293" - "plane" "(96 -928 240) (96 -928 368) (96 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46729" + "plane" "(640 -1536 112) (640 -1536 128) (640 -1600 128)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90433,8 +92694,8 @@ world } side { - "id" "60292" - "plane" "(104 -960 240) (104 -960 368) (104 -928 368)" + "id" "46728" + "plane" "(704 -1600 112) (704 -1600 128) (704 -1536 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -90444,8 +92705,8 @@ world } side { - "id" "60291" - "plane" "(104 -928 240) (104 -928 368) (96 -928 368)" + "id" "46727" + "plane" "(704 -1536 112) (704 -1536 128) (640 -1536 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -90455,9 +92716,9 @@ world } side { - "id" "60290" - "plane" "(96 -960 240) (96 -960 368) (104 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46726" + "plane" "(640 -1600 112) (640 -1600 128) (704 -1600 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90466,8 +92727,8 @@ world } side { - "id" "60289" - "plane" "(96 -928 240) (96 -960 240) (104 -960 240)" + "id" "46725" + "plane" "(640 -1536 112) (640 -1600 112) (704 -1600 112)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -90477,19 +92738,19 @@ world } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171607" + "id" "90373" side { - "id" "60306" - "plane" "(32 -960 248) (32 -928 248) (96 -928 248)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46736" + "plane" "(640 -1664 256) (640 -1600 256) (704 -1600 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -90498,9 +92759,9 @@ world } side { - "id" "60305" - "plane" "(32 -928 240) (32 -928 248) (32 -960 248)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46735" + "plane" "(640 -1600 112) (640 -1600 256) (640 -1664 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90509,8 +92770,8 @@ world } side { - "id" "60304" - "plane" "(96 -960 240) (96 -960 248) (96 -928 248)" + "id" "46734" + "plane" "(704 -1664 112) (704 -1664 256) (704 -1600 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -90520,10 +92781,10 @@ world } side { - "id" "60303" - "plane" "(96 -928 240) (96 -928 248) (32 -928 248)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "id" "46733" + "plane" "(704 -1600 112) (704 -1600 256) (640 -1600 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90531,9 +92792,9 @@ world } side { - "id" "60302" - "plane" "(32 -960 240) (32 -960 248) (96 -960 248)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46732" + "plane" "(640 -1664 112) (640 -1664 256) (704 -1664 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90542,10 +92803,10 @@ world } side { - "id" "60301" - "plane" "(32 -928 240) (32 -960 240) (96 -960 240)" + "id" "46731" + "plane" "(640 -1600 112) (640 -1664 112) (704 -1664 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90553,20 +92814,20 @@ world } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171608" + "id" "90374" side { - "id" "60312" - "plane" "(24 -960 368) (24 -928 368) (32 -928 368)" + "id" "46742" + "plane" "(640 -1600 256) (640 -1536 256) (704 -1536 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90574,9 +92835,9 @@ world } side { - "id" "60311" - "plane" "(24 -928 240) (24 -928 368) (24 -960 368)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46741" + "plane" "(640 -1536 208) (640 -1536 256) (640 -1600 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90585,9 +92846,9 @@ world } side { - "id" "60310" - "plane" "(32 -960 240) (32 -960 368) (32 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46740" + "plane" "(704 -1600 208) (704 -1600 256) (704 -1536 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90596,10 +92857,10 @@ world } side { - "id" "60309" - "plane" "(32 -928 240) (32 -928 368) (24 -928 368)" + "id" "46739" + "plane" "(704 -1536 208) (704 -1536 256) (640 -1536 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90607,9 +92868,9 @@ world } side { - "id" "60308" - "plane" "(24 -960 240) (24 -960 368) (32 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46738" + "plane" "(640 -1600 208) (640 -1600 256) (704 -1600 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90618,10 +92879,10 @@ world } side { - "id" "60307" - "plane" "(24 -928 240) (24 -960 240) (32 -960 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "id" "46737" + "plane" "(640 -1536 208) (640 -1600 208) (704 -1600 208)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90629,20 +92890,20 @@ world } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171609" + "id" "90375" side { - "id" "60318" - "plane" "(24 -960 368) (8 -964 368) (8 -928 368)" + "id" "46754" + "plane" "(656 -1600 208) (656 -1536 208) (704 -1536 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90650,9 +92911,9 @@ world } side { - "id" "60317" - "plane" "(24 -928 240) (24 -960 240) (24 -960 368)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46753" + "plane" "(656 -1536 128) (656 -1536 208) (656 -1600 208)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90661,8 +92922,8 @@ world } side { - "id" "60316" - "plane" "(8 -964 240) (8 -928 240) (8 -928 368)" + "id" "46752" + "plane" "(704 -1600 128) (704 -1600 208) (704 -1536 208)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -90672,10 +92933,10 @@ world } side { - "id" "60315" - "plane" "(8 -928 240) (24 -928 240) (24 -928 368)" + "id" "46751" + "plane" "(704 -1536 128) (704 -1536 208) (656 -1536 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90683,10 +92944,10 @@ world } side { - "id" "60314" - "plane" "(24 -960 240) (8 -964 240) (8 -964 368)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "46750" + "plane" "(656 -1600 128) (656 -1600 208) (704 -1600 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90694,10 +92955,10 @@ world } side { - "id" "60313" - "plane" "(24 -928 240) (8 -928 240) (8 -964 240)" + "id" "46749" + "plane" "(656 -1536 128) (656 -1600 128) (704 -1600 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90705,20 +92966,20 @@ world } editor { - "color" "0 239 136" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171610" + "id" "90382" side { - "id" "60324" - "plane" "(32 -960 368) (32 -928 368) (96 -928 368)" + "id" "46766" + "plane" "(656 -1920 264) (632 -1920 264) (632 -1432 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90726,19 +92987,19 @@ world } side { - "id" "60323" - "plane" "(32 -928 360) (32 -928 368) (32 -960 368)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46765" + "plane" "(640 -1920 256) (640 -1440 256) (632 -1432 264)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60322" - "plane" "(96 -960 360) (96 -960 368) (96 -928 368)" + "id" "46764" + "plane" "(656 -1456 256) (656 -1920 256) (656 -1920 264)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" @@ -90748,10 +93009,10 @@ world } side { - "id" "60321" - "plane" "(96 -928 360) (96 -928 368) (32 -928 368)" + "id" "46763" + "plane" "(640 -1440 256) (656 -1456 256) (656 -1456 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90759,20 +93020,20 @@ world } side { - "id" "60320" - "plane" "(32 -960 360) (32 -960 368) (96 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46762" + "plane" "(656 -1920 256) (640 -1920 256) (632 -1920 264)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60319" - "plane" "(32 -928 360) (32 -960 360) (96 -960 360)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46761" + "plane" "(656 -1456 256) (640 -1440 256) (640 -1920 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -90781,42 +93042,42 @@ world } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171611" + "id" "90402" side { - "id" "60330" - "plane" "(128 -964 368) (128 -928 368) (192 -928 368)" + "id" "46784" + "plane" "(696 -1368 264) (720 -1392 264) (656 -1456 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60329" - "plane" "(128 -928 360) (128 -928 368) (128 -964 368)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46783" + "plane" "(632 -1432 264) (640 -1440 256) (704 -1376 256)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60328" - "plane" "(192 -964 360) (192 -964 368) (192 -928 368)" + "id" "46782" + "plane" "(656 -1456 264) (720 -1392 264) (720 -1392 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90824,10 +93085,10 @@ world } side { - "id" "60327" - "plane" "(192 -928 360) (192 -928 368) (128 -928 368)" + "id" "46781" + "plane" "(632 -1432 264) (656 -1456 264) (656 -1456 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -90835,52 +93096,41 @@ world } side { - "id" "60326" - "plane" "(128 -964 360) (128 -964 368) (192 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46780" + "plane" "(640 -1440 256) (656 -1456 256) (720 -1392 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60325" - "plane" "(128 -928 360) (128 -964 360) (192 -964 360)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46779" + "plane" "(696 -1368 264) (704 -1376 256) (720 -1392 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171613" - side - { - "id" "60342" - "plane" "(192 -964 368) (192 -928 368) (200 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "90407" side { - "id" "60341" - "plane" "(192 -928 240) (192 -928 368) (192 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46795" + "plane" "(704 -1440 384) (704 -1856 384) (640 -1920 264)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90889,85 +93139,63 @@ world } side { - "id" "60340" - "plane" "(200 -964 240) (200 -964 368) (200 -928 368)" + "id" "46794" + "plane" "(704 -1856 384) (704 -1440 384) (704 -1440 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60339" - "plane" "(200 -928 240) (200 -928 368) (192 -928 368)" + "id" "46793" + "plane" "(640 -1440 264) (704 -1440 264) (704 -1440 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60338" - "plane" "(192 -964 240) (192 -964 368) (200 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46792" + "plane" "(704 -1856 384) (704 -1856 264) (640 -1920 264)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60337" - "plane" "(192 -928 240) (192 -964 240) (200 -964 240)" + "id" "46791" + "plane" "(640 -1920 264) (704 -1856 264) (704 -1440 264)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171614" - side - { - "id" "60348" - "plane" "(200 -928 368) (216 -928 368) (216 -960 368)" - "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" "60347" - "plane" "(200 -928 368) (200 -964 368) (200 -964 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "90417" side { - "id" "60346" - "plane" "(216 -960 368) (216 -928 368) (216 -928 240)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46811" + "plane" "(704 -1376 264) (704 -1440 384) (640 -1440 264)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -90976,64 +93204,53 @@ world } side { - "id" "60345" - "plane" "(216 -928 368) (200 -928 368) (200 -928 240)" + "id" "46809" + "plane" "(640 -1440 264) (704 -1440 384) (704 -1440 264)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60344" - "plane" "(200 -964 368) (216 -960 368) (216 -960 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "id" "46808" + "plane" "(704 -1376 264) (640 -1440 264) (704 -1440 264)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60343" - "plane" "(200 -964 240) (216 -960 240) (216 -928 240)" + "id" "46807" + "plane" "(704 -1440 384) (704 -1376 264) (704 -1440 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 187 100" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171615" - side - { - "id" "60354" - "plane" "(216 -960 368) (216 -928 368) (224 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "90426" side { - "id" "60353" - "plane" "(216 -928 240) (216 -928 368) (216 -960 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "46836" + "plane" "(704 -1376 264) (896 -1472 264) (896 -1536 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91041,86 +93258,86 @@ world } side { - "id" "60352" - "plane" "(224 -960 240) (224 -960 368) (224 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "46835" + "plane" "(896 -1536 384) (896 -1536 264) (704 -1440 264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60351" - "plane" "(224 -928 240) (224 -928 368) (216 -928 368)" + "id" "46834" + "plane" "(704 -1440 264) (704 -1376 264) (704 -1440 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60350" - "plane" "(216 -960 240) (216 -960 368) (224 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "46833" + "plane" "(704 -1440 264) (896 -1536 264) (896 -1472 264)" + "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" "60349" - "plane" "(216 -928 240) (216 -960 240) (224 -960 240)" + "id" "46832" + "plane" "(896 -1536 264) (896 -1536 384) (896 -1472 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171616" + "id" "90433" side { - "id" "60360" - "plane" "(224 -960 368) (224 -928 368) (288 -928 368)" + "id" "46848" + "plane" "(704 -1364.69 264) (896 -1464 264) (896 -1496 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 -0.707107 0 -25.0496] 0.25" + "vaxis" "[-0.707107 -0.707107 0 56.3167] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60359" - "plane" "(224 -928 360) (224 -928 368) (224 -960 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "46847" + "plane" "(704 -1376 256) (896 -1472 256) (896 -1464 264)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.707107 0.707107 0 -24.3167] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60358" - "plane" "(288 -960 360) (288 -960 368) (288 -928 368)" + "id" "46846" + "plane" "(704 -1398.63 264) (896 -1496 264) (896 -1496 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 -56.3167] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91128,10 +93345,10 @@ world } side { - "id" "60357" - "plane" "(288 -928 360) (288 -928 368) (224 -928 368)" + "id" "46845" + "plane" "(704 -1398.63 264) (704 -1398.63 256) (704 -1376 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[0.707107 -0.707107 0 -25.0496] 0.25" "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91139,52 +93356,52 @@ world } side { - "id" "60356" - "plane" "(224 -960 360) (224 -960 368) (288 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "46844" + "plane" "(704 -1398.63 256) (896 -1496 256) (896 -1472 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -25.0496] 0.25" + "vaxis" "[-0.707107 -0.707107 0 56.3167] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60355" - "plane" "(224 -928 360) (224 -960 360) (288 -960 360)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "46843" + "plane" "(896 -1472 256) (896 -1496 256) (896 -1496 264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -25.0496] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171617" + "id" "90448" side { - "id" "60366" - "plane" "(288 -960 368) (288 -928 368) (296 -928 368)" + "id" "46860" + "plane" "(652 -1828 208) (652 -1820 208) (656 -1820 208)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60365" - "plane" "(288 -928 240) (288 -928 368) (288 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46859" + "plane" "(652 -1820 128) (652 -1820 208) (652 -1828 208)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -91193,10 +93410,10 @@ world } side { - "id" "60364" - "plane" "(296 -960 240) (296 -960 368) (296 -928 368)" + "id" "46858" + "plane" "(656 -1828 128) (656 -1828 208) (656 -1820 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91204,9 +93421,9 @@ world } side { - "id" "60363" - "plane" "(296 -928 240) (296 -928 368) (288 -928 368)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46857" + "plane" "(656 -1820 128) (656 -1820 208) (652 -1820 208)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -91215,9 +93432,9 @@ world } side { - "id" "60362" - "plane" "(288 -960 240) (288 -960 368) (296 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46856" + "plane" "(652 -1828 128) (652 -1828 208) (656 -1828 208)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -91226,41 +93443,41 @@ world } side { - "id" "60361" - "plane" "(288 -928 240) (288 -960 240) (296 -960 240)" + "id" "46855" + "plane" "(652 -1820 128) (652 -1828 128) (656 -1828 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171618" + "id" "90458" side { - "id" "60372" - "plane" "(224 -960 248) (224 -928 248) (288 -928 248)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46872" + "plane" "(652 -1572 208) (652 -1564 208) (656 -1564 208)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60371" - "plane" "(224 -928 240) (224 -928 248) (224 -960 248)" - "material" "TOOLS/TOOLSNODRAW" + "id" "46871" + "plane" "(652 -1564 128) (652 -1564 208) (652 -1572 208)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -91269,10 +93486,10 @@ world } side { - "id" "60370" - "plane" "(288 -960 240) (288 -960 248) (288 -928 248)" + "id" "46870" + "plane" "(656 -1572 128) (656 -1572 208) (656 -1564 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91280,10 +93497,10 @@ world } side { - "id" "60369" - "plane" "(288 -928 240) (288 -928 248) (224 -928 248)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "id" "46869" + "plane" "(656 -1564 128) (656 -1564 208) (652 -1564 208)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91291,9 +93508,9 @@ world } side { - "id" "60368" - "plane" "(224 -960 240) (224 -960 248) (288 -960 248)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "46868" + "plane" "(652 -1572 128) (652 -1572 208) (656 -1572 208)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -91302,31 +93519,31 @@ world } side { - "id" "60367" - "plane" "(224 -928 240) (224 -960 240) (288 -960 240)" + "id" "46867" + "plane" "(652 -1564 128) (652 -1572 128) (656 -1572 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171620" + "id" "86214" side { - "id" "60384" - "plane" "(296 -928 368) (312 -928 368) (312 -964 368)" + "id" "44463" + "plane" "(-2304 -2560 -128.032) (-2048 -2816 -128.032) (-2048 -2560 -128.032)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91334,8 +93551,8 @@ world } side { - "id" "60383" - "plane" "(296 -928 368) (296 -960 368) (296 -960 240)" + "id" "44462" + "plane" "(-2048 -2816 -128.032) (-2304 -2560 -128.032) (-2304 -2560 576)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -91345,21 +93562,21 @@ world } side { - "id" "60382" - "plane" "(312 -964 368) (312 -928 368) (312 -928 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "44461" + "plane" "(-2176 -2432 -128.032) (-2048 -2560 -128.032) (-2048 -2560 576)" + "material" "TEROUST/ARPEGGIO/TREELINE/TREELINE_LONG" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 896] 1" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60381" - "plane" "(312 -928 368) (296 -928 368) (296 -928 240)" + "id" "44460" + "plane" "(-2304 -2560 -128.032) (-2176 -2432 -128.032) (-2176 -2432 576)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91367,21 +93584,21 @@ world } side { - "id" "60380" - "plane" "(296 -960 368) (312 -964 368) (312 -964 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "44459" + "plane" "(-2048 -2560 -128.032) (-2048 -2816 -128.032) (-2048 -2816 576)" + "material" "TEROUST/ARPEGGIO/TREELINE/TREELINE_LONG" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 896] 1" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60379" - "plane" "(296 -960 240) (312 -964 240) (312 -928 240)" + "id" "44458" + "plane" "(-2048 -2816 576) (-2304 -2560 576) (-2176 -2432 576)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91389,84 +93606,73 @@ world } editor { - "color" "0 239 136" + "color" "0 192 189" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171664" - side - { - "id" "60460" - "plane" "(312 -96 368) (312 -964 368) (312 -968 372)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "86215" side { - "id" "60459" - "plane" "(8 -96 368) (312 -96 368) (312 -96 376)" + "id" "44469" + "plane" "(-2176 -3584 -128.032) (-2048 -3584 -128.032) (-2048 -2816 -128.032)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60458" - "plane" "(312 -968 372) (8 -968 372) (8 -968 376)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "44468" + "plane" "(-2048 -3584 -128.032) (-2176 -3584 -128.032) (-2176 -3584 576)" + "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" "60457" - "plane" "(312 -964 368) (312 -96 368) (8 -96 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 -1 0 0] 0.125" + "id" "44467" + "plane" "(-2176 -2688 -128.032) (-2048 -2816 -128.032) (-2048 -2816 576)" + "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" "60456" - "plane" "(312 -964 368) (8 -964 368) (8 -968 372)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "44466" + "plane" "(-2176 -3584 -128.032) (-2176 -2688 -128.032) (-2176 -2688 576)" + "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" "60455" - "plane" "(8 -968 372) (8 -964 368) (8 -96 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "44465" + "plane" "(-2048 -2816 -128.032) (-2048 -3584 -128.032) (-2048 -3584 576)" + "material" "TEROUST/ARPEGGIO/TREELINE/TREELINE_LONG" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 896] 1" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60454" - "plane" "(312 -96 376) (312 -968 376) (8 -968 376)" + "id" "44464" + "plane" "(-2048 -3584 576) (-2176 -3584 576) (-2176 -2688 576)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -91476,20 +93682,20 @@ world } editor { - "color" "0 221 114" + "color" "0 192 189" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171667" + "id" "83458" side { - "id" "60495" - "plane" "(356 -960 248) (356 -928 248) (420 -928 248)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "42388" + "plane" "(-960 -2976 -32) (-960 -3264 -32) (-1120 -3232 -32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91497,19 +93703,19 @@ world } side { - "id" "60494" - "plane" "(356 -928 240) (356 -928 248) (356 -960 248)" + "id" "42387" + "plane" "(-960 -3264 -64) (-960 -2976 -64) (-1024 -2944 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60493" - "plane" "(420 -960 240) (420 -960 248) (420 -928 248)" + "id" "42386" + "plane" "(-1024 -2944 -32) (-1120 -3232 -32) (-1120 -3232 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -91519,10 +93725,10 @@ world } side { - "id" "60492" - "plane" "(420 -928 240) (420 -928 248) (356 -928 248)" + "id" "42385" + "plane" "(-960 -3264 -32) (-960 -2976 -32) (-960 -2976 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91530,9 +93736,9 @@ world } side { - "id" "60491" - "plane" "(356 -960 240) (356 -960 248) (420 -960 248)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "42384" + "plane" "(-960 -2976 -32) (-1024 -2944 -32) (-1024 -2944 -64)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -91541,31 +93747,31 @@ world } side { - "id" "60490" - "plane" "(356 -928 240) (356 -960 240) (420 -960 240)" + "id" "42383" + "plane" "(-1120 -3232 -32) (-960 -3264 -32) (-960 -3264 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171668" + "id" "83461" side { - "id" "60501" - "plane" "(420 -960 320) (420 -928 320) (428 -928 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "42400" + "plane" "(-1280 -3136 -32) (-1056 -2912 -32) (-1024 -2944 -32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91573,19 +93779,19 @@ world } side { - "id" "60500" - "plane" "(420 -928 240) (420 -928 320) (420 -960 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "42399" + "plane" "(-1056 -2912 -64) (-1280 -3136 -64) (-1120 -3232 -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" "60499" - "plane" "(428 -960 240) (428 -960 320) (428 -928 320)" + "id" "42398" + "plane" "(-1280 -3136 -64) (-1056 -2912 -64) (-1056 -2912 -32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -91595,10 +93801,10 @@ world } side { - "id" "60498" - "plane" "(428 -928 240) (428 -928 320) (420 -928 320)" + "id" "42397" + "plane" "(-1024 -2944 -64) (-1120 -3232 -64) (-1120 -3232 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91606,9 +93812,9 @@ world } side { - "id" "60497" - "plane" "(420 -960 240) (420 -960 320) (428 -960 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "42396" + "plane" "(-1056 -2912 -64) (-1024 -2944 -64) (-1024 -2944 -32)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -91617,31 +93823,31 @@ world } side { - "id" "60496" - "plane" "(420 -928 240) (420 -960 240) (428 -960 240)" + "id" "42395" + "plane" "(-1120 -3232 -64) (-1280 -3136 -64) (-1280 -3136 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171669" + "id" "83464" side { - "id" "60507" - "plane" "(348 -960 320) (348 -928 320) (356 -928 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" + "id" "42412" + "plane" "(-1088 -2848 -32) (-1056 -2912 -32) (-1280 -3136 -32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91649,20 +93855,20 @@ world } side { - "id" "60506" - "plane" "(348 -928 240) (348 -928 320) (348 -960 320)" + "id" "42411" + "plane" "(-1344 -3040 -64) (-1280 -3136 -64) (-1056 -2912 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60505" - "plane" "(356 -960 240) (356 -960 320) (356 -928 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "42410" + "plane" "(-1088 -2848 -64) (-1088 -2848 -32) (-1344 -3040 -32)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -91671,10 +93877,10 @@ world } side { - "id" "60504" - "plane" "(356 -928 240) (356 -928 320) (348 -928 320)" + "id" "42409" + "plane" "(-1280 -3136 -64) (-1280 -3136 -32) (-1056 -2912 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91682,9 +93888,9 @@ world } side { - "id" "60503" - "plane" "(348 -960 240) (348 -960 320) (356 -960 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "42408" + "plane" "(-1056 -2912 -64) (-1056 -2912 -32) (-1088 -2848 -32)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -91693,31 +93899,31 @@ world } side { - "id" "60502" - "plane" "(348 -928 240) (348 -960 240) (356 -960 240)" + "id" "42407" + "plane" "(-1344 -3040 -64) (-1344 -3040 -32) (-1280 -3136 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171683" + "id" "83466" side { - "id" "60519" - "plane" "(356 -960 320) (356 -928 320) (420 -928 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "42424" + "plane" "(-1408 -2944 -32) (-1152 -2752 -32) (-1088 -2848 -32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91725,42 +93931,42 @@ world } side { - "id" "60518" - "plane" "(356 -928 312) (356 -928 320) (356 -960 320)" + "id" "42423" + "plane" "(-1344 -3040 -64) (-1088 -2848 -64) (-1151.99 -2752 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60517" - "plane" "(420 -960 312) (420 -960 320) (420 -928 320)" + "id" "42422" + "plane" "(-1152 -2752 -32) (-1408 -2944 -32) (-1408 -2944 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60516" - "plane" "(420 -928 312) (420 -928 320) (356 -928 320)" + "id" "42421" + "plane" "(-1344 -3040 -32) (-1088 -2848 -32) (-1088 -2848 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60515" - "plane" "(356 -960 312) (356 -960 320) (420 -960 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "42420" + "plane" "(-1088 -2848 -32) (-1152 -2752 -32) (-1151.99 -2752 -64)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -91769,205 +93975,205 @@ world } side { - "id" "60514" - "plane" "(356 -928 312) (356 -960 312) (420 -960 312)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "42419" + "plane" "(-1408 -2944 -32) (-1344 -3040 -32) (-1344 -3040 -64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171688" + "id" "83468" side { - "id" "60531" - "plane" "(356 -956 312) (356 -932 312) (420 -932 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "42448" + "plane" "(-1408 -2944 -32) (-1440 -2880 -32) (-1216 -2656 -32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60530" - "plane" "(356 -932 248) (356 -932 312) (356 -956 312)" + "id" "42447" + "plane" "(-1152 -2752 -64) (-1216 -2656 -64) (-1440 -2880 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60529" - "plane" "(420 -956 248) (420 -956 312) (420 -932 312)" + "id" "42446" + "plane" "(-1408 -2944 -64) (-1408 -2944 -32) (-1152 -2752 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60528" - "plane" "(420 -932 248) (420 -932 312) (356 -932 312)" + "id" "42445" + "plane" "(-1216 -2656 -64) (-1216 -2656 -32) (-1440 -2880 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60527" - "plane" "(356 -956 248) (356 -956 312) (420 -956 312)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "42444" + "plane" "(-1440 -2880 -64) (-1440 -2880 -32) (-1408 -2944 -32)" + "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" "60526" - "plane" "(356 -932 248) (356 -956 248) (420 -956 248)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "42443" + "plane" "(-1152 -2752 -64) (-1152 -2752 -32) (-1216 -2656 -32)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 115 144" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171697" + "id" "83469" side { - "id" "60567" - "plane" "(-100 -956 312) (-100 -928 312) (-36 -928 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "42454" + "plane" "(-1216 -2656 -32) (-1440 -2880 -32) (-1472 -2848 -32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60566" - "plane" "(-100 -928 248) (-100 -928 312) (-100 -956 312)" + "id" "42453" + "plane" "(-1440 -2880 -64) (-1216 -2656 -64) (-1376 -2560 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60565" - "plane" "(-36 -956 248) (-36 -956 312) (-36 -928 312)" + "id" "42452" + "plane" "(-1216 -2656 -64) (-1440 -2880 -64) (-1440 -2880 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60564" - "plane" "(-36 -928 248) (-36 -928 312) (-100 -928 312)" + "id" "42451" + "plane" "(-1472 -2848 -64) (-1376 -2560 -64) (-1376 -2560 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60563" - "plane" "(-100 -956 248) (-100 -956 312) (-36 -956 312)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "42450" + "plane" "(-1440 -2880 -64) (-1472 -2848 -64) (-1472 -2848 -32)" + "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" "60562" - "plane" "(-100 -928 248) (-100 -956 248) (-36 -956 248)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "42449" + "plane" "(-1376 -2560 -64) (-1216 -2656 -64) (-1216 -2656 -32)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 115 144" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171698" + "id" "83470" side { - "id" "60573" - "plane" "(-100 -960 248) (-100 -928 248) (-36 -928 248)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "42460" + "plane" "(-1536 -2816 -32) (-1536 -2528 -32) (-1376 -2560 -32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60572" - "plane" "(-100 -928 240) (-100 -928 248) (-100 -960 248)" + "id" "42459" + "plane" "(-1536 -2528 -64) (-1536 -2816 -64) (-1472 -2848 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60571" - "plane" "(-36 -960 240) (-36 -960 248) (-36 -928 248)" + "id" "42458" + "plane" "(-1472 -2848 -32) (-1376 -2560 -32) (-1376 -2560 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91975,10 +94181,10 @@ world } side { - "id" "60570" - "plane" "(-36 -928 240) (-36 -928 248) (-100 -928 248)" + "id" "42457" + "plane" "(-1536 -2528 -32) (-1536 -2816 -32) (-1536 -2816 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91986,10 +94192,10 @@ world } side { - "id" "60569" - "plane" "(-100 -960 240) (-100 -960 248) (-36 -960 248)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "42456" + "plane" "(-1536 -2816 -32) (-1472 -2848 -32) (-1472 -2848 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -91997,53 +94203,53 @@ world } side { - "id" "60568" - "plane" "(-100 -928 240) (-100 -960 240) (-36 -960 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "42455" + "plane" "(-1376 -2560 -32) (-1536 -2528 -32) (-1536 -2528 -64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171699" + "id" "83504" side { - "id" "60579" - "plane" "(-108 -960 320) (-108 -928 320) (-100 -928 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "42472" + "plane" "(-1888 -2528 -32) (-1536 -2528 -32) (-1536 -2816 -32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60578" - "plane" "(-108 -928 240) (-108 -928 320) (-108 -960 320)" + "id" "42471" + "plane" "(-1888 -2816 -64) (-1536 -2816 -64) (-1536 -2528 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60577" - "plane" "(-100 -960 240) (-100 -960 320) (-100 -928 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "42470" + "plane" "(-1536 -2528 -32) (-1536 -2528 -64) (-1536 -2816 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92051,10 +94257,10 @@ world } side { - "id" "60576" - "plane" "(-100 -928 240) (-100 -928 320) (-108 -928 320)" + "id" "42469" + "plane" "(-1888 -2816 -32) (-1888 -2816 -64) (-1888 -2528 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92062,10 +94268,10 @@ world } side { - "id" "60575" - "plane" "(-108 -960 240) (-108 -960 320) (-100 -960 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "42468" + "plane" "(-1536 -2816 -32) (-1536 -2816 -64) (-1888 -2816 -64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92073,31 +94279,31 @@ world } side { - "id" "60574" - "plane" "(-108 -928 240) (-108 -960 240) (-100 -960 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "42467" + "plane" "(-1888 -2528 -32) (-1888 -2528 -64) (-1536 -2528 -64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171700" + "id" "83587" side { - "id" "60585" - "plane" "(-100 -960 320) (-100 -928 320) (-36 -928 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "id" "42544" + "plane" "(-832 -2976 -4) (-832 -3264 -4) (-864 -3264 -12)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92105,43 +94311,43 @@ world } side { - "id" "60584" - "plane" "(-100 -928 312) (-100 -928 320) (-100 -960 320)" + "id" "42543" + "plane" "(-832 -3264 -64) (-832 -2976 -64) (-864 -2976 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60583" - "plane" "(-36 -960 312) (-36 -960 320) (-36 -928 320)" + "id" "42542" + "plane" "(-864 -2976 -12) (-864 -2976 -64) (-832 -2976 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60582" - "plane" "(-36 -928 312) (-36 -928 320) (-100 -928 320)" + "id" "42541" + "plane" "(-864 -3264 -64) (-864 -3264 -12) (-832 -3264 -4)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60581" - "plane" "(-100 -960 312) (-100 -960 320) (-36 -960 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "42540" + "plane" "(-864 -2976 -64) (-864 -2976 -12) (-864 -3264 -12)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92149,31 +94355,31 @@ world } side { - "id" "60580" - "plane" "(-100 -928 312) (-100 -960 312) (-36 -960 312)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "42539" + "plane" "(-832 -3264 -64) (-832 -3264 -4) (-832 -2976 -4)" + "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 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171701" + "id" "83588" side { - "id" "60591" - "plane" "(-36 -960 320) (-36 -928 320) (-28 -928 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "42550" + "plane" "(-800 -2976 0) (-800 -3264 0) (-832 -3264 -4)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92181,19 +94387,19 @@ world } side { - "id" "60590" - "plane" "(-36 -928 240) (-36 -928 320) (-36 -960 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "42549" + "plane" "(-800 -3264 -64) (-800 -2976 -64) (-832 -2976 -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" "60589" - "plane" "(-28 -960 240) (-28 -960 320) (-28 -928 320)" + "id" "42548" + "plane" "(-800 -3264 -64) (-800 -3264 0) (-800 -2976 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -92203,10 +94409,10 @@ world } side { - "id" "60588" - "plane" "(-28 -928 240) (-28 -928 320) (-36 -928 320)" + "id" "42547" + "plane" "(-832 -2976 -4) (-832 -2976 -64) (-800 -2976 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92214,9 +94420,9 @@ world } side { - "id" "60587" - "plane" "(-36 -960 240) (-36 -960 320) (-28 -960 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "42546" + "plane" "(-832 -3264 -64) (-832 -3264 -4) (-800 -3264 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -92225,31 +94431,31 @@ world } side { - "id" "60586" - "plane" "(-36 -928 240) (-36 -960 240) (-28 -960 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "42545" + "plane" "(-832 -2976 -64) (-832 -2976 -4) (-832 -3264 -4)" + "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 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171702" + "id" "83589" side { - "id" "60603" - "plane" "(-28 -960 320) (-28 -928 320) (-8 -928 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "id" "42556" + "plane" "(-960 -3264 -32) (-960 -2976 -32) (-928 -2976 -28.0002)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92257,19 +94463,19 @@ world } side { - "id" "60602" - "plane" "(-28 -928 240) (-28 -928 320) (-28 -960 320)" + "id" "42555" + "plane" "(-960 -2976 -64) (-960 -3264 -64) (-928 -3264 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60601" - "plane" "(-8 -964 240) (-8 -964 320) (-8 -928 320)" + "id" "42554" + "plane" "(-960 -2976 -64) (-960 -2976 -32) (-960 -3264 -32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -92279,10 +94485,10 @@ world } side { - "id" "60600" - "plane" "(-8 -928 240) (-8 -928 320) (-28 -928 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "id" "42553" + "plane" "(-960 -2976 -32) (-960 -2976 -64) (-928 -2976 -64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92290,9 +94496,9 @@ world } side { - "id" "60599" - "plane" "(-28 -960 240) (-28 -960 320) (-8 -964 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "id" "42552" + "plane" "(-960 -3264 -64) (-960 -3264 -32) (-928 -3264 -28)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -92301,31 +94507,31 @@ world } side { - "id" "60598" - "plane" "(-28 -928 240) (-28 -960 240) (-8 -964 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "42551" + "plane" "(-928 -3264 -64) (-928 -3264 -28) (-928 -2976 -28.0002)" + "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 239 136" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171710" + "id" "83590" side { - "id" "60615" - "plane" "(328 -964 320) (328 -928 320) (348 -928 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" + "id" "42562" + "plane" "(-928 -3264 -28) (-928 -2976 -28.0011) (-896 -2976 -20)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92333,21 +94539,21 @@ world } side { - "id" "60614" - "plane" "(348 -960 240) (348 -960 320) (348 -928 320)" + "id" "42561" + "plane" "(-928 -2976 -64) (-928 -3264 -64) (-896 -3264 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60613" - "plane" "(328 -928 240) (328 -928 320) (328 -964 320)" + "id" "42560" + "plane" "(-928 -2976 -28.0011) (-928 -2976 -64) (-896 -2976 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92355,10 +94561,10 @@ world } side { - "id" "60612" - "plane" "(348 -928 240) (348 -928 320) (328 -928 320)" + "id" "42559" + "plane" "(-928 -3264 -64) (-928 -3264 -28) (-896 -3264 -19.9987)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92366,10 +94572,10 @@ world } side { - "id" "60611" - "plane" "(328 -964 240) (328 -964 320) (348 -960 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" + "id" "42558" + "plane" "(-928 -2976 -64) (-928 -2976 -28.0011) (-928 -3264 -28)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92377,31 +94583,31 @@ world } side { - "id" "60610" - "plane" "(328 -928 240) (328 -964 240) (348 -960 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "42557" + "plane" "(-896 -3264 -64) (-896 -3264 -19.9987) (-896 -2976 -20)" + "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 239 136" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171712" + "id" "83591" side { - "id" "60627" - "plane" "(328 -964 336) (328 -928 336) (448 -928 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "id" "42568" + "plane" "(-896 -3264 -20) (-896 -2976 -19.9996) (-864 -2976 -11.9995)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92409,32 +94615,32 @@ world } side { - "id" "60626" - "plane" "(328 -928 320) (328 -928 336) (328 -964 336)" + "id" "42567" + "plane" "(-896 -2976 -64) (-896 -3264 -64) (-864 -3264 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60625" - "plane" "(448 -964 320) (448 -964 336) (448 -928 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "42566" + "plane" "(-896 -2976 -19.9996) (-896 -2976 -64) (-864 -2976 -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" "60624" - "plane" "(448 -928 320) (448 -928 336) (328 -928 336)" + "id" "42565" + "plane" "(-896 -3264 -64) (-896 -3264 -20) (-864 -3264 -12)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92442,42 +94648,42 @@ world } side { - "id" "60623" - "plane" "(328 -964 320) (328 -964 336) (448 -964 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "42564" + "plane" "(-896 -2976 -64) (-896 -2976 -19.9996) (-896 -3264 -20)" + "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" "60622" - "plane" "(328 -928 320) (328 -964 320) (448 -964 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 1 0 32] 0.125" + "id" "42563" + "plane" "(-864 -3264 -64) (-864 -3264 -12) (-864 -2976 -11.9995)" + "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 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171714" + "id" "83610" side { - "id" "60639" - "plane" "(428 -960 216) (428 -928 216) (448 -928 216)" + "id" "42621" + "plane" "(-1952 -2752 -64) (-1933 -2797 -64) (-1888 -2816 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92485,32 +94691,32 @@ world } side { - "id" "60638" - "plane" "(428 -928 88) (428 -928 216) (428 -960 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "42620" + "plane" "(-1888 -2816 -32) (-1933 -2797 -32) (-1952 -2752 -32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60637" - "plane" "(448 -960 88) (448 -960 216) (448 -928 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "42619" + "plane" "(-1888 -2816 -64) (-1933 -2797 -64) (-1933 -2797 -32)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60636" - "plane" "(448 -928 88) (448 -928 216) (428 -928 216)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "42618" + "plane" "(-1933 -2797 -64) (-1952 -2752 -64) (-1952 -2752 -32)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92518,9 +94724,9 @@ world } side { - "id" "60635" - "plane" "(428 -960 88) (428 -960 216) (448 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" + "id" "42617" + "plane" "(-1952 -2752 -64) (-1888 -2752 -64) (-1888 -2752 -32)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -92529,53 +94735,53 @@ world } side { - "id" "60634" - "plane" "(428 -928 88) (428 -960 88) (448 -960 88)" + "id" "42616" + "plane" "(-1888 -2752 -64) (-1888 -2816 -64) (-1888 -2816 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 120" + "color" "0 170 115" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171715" + "id" "83611" side { - "id" "60651" - "plane" "(428 -960 320) (428 -928 320) (448 -928 320)" + "id" "42633" + "plane" "(-1888 -2528 -64) (-1933 -2547 -64) (-1952 -2592 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60650" - "plane" "(428 -928 240) (428 -928 320) (428 -960 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "42632" + "plane" "(-1952 -2592 -32) (-1933 -2547 -32) (-1888 -2528 -32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 -64] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60649" - "plane" "(448 -960 240) (448 -960 320) (448 -928 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "42631" + "plane" "(-1952 -2592 -64) (-1933 -2547 -64) (-1933 -2547 -32)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92583,10 +94789,10 @@ world } side { - "id" "60648" - "plane" "(448 -928 240) (448 -928 320) (428 -928 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "id" "42630" + "plane" "(-1933 -2547 -64) (-1888 -2528 -64) (-1888 -2528 -32)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92594,10 +94800,10 @@ world } side { - "id" "60647" - "plane" "(428 -960 240) (428 -960 320) (448 -960 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "42629" + "plane" "(-1888 -2528 -64) (-1888 -2592 -64) (-1888 -2592 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92605,53 +94811,53 @@ world } side { - "id" "60646" - "plane" "(428 -928 240) (428 -960 240) (448 -960 240)" + "id" "42628" + "plane" "(-1888 -2592 -64) (-1952 -2592 -64) (-1952 -2592 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 120" + "color" "0 170 115" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171725" + "id" "83660" side { - "id" "60663" - "plane" "(336 -960 368) (336 -928 368) (344 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "42723" + "plane" "(-1952 -2592 -32) (-1888 -2592 -32) (-1888 -2752 -32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 -64] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60662" - "plane" "(336 -928 336) (336 -928 368) (336 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "42722" + "plane" "(-1952 -2752 -64) (-1888 -2752 -64) (-1888 -2592 -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" "60661" - "plane" "(344 -960 336) (344 -960 368) (344 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "42721" + "plane" "(-1888 -2592 -32) (-1888 -2592 -64) (-1888 -2752 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92659,10 +94865,10 @@ world } side { - "id" "60660" - "plane" "(344 -928 336) (344 -928 368) (336 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "id" "42720" + "plane" "(-1952 -2752 -32) (-1952 -2752 -64) (-1952 -2592 -64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92670,10 +94876,10 @@ world } side { - "id" "60659" - "plane" "(336 -960 336) (336 -960 368) (344 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "42719" + "plane" "(-1888 -2752 -32) (-1888 -2752 -64) (-1952 -2752 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92681,53 +94887,53 @@ world } side { - "id" "60658" - "plane" "(336 -928 336) (336 -960 336) (344 -960 336)" + "id" "42718" + "plane" "(-1952 -2592 -32) (-1952 -2592 -64) (-1888 -2592 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171727" + "id" "83752" side { - "id" "60675" - "plane" "(416 -960 368) (416 -928 368) (424 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "42735" + "plane" "(-1856 -3520 -32) (-1856 -2816 -32) (-1536 -2816 -32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60674" - "plane" "(416 -928 336) (416 -928 368) (416 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "42734" + "plane" "(-1856 -2816 -64) (-1856 -3520 -64) (-1536 -3520 -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" "60673" - "plane" "(424 -960 336) (424 -960 368) (424 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "42733" + "plane" "(-1536 -2816 -64) (-1536 -3520 -64) (-1536 -3520 -32)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92735,10 +94941,10 @@ world } side { - "id" "60672" - "plane" "(424 -928 336) (424 -928 368) (416 -928 368)" + "id" "42732" + "plane" "(-1856 -3520 -64) (-1856 -2816 -64) (-1856 -2816 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92746,10 +94952,10 @@ world } side { - "id" "60671" - "plane" "(416 -960 336) (416 -960 368) (424 -960 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "42731" + "plane" "(-1536 -3520 -64) (-1856 -3520 -64) (-1856 -3520 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92757,31 +94963,31 @@ world } side { - "id" "60670" - "plane" "(416 -928 336) (416 -960 336) (424 -960 336)" + "id" "42730" + "plane" "(-1856 -2816 -64) (-1536 -2816 -64) (-1536 -2816 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171729" + "id" "76759" side { - "id" "60687" - "plane" "(344 -956 368) (344 -928 368) (352 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "38601" + "plane" "(2752 -320 96) (2432 -320 96) (2432 -192 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92789,19 +94995,19 @@ world } side { - "id" "60686" - "plane" "(344 -928 336) (344 -928 368) (344 -956 368)" + "id" "38600" + "plane" "(2752 -192 64) (2432 -192 64) (2432 -320 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60685" - "plane" "(352 -956 336) (352 -956 368) (352 -928 368)" + "id" "38599" + "plane" "(2432 -320 64) (2432 -192 64) (2432 -192 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -92811,10 +95017,10 @@ world } side { - "id" "60684" - "plane" "(352 -928 336) (352 -928 368) (344 -928 368)" + "id" "38598" + "plane" "(2432 -192 64) (2752 -192 64) (2752 -192 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92822,42 +95028,291 @@ world } side { - "id" "60683" - "plane" "(344 -956 336) (344 -956 368) (352 -956 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "38597" + "plane" "(2752 -320 64) (2432 -320 64) (2432 -320 96)" + "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" "60682" - "plane" "(344 -928 336) (344 -956 336) (352 -956 336)" + "id" "38596" + "plane" "(2752 -192 64) (2752 -320 64) (2752 -320 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 174" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } + hidden + { + solid + { + "id" "76765" + side + { + "id" "38611" + "plane" "(2464 128 96) (2400 128 96) (2464 64 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38609" + "plane" "(2464 64 96) (2464 128 128) (2464 128 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38608" + "plane" "(2464 128 128) (2464 64 96) (2400 128 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38607" + "plane" "(2464 128 128) (2400 128 96) (2464 128 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 119 112" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "76767" + side + { + "id" "38621" + "plane" "(2816 128 96) (2464 128 96) (2464 64 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38620" + "plane" "(2816 128 128) (2464 128 128) (2464 128 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38619" + "plane" "(2816 64 96) (2816 128 128) (2816 128 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38618" + "plane" "(2464 128 128) (2816 128 128) (2816 64 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38617" + "plane" "(2464 128 128) (2464 64 96) (2464 128 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 119 112" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "76840" + side + { + "id" "38628" + "plane" "(2357 281 128) (2348 284 128) (2339 281 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38629" + "plane" "(2348 284 320) (2357 281 320) (2360 272 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38630" + "plane" "(2348 284 128) (2357 281 128) (2357 281 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38631" + "plane" "(2357 281 128) (2360 272 128) (2360 272 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38632" + "plane" "(2360 272 128) (2357 263 128) (2357 263 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38633" + "plane" "(2357 263 128) (2348 260 128) (2348 260 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38634" + "plane" "(2348 260 128) (2339 263 128) (2339 263 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38635" + "plane" "(2339 263 128) (2336 272 128) (2336 272 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38636" + "plane" "(2336 272 128) (2339 281 128) (2339 281 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38637" + "plane" "(2339 281 128) (2348 284 128) (2348 284 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 113" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } solid { - "id" "171738" + "id" "76905" side { - "id" "60713" - "plane" "(312 -968 372) (312 -664 372) (468 -664 372)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "id" "38679" + "plane" "(480 -938.667 64) (480 -672 64) (512 -672 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 78.2222] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92865,20 +95320,20 @@ world } side { - "id" "60712" - "plane" "(312 -664 368) (312 -664 372) (312 -968 372)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "38678" + "plane" "(480 -672 0) (480 -938.667 0) (512 -832 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 14.2222] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60711" - "plane" "(468 -968 368) (468 -968 372) (468 -664 372)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" + "id" "38677" + "plane" "(480 -938.667 0) (480 -672 0) (480 -672 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -92887,21 +95342,21 @@ world } side { - "id" "60710" - "plane" "(468 -664 368) (468 -664 372) (312 -664 372)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "38676" + "plane" "(512 -672 0) (512 -832 0) (512 -832 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60709" - "plane" "(312 -968 368) (312 -968 372) (468 -968 372)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "38675" + "plane" "(480 -672 0) (512 -672 0) (512 -672 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 14.2222] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92909,53 +95364,55 @@ world } side { - "id" "60708" - "plane" "(312 -664 368) (312 -968 368) (468 -968 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "38674" + "plane" "(512 -832 0) (480 -938.668 0) (480 -938.668 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 133 222" + "color" "0 226 179" + "groupid" "21153" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171749" + "id" "77002" side { - "id" "60725" - "plane" "(432 -964 368) (432 -928 368) (448 -928 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "38757" + "plane" "(1024 -1152 64) (1024 -1472 64) (896 -1472 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" "60724" - "plane" "(432 -928 336) (432 -928 368) (432 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "38756" + "plane" "(1024 -1472 32) (1024 -1152 32) (896 -1152 32)" + "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" "60723" - "plane" "(448 -964 336) (448 -964 368) (448 -928 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "38755" + "plane" "(1024 -1472 64) (1024 -1472 32) (896 -1472 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92963,10 +95420,10 @@ world } side { - "id" "60722" - "plane" "(448 -928 336) (448 -928 368) (432 -928 368)" + "id" "38754" + "plane" "(896 -1472 64) (896 -1472 32) (896 -1152 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -92974,64 +95431,65 @@ world } side { - "id" "60721" - "plane" "(432 -964 336) (432 -964 368) (448 -964 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "38753" + "plane" "(896 -1152 64) (896 -1152 32) (1024 -1152 32)" + "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" "60720" - "plane" "(432 -928 336) (432 -964 336) (448 -964 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "38752" + "plane" "(1024 -1152 64) (1024 -1152 32) (1024 -1472 32)" + "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 133 222" + "color" "0 147 140" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171756" + "id" "77004" side { - "id" "60773" - "plane" "(-128 -964 336) (-128 -928 336) (-8 -928 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "38769" + "plane" "(896 -1472 64) (672 -1472 64) (752 -1152 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" "60772" - "plane" "(-8 -964 320) (-8 -964 336) (-8 -928 336)" + "id" "38768" + "plane" "(896 -1152 32) (752 -1152 32) (672 -1472 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60771" - "plane" "(-128 -928 320) (-128 -928 336) (-128 -964 336)" + "id" "38767" + "plane" "(896 -1472 32) (672 -1472 32) (672 -1472 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93039,10 +95497,10 @@ world } side { - "id" "60770" - "plane" "(-8 -928 320) (-8 -928 336) (-128 -928 336)" + "id" "38766" + "plane" "(672 -1472 32) (752 -1152 32) (752 -1152 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93050,53 +95508,65 @@ world } side { - "id" "60769" - "plane" "(-128 -964 320) (-128 -964 336) (-8 -964 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "38765" + "plane" "(752 -1152 32) (896 -1152 32) (896 -1152 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" "60768" - "plane" "(-128 -928 320) (-128 -964 320) (-8 -964 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 1 0 32] 0.125" + "id" "38764" + "plane" "(896 -1152 32) (896 -1472 32) (896 -1472 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 133 222" + "color" "0 147 140" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171761" + "id" "77017" side { - "id" "60803" - "plane" "(-128 -960 320) (-128 -928 320) (-108 -928 320)" + "id" "38776" + "plane" "(896 -1184 256) (880 -1184 256) (752 -1152 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60802" - "plane" "(-108 -960 240) (-108 -960 320) (-108 -928 320)" + "id" "38775" + "plane" "(832 -832 64) (752 -1152 64) (880 -1184 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38774" + "plane" "(896 -1184 256) (896 -832 256) (896 -832 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93104,10 +95574,10 @@ world } side { - "id" "60801" - "plane" "(-128 -928 240) (-128 -928 320) (-128 -960 320)" + "id" "38773" + "plane" "(896 -832 256) (832 -832 256) (832 -832 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93115,10 +95585,10 @@ world } side { - "id" "60800" - "plane" "(-108 -928 240) (-108 -928 320) (-128 -928 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" + "id" "38772" + "plane" "(752 -1152 256) (880 -1184 256) (880 -1184 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93126,10 +95596,10 @@ world } side { - "id" "60799" - "plane" "(-128 -960 240) (-128 -960 320) (-108 -960 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[-1 0 0 0] 0.25" + "id" "38771" + "plane" "(832 -832 256) (752 -1152 256) (752 -1152 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93137,42 +95607,42 @@ world } side { - "id" "60798" - "plane" "(-128 -928 240) (-128 -960 240) (-108 -960 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "38770" + "plane" "(880 -1184 256) (896 -1184 256) (896 -1184 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 120" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "171778" + "id" "77074" side { - "id" "60821" - "plane" "(8 -968 416) (8 -96 416) (312 -96 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "38787" + "plane" "(-192 -1768 48) (-192 -1760 48) (-64 -1760 48)" + "material" "TEROUST/ARPEGGIO/COURTYARD/COURTYARD_EDGETILES" + "uaxis" "[0 1 0 160] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60820" - "plane" "(8 -96 376) (8 -96 416) (8 -968 416)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "38786" + "plane" "(-192 -1760 32) (-192 -1760 48) (-192 -1768 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93180,10 +95650,10 @@ world } side { - "id" "60819" - "plane" "(312 -968 376) (312 -968 416) (312 -96 416)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[0 1 0 0] 0.25" + "id" "38785" + "plane" "(-64 -1768 32) (-64 -1768 48) (-64 -1760 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93191,32 +95661,32 @@ world } side { - "id" "60818" - "plane" "(312 -96 376) (312 -96 416) (8 -96 416)" + "id" "38784" + "plane" "(-64 -1760 32) (-64 -1760 48) (-192 -1760 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60817" - "plane" "(8 -968 376) (8 -968 416) (312 -968 416)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "38783" + "plane" "(-192 -1768 32) (-192 -1768 48) (-64 -1768 48)" + "material" "TEROUST/ARPEGGIO/COURTYARD/COURTYARD_EDGETILES" + "uaxis" "[0 0 1 -448] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60816" - "plane" "(8 -96 376) (8 -968 376) (312 -968 376)" + "id" "38782" + "plane" "(-192 -1760 32) (-192 -1768 32) (-64 -1768 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93224,118 +95694,108 @@ world } editor { - "color" "0 173 186" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "172270" + "id" "77087" side { - "id" "60835" - "plane" "(312 -96 424) (312 -96 416) (312 -965.534 416)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 64] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "38804" + "plane" "(1664 448 320) (1536 448 320) (1664 576 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" "60834" - "plane" "(8 -96 424) (8 -96 416) (312 -96 416)" + "id" "38803" + "plane" "(1664 576 64) (1536 448 64) (1664 448 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60833" - "plane" "(312 -976 424) (312 -976 420) (8 -976 420)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "38802" + "plane" "(1664 448 64) (1536 448 64) (1536 448 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60832" - "plane" "(8 -965.524 416) (312 -965.524 416) (312 -96 416)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 1 0 352] 0.125" + "id" "38801" + "plane" "(1664 576 64) (1664 448 64) (1664 448 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60831" - "plane" "(8 -976 420) (312 -976 420) (312 -965.524 416)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "38800" + "plane" "(1536 448 64) (1664 576 64) (1664 576 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - side + editor { - "id" "60830" - "plane" "(8 -976 424) (8 -976 420) (8 -965.524 416)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER01_TRIMMED_DIFFUSE" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 137 234" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + solid + { + "id" "77089" side { - "id" "60829" - "plane" "(8 -96 424) (312 -96 424) (312 -976 424)" - "material" "TOOLS/TOOLSNODRAW" + "id" "38816" + "plane" "(-576 -144 48) (-576 0 48) (-560 0 48)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "0 221 114" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "172306" side { - "id" "60858" - "plane" "(8 -928 424) (312 -928 424) (160 -928 512)" + "id" "38815" + "plane" "(-576 0 0) (-576 -144 0) (-560 -144 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60857" - "plane" "(160 -968 512) (312 -968 424) (8 -968 424)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "38814" + "plane" "(-576 -144 0) (-576 0 0) (-576 0 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93343,53 +95803,54 @@ world } side { - "id" "60856" - "plane" "(8 -968 424) (312 -968 424) (312 -928 424)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "38813" + "plane" "(-560 0 0) (-560 -144 0) (-560 -144 48)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60855" - "plane" "(8 -928 424) (160 -928 512) (160 -968 512)" - "material" "TOOLS/TOOLSNODRAW" + "id" "38812" + "plane" "(-576 0 0) (-560 0 0) (-560 0 48)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60854" - "plane" "(160 -968 512) (160 -928 512) (312 -928 424)" - "material" "TOOLS/TOOLSNODRAW" + "id" "38811" + "plane" "(-560 -144 0) (-576 -144 0) (-576 -144 48)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 173 186" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "172307" + "id" "77095" side { - "id" "60870" - "plane" "(160 -976 520) (160 -96 520) (312 -96 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "id" "38834" + "plane" "(-832 -560 48) (-832 -512 48) (-828 -512 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93397,75 +95858,76 @@ world } side { - "id" "60869" - "plane" "(160 -96 512) (160 -96 520) (160 -976 520)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 80] 0.25" + "id" "38833" + "plane" "(-828 -560 44) (-828 -512 44) (-832 -512 40)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60868" - "plane" "(312 -976 424) (312 -976 432) (312 -96 432)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 80] 0.25" - "rotation" "0" - "lightmapscale" "16" + "id" "38832" + "plane" "(-828 -512 44) (-828 -560 44) (-828 -560 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60867" - "plane" "(312 -96 424) (312 -96 432) (160 -96 520)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "38831" + "plane" "(-832 -512 40) (-828 -512 44) (-828 -512 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60866" - "plane" "(160 -976 512) (160 -976 520) (312 -976 432)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 96] 0.25" - "vaxis" "[0 0 -1 80] 0.25" + "id" "38830" + "plane" "(-832 -560 40) (-832 -512 40) (-832 -512 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60865" - "plane" "(160 -96 512) (160 -976 512) (312 -976 424)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 96] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "38829" + "plane" "(-832 -560 48) (-828 -560 48) (-828 -560 44)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 164 221" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "172311" + "id" "77096" side { - "id" "60882" - "plane" "(8 -976 432) (8 -96 432) (160 -96 520)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" + "id" "38840" + "plane" "(-832 -480 48) (-832 -432 48) (-828 -432 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93473,108 +95935,449 @@ world } side { - "id" "60881" - "plane" "(160 -976 512) (160 -976 520) (160 -96 520)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 80] 0.25" + "id" "38839" + "plane" "(-828 -480 44) (-828 -432 44) (-832 -432 40)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60880" - "plane" "(8 -96 424) (8 -96 432) (8 -976 432)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 80] 0.25" + "id" "38838" + "plane" "(-828 -432 44) (-828 -480 44) (-828 -480 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60879" - "plane" "(160 -96 512) (160 -96 520) (8 -96 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "38837" + "plane" "(-832 -432 40) (-828 -432 44) (-828 -432 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60878" - "plane" "(8 -976 424) (8 -976 432) (160 -976 520)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 352] 0.25" - "vaxis" "[0 0 -1 80] 0.25" + "id" "38836" + "plane" "(-832 -480 40) (-832 -432 40) (-832 -432 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60877" - "plane" "(8 -96 424) (8 -976 424) (160 -976 512)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 352] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "38835" + "plane" "(-832 -480 48) (-828 -480 48) (-828 -480 44)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 164 221" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } + hidden + { + solid + { + "id" "77099" + side + { + "id" "38852" + "plane" "(-832 -564 0) (-832 -428 0) (-832 -428 48)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38851" + "plane" "(-828 -432 0) (-828 -560 0) (-828 -560 48)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38850" + "plane" "(-832 -428 0) (-828 -432 0) (-828 -432 48)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38849" + "plane" "(-828 -560 0) (-832 -564 0) (-832 -564 48)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38848" + "plane" "(-832 -564 0) (-828 -560 0) (-828 -432 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38847" + "plane" "(-832 -428 48) (-828 -432 48) (-828 -560 48)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 108 237" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "74806" + side + { + "id" "38568" + "plane" "(1600 448 64) (2112 448 64) (2112 960 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38567" + "plane" "(2112 960 128) (2112 960 64) (2112 448 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38566" + "plane" "(2112 448 128) (2112 448 64) (1600 448 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38565" + "plane" "(1600 960 64) (2112 960 64) (2112 960 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38564" + "plane" "(2112 960 128) (2112 448 128) (1600 448 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 144 237" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "74812" + side + { + "id" "38578" + "plane" "(1856 544 96) (1856 448 96) (2112 448 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38577" + "plane" "(2112 448 128) (2112 448 96) (1856 448 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38576" + "plane" "(1856 448 128) (1856 448 96) (1856 544 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38575" + "plane" "(2112 544 96) (2112 448 96) (2112 448 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38574" + "plane" "(2112 448 128) (1856 448 128) (1856 544 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 144 237" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "73875" + side + { + "id" "38548" + "plane" "(-256 -2272 0) (0 -2272 64) (0 -2432 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38547" + "plane" "(-256 -2432 0) (0 -2432 0) (0 -2272 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38545" + "plane" "(0 -2432 0) (0 -2432 64) (0 -2272 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38544" + "plane" "(-256 -2432 0) (0 -2432 64) (0 -2432 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38543" + "plane" "(0 -2272 0) (0 -2272 64) (-256 -2272 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 176 105" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "73879" + side + { + "id" "38558" + "plane" "(-224 -2272 8) (-256 -2272 0) (-224 -2240 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38557" + "plane" "(-224 -2272 0) (-224 -2240 0) (-256 -2272 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38555" + "plane" "(-224 -2272 8) (-224 -2272 0) (-256 -2272 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38554" + "plane" "(-224 -2272 8) (-224 -2240 0) (-224 -2272 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 176 105" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } solid { - "id" "172319" + "id" "72464" side { - "id" "60900" - "plane" "(160 -984 528) (160 -96.0001 528) (312 -96.0001 440)" - "material" "WOOD/MILROOF001" - "uaxis" "[0 1 0 -145] 0.25" - "vaxis" "[1 0 0 -293] 0.25" + "id" "50100" + "plane" "(164 -636 96) (164 -528 96) (196 -528 96)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[0 1 0 0] 0.2" + "vaxis" "[1 0 0 0] 0.2" "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60899" - "plane" "(160 -96.0001 520) (160 -96.0001 528) (160 -984 528)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "50099" + "plane" "(164 -528 -128) (164 -636 -128) (196 -636 -128)" + "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" "60898" - "plane" "(312 -984 432) (312 -984 440) (312 -96.0001 440)" - "material" "WOOD/MILROOF001" - "uaxis" "[0 1 0 -145] 0.25" - "vaxis" "[0 0 -1 155] 0.25" + "id" "50098" + "plane" "(164 -636 -128) (164 -528 -128) (164 -528 96)" + "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" "60897" - "plane" "(312 -96.0001 432) (312 -96.0001 440) (160 -96.0001 528)" + "id" "50097" + "plane" "(196 -528 -128) (196 -636 -128) (196 -636 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93582,75 +96385,76 @@ world } side { - "id" "60896" - "plane" "(160 -984 520) (160 -984 528) (312 -984 440)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 96] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "50096" + "plane" "(164 -528 -128) (196 -528 -128) (196 -528 96)" + "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" "60895" - "plane" "(160 -96.0001 520) (160 -984 520) (312 -984 432)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 96] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "50095" + "plane" "(196 -636 -128) (164 -636 -128) (164 -636 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 222" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "172320" + "id" "70093" side { - "id" "60906" - "plane" "(8 -984 440) (8 -96.0001 440) (160 -96.0001 528)" - "material" "WOOD/MILROOF001" - "uaxis" "[0 1 0 -145] 0.25" - "vaxis" "[-1 0 0 -293] 0.25" - "rotation" "90" + "id" "37571" + "plane" "(1280 -64 320) (1280 0 320) (1296 0 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" "60905" - "plane" "(160 -984 520) (160 -984 528) (160 -96.0001 528)" + "id" "37570" + "plane" "(1296 -64 128) (1296 -64 320) (1296 0 320)" "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60904" - "plane" "(8 -96.0001 432) (8 -96.0001 440) (8 -984 440)" - "material" "WOOD/MILROOF001" - "uaxis" "[0 1 0 -145] 0.25" - "vaxis" "[0 0 -1 411] 0.25" + "id" "37569" + "plane" "(1280 0 128) (1280 0 320) (1280 -64 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60903" - "plane" "(160 -96.0001 520) (160 -96.0001 528) (8 -96.0001 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" + "id" "37568" + "plane" "(1280 -64 128) (1280 -64 320) (1296 -64 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -192] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93658,21 +96462,21 @@ world } side { - "id" "60902" - "plane" "(8 -984 432) (8 -984 440) (160 -984 528)" + "id" "37567" + "plane" "(1296 0 128) (1296 0 320) (1280 0 320)" "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 352] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "uaxis" "[1 0 0 -192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60901" - "plane" "(8 -96.0001 432) (8 -984 432) (160 -984 520)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 352] 0.25" + "id" "37566" + "plane" "(1280 0 128) (1280 -64 128) (1296 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93680,64 +96484,64 @@ world } editor { - "color" "0 133 222" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "172324" + "id" "70094" side { - "id" "60918" - "plane" "(-128 -960 216) (-128 -928 216) (-108 -928 216)" + "id" "37577" + "plane" "(1280 64 320) (1280 128 320) (1296 128 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60917" - "plane" "(-128 -928 88) (-128 -928 216) (-128 -960 216)" - "material" "TOOLS/TOOLSNODRAW" + "id" "37576" + "plane" "(1280 128 128) (1280 128 320) (1280 64 320)" + "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60916" - "plane" "(-108 -960 88) (-108 -960 216) (-108 -928 216)" - "material" "TOOLS/TOOLSNODRAW" + "id" "37575" + "plane" "(1296 64 128) (1296 64 320) (1296 128 320)" + "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60915" - "plane" "(-108 -928 88) (-108 -928 216) (-128 -928 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "37574" + "plane" "(1296 128 128) (1296 128 320) (1280 128 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "60914" - "plane" "(-128 -960 88) (-128 -960 216) (-108 -960 216)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER02_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" + "id" "37573" + "plane" "(1280 64 128) (1280 64 320) (1296 64 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93745,10 +96549,10 @@ world } side { - "id" "60913" - "plane" "(-128 -928 88) (-128 -960 88) (-108 -960 88)" + "id" "37572" + "plane" "(1280 128 128) (1280 64 128) (1296 64 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93756,42 +96560,42 @@ world } editor { - "color" "0 143 120" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167932" + "id" "70176" side { - "id" "58272" - "plane" "(1536 -2768 64) (1472 -2768 64) (1472 -2752 64)" + "id" "37589" + "plane" "(1056 640 64) (1056 768 64) (1184 768 64)" "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58271" - "plane" "(1472 -2768 -128) (1536 -2768 -128) (1536 -2752 -128)" + "id" "37588" + "plane" "(1056 768 0) (1056 640 0) (1184 640 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58270" - "plane" "(1536 -2768 -128) (1472 -2768 -128) (1472 -2768 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "37587" + "plane" "(1056 640 0) (1056 768 0) (1056 768 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93799,10 +96603,10 @@ world } side { - "id" "58269" - "plane" "(1472 -2752 -128) (1536 -2752 -128) (1536 -2752 64)" + "id" "37586" + "plane" "(1184 768 0) (1184 640 0) (1184 640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93810,10 +96614,10 @@ world } side { - "id" "58268" - "plane" "(1472 -2768 -128) (1472 -2752 -128) (1472 -2752 64)" + "id" "37585" + "plane" "(1056 768 0) (1184 768 0) (1184 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93821,10 +96625,10 @@ world } side { - "id" "58267" - "plane" "(1536 -2752 -128) (1536 -2768 -128) (1536 -2768 64)" + "id" "37584" + "plane" "(1184 640 0) (1056 640 0) (1056 640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93832,54 +96636,43 @@ world } editor { - "color" "0 149 238" - "visgroupid" "18" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167945" + "id" "70185" side { - "id" "58524" - "plane" "(2122.3 -3970.53 288) (2274.3 -4233.81 288) (1886.32 -4457.81 288)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37606" + "plane" "(1152 640 64) (1184 640 64) (1184 608 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58523" - "plane" "(2274.3 -4233.81 128) (2122.3 -3970.53 128) (1734.32 -4194.53 128)" + "id" "37605" + "plane" "(1152 640 0) (1184 608 0) (1184 640 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "58522" - "plane" "(2122.3 -3970.53 128) (2274.3 -4233.81 128) (2274.3 -4233.81 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58521" - "plane" "(1886.32 -4457.81 128) (1734.32 -4194.53 128) (1734.32 -4194.53 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37604" + "plane" "(1184 640 0) (1184 608 0) (1184 608 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93887,10 +96680,10 @@ world } side { - "id" "58520" - "plane" "(2274.3 -4233.81 128) (1886.32 -4457.81 128) (1886.32 -4457.81 288)" + "id" "37603" + "plane" "(1152 640 0) (1184 640 0) (1184 640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93898,10 +96691,10 @@ world } side { - "id" "58519" - "plane" "(1734.32 -4194.53 128) (2122.3 -3970.53 128) (2122.3 -3970.53 288)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37602" + "plane" "(1184 608 0) (1152 640 0) (1152 640 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93909,44 +96702,42 @@ world } editor { - "color" "156 245 0" - "groupid" "167944" - "visgroupid" "18" + "color" "0 217 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167946" + "id" "70214" side { - "id" "58529" - "plane" "(1889.46 -4271.24 320) (2111.16 -4143.24 320) (2035.16 -4011.61 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37623" + "plane" "(1280 128 128) (1184 128 128) (1184 224 128)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58528" - "plane" "(2111.16 -4143.24 320) (1889.46 -4271.24 320) (2000.31 -4207.24 416)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37622" + "plane" "(1184 128 64) (1280 128 64) (1184 224 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 34.9093] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58527" - "plane" "(1813.46 -4139.61 320) (2035.16 -4011.61 320) (1924.31 -4075.61 416)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37621" + "plane" "(1280 128 64) (1184 128 64) (1184 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 34.9093] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -93954,66 +96745,65 @@ world } side { - "id" "58526" - "plane" "(1924.31 -4075.61 416) (2035.16 -4011.61 320) (2111.16 -4143.24 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37620" + "plane" "(1184 128 64) (1184 224 64) (1184 224 128)" + "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" "58525" - "plane" "(2000.31 -4207.24 416) (1889.46 -4271.24 320) (1813.46 -4139.61 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37619" + "plane" "(1184 224 64) (1280 128 64) (1280 128 128)" + "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" "156 245 0" - "groupid" "167944" - "visgroupid" "18" + "color" "0 226 179" + "groupid" "70187" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167947" + "id" "70221" side { - "id" "58535" - "plane" "(2058.87 -3988.68 320) (2218.87 -4265.81 320) (1941.74 -4425.81 320)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37630" + "plane" "(1184 320 320) (1408 320 320) (1408 128 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" "58534" - "plane" "(2218.87 -4265.81 288) (2058.87 -3988.68 288) (1781.74 -4148.68 288)" + "id" "37629" + "plane" "(1184 224 64) (1280 128 64) (1408 128 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58533" - "plane" "(2058.87 -3988.68 288) (2218.87 -4265.81 288) (2218.87 -4265.81 320)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37628" + "plane" "(1184 320 64) (1184 320 320) (1184 224 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94021,10 +96811,10 @@ world } side { - "id" "58532" - "plane" "(1941.74 -4425.81 288) (1781.74 -4148.68 288) (1781.74 -4148.68 320)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37627" + "plane" "(1408 128 64) (1408 128 320) (1408 320 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94032,10 +96822,10 @@ world } side { - "id" "58531" - "plane" "(2218.87 -4265.81 288) (1941.74 -4425.81 288) (1941.74 -4425.81 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "id" "37626" + "plane" "(1408 320 64) (1408 320 320) (1184 320 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94043,10 +96833,21 @@ world } side { - "id" "58530" - "plane" "(1781.74 -4148.68 288) (2058.87 -3988.68 288) (2058.87 -3988.68 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37625" + "plane" "(1280 128 64) (1280 128 320) (1408 128 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37624" + "plane" "(1184 224 64) (1184 224 320) (1280 128 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94054,33 +96855,53 @@ world } editor { - "color" "156 245 0" - "groupid" "167944" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167948" + "id" "70287" side { - "id" "58545" - "plane" "(2244.44 -4214.09 288) (2116.44 -3992.39 288) (1756.17 -4200.39 288)" + "id" "37671" + "plane" "(1664 672 72) (1664 960 72) (1728 960 72)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37670" + "plane" "(1664 960 64) (1664 672 64) (1728 672 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58544" - "plane" "(2148.44 -4047.82 384) (2132.44 -4020.1 352) (2116.44 -3992.39 288)" + "id" "37669" + "plane" "(1664 672 64) (1664 960 64) (1664 960 72)" + "material" "RYAN_DEV/BROWN2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37668" + "plane" "(1728 960 64) (1728 672 64) (1728 672 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94088,10 +96909,10 @@ world } side { - "id" "58543" - "plane" "(1884.17 -4422.09 288) (1756.17 -4200.39 288) (1772.17 -4228.1 352)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37667" + "plane" "(1664 960 64) (1728 960 64) (1728 960 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94099,121 +96920,131 @@ world } side { - "id" "58542" - "plane" "(1772.17 -4228.1 352) (1756.17 -4200.39 288) (2116.44 -3992.39 288)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[-0.866025 -0.5 0 169.786] 0.25" - "vaxis" "[0 0 -1 96] 0.25" + "id" "37666" + "plane" "(1728 672 64) (1664 672 64) (1664 672 72)" + "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 217 190" + "visgroupid" "23" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "70293" side { - "id" "58541" - "plane" "(1788.17 -4255.82 384) (1772.17 -4228.1 352) (2132.44 -4020.1 352)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[-0.866025 -0.5 0 169.786] 0.25" - "vaxis" "[0 0 -1 96] 0.25" + "id" "37683" + "plane" "(1728 960 80) (1792 960 80) (1792 608 80)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58540" - "plane" "(2148.44 -4047.82 384) (2164.44 -4075.53 400) (1804.17 -4283.53 400)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[-0.866025 -0.5 0 169.786] 0.25" - "vaxis" "[-0.5 0.866025 0 110.929] 0.25" + "id" "37682" + "plane" "(1728 672 64) (1792 608 64) (1792 960 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" "58539" - "plane" "(2228.44 -4186.38 352) (2244.44 -4214.09 288) (1884.17 -4422.09 288)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[-0.866025 -0.5 0 169.786] 0.25" - "vaxis" "[0 0 -1 96] 0.25" + "id" "37681" + "plane" "(1728 960 64) (1728 960 80) (1728 672 80)" + "material" "RYAN_DEV/BROWN2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58538" - "plane" "(2212.44 -4158.67 384) (2228.44 -4186.38 352) (1868.17 -4394.38 352)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[-0.866025 -0.5 0 169.786] 0.25" - "vaxis" "[0 0 -1 96] 0.25" + "id" "37680" + "plane" "(1792 608 64) (1792 608 80) (1792 960 80)" + "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" "58537" - "plane" "(2196.44 -4130.95 400) (2212.44 -4158.67 384) (1852.17 -4366.67 384)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[-0.866025 -0.5 0 169.786] 0.25" - "vaxis" "[-0.5 0.866025 0 110.929] 0.25" + "id" "37679" + "plane" "(1792 960 64) (1792 960 80) (1728 960 80)" + "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" "58536" - "plane" "(2164.44 -4075.53 400) (2196.44 -4130.95 400) (1836.17 -4338.95 400)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[-0.866025 -0.5 0 169.786] 0.25" - "vaxis" "[-0.5 0.866025 0 110.929] 0.25" + "id" "37678" + "plane" "(1728 672 64) (1728 672 80) (1792 608 80)" + "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" "156 245 0" - "groupid" "167944" - "visgroupid" "18" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167949" + "id" "70296" side { - "id" "58551" - "plane" "(2114.3 -3956.68 256) (2122.3 -3970.53 256) (1983.73 -4050.53 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37695" + "plane" "(1792 960 88) (1856 960 88) (1856 544 88)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58550" - "plane" "(2122.3 -3970.53 128) (2114.3 -3956.68 128) (1975.73 -4036.68 128)" + "id" "37694" + "plane" "(1792 608 64) (1856 544 64) (1856 960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58549" - "plane" "(2114.3 -3956.68 128) (2122.3 -3970.53 128) (2122.3 -3970.53 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37693" + "plane" "(1792 960 64) (1792 960 88) (1792 608 88)" + "material" "RYAN_DEV/BROWN2" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94221,10 +97052,10 @@ world } side { - "id" "58548" - "plane" "(1983.73 -4050.53 128) (1975.73 -4036.68 128) (1975.73 -4036.68 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37692" + "plane" "(1856 544 64) (1856 544 88) (1856 960 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94232,10 +97063,10 @@ world } side { - "id" "58547" - "plane" "(2122.3 -3970.53 128) (1983.73 -4050.53 128) (1983.73 -4050.53 256)" + "id" "37691" + "plane" "(1856 960 64) (1856 960 88) (1792 960 88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94243,10 +97074,10 @@ world } side { - "id" "58546" - "plane" "(1975.73 -4036.68 128) (2114.3 -3956.68 128) (2114.3 -3956.68 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37690" + "plane" "(1792 608 64) (1792 608 88) (1856 544 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94254,44 +97085,43 @@ world } editor { - "color" "156 245 0" - "groupid" "167944" - "visgroupid" "18" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167950" + "id" "70299" side { - "id" "58557" - "plane" "(1892.6 -4084.68 256) (1900.6 -4098.53 256) (1872.88 -4114.53 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37707" + "plane" "(1920 448 96) (1856 448 96) (1856 960 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58556" - "plane" "(1900.6 -4098.53 128) (1892.6 -4084.68 128) (1864.88 -4100.68 128)" + "id" "37706" + "plane" "(1920 960 64) (1856 960 64) (1856 448 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58555" - "plane" "(1892.6 -4084.68 128) (1900.6 -4098.53 128) (1900.6 -4098.53 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37705" + "plane" "(1856 448 96) (1856 448 64) (1856 960 64)" + "material" "RYAN_DEV/BROWN2" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94299,10 +97129,10 @@ world } side { - "id" "58554" - "plane" "(1872.88 -4114.53 128) (1864.88 -4100.68 128) (1864.88 -4100.68 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37704" + "plane" "(1920 960 96) (1920 960 64) (1920 448 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94310,10 +97140,10 @@ world } side { - "id" "58553" - "plane" "(1900.6 -4098.53 128) (1872.88 -4114.53 128) (1872.88 -4114.53 256)" + "id" "37703" + "plane" "(1856 960 96) (1856 960 64) (1920 960 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94321,10 +97151,10 @@ world } side { - "id" "58552" - "plane" "(1864.88 -4100.68 128) (1892.6 -4084.68 128) (1892.6 -4084.68 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37702" + "plane" "(1920 448 96) (1920 448 64) (1856 448 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94332,44 +97162,43 @@ world } editor { - "color" "156 245 0" - "groupid" "167944" - "visgroupid" "18" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167951" + "id" "70308" side { - "id" "58563" - "plane" "(1942.16 -4074.53 256) (1900.6 -4098.53 256) (1892.6 -4084.68 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37719" + "plane" "(1984 448 104) (1920 448 104) (1920 960 104)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58562" - "plane" "(1934.16 -4060.68 232) (1892.6 -4084.68 224) (1900.6 -4098.53 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37718" + "plane" "(1984 960 64) (1920 960 64) (1920 448 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" "58561" - "plane" "(1900.6 -4098.53 224) (1892.6 -4084.68 224) (1892.6 -4084.68 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37717" + "plane" "(1920 448 104) (1920 448 64) (1920 960 64)" + "material" "RYAN_DEV/BROWN2" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94377,10 +97206,10 @@ world } side { - "id" "58560" - "plane" "(1900.6 -4098.53 256) (1942.16 -4074.53 256) (1942.16 -4074.53 232)" + "id" "37716" + "plane" "(1984 960 104) (1984 960 64) (1984 448 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94388,10 +97217,10 @@ world } side { - "id" "58559" - "plane" "(1892.6 -4084.68 224) (1934.16 -4060.68 232) (1934.16 -4060.68 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37715" + "plane" "(1920 960 104) (1920 960 64) (1984 960 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94399,10 +97228,10 @@ world } side { - "id" "58558" - "plane" "(1934.16 -4060.68 232) (1942.16 -4074.53 232) (1942.16 -4074.53 256)" + "id" "37714" + "plane" "(1984 448 104) (1984 448 64) (1920 448 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94410,44 +97239,43 @@ world } editor { - "color" "156 245 0" - "groupid" "167944" - "visgroupid" "18" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167952" + "id" "70312" side { - "id" "58569" - "plane" "(1975.73 -4036.68 256) (1983.73 -4050.53 256) (1942.16 -4074.53 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37731" + "plane" "(2048 448 112) (1984 448 112) (1984 960 112)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58568" - "plane" "(1983.73 -4050.53 224) (1975.73 -4036.68 224) (1934.16 -4060.68 232)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37730" + "plane" "(2048 960 64) (1984 960 64) (1984 448 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" "58567" - "plane" "(1975.73 -4036.68 224) (1983.73 -4050.53 224) (1983.73 -4050.53 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37729" + "plane" "(1984 448 112) (1984 448 64) (1984 960 64)" + "material" "RYAN_DEV/BROWN2" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94455,10 +97283,10 @@ world } side { - "id" "58566" - "plane" "(1983.73 -4050.53 224) (1942.16 -4074.53 232) (1942.16 -4074.53 256)" + "id" "37728" + "plane" "(2048 960 112) (2048 960 64) (2048 448 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94466,10 +97294,10 @@ world } side { - "id" "58565" - "plane" "(1975.73 -4036.68 256) (1934.16 -4060.68 256) (1934.16 -4060.68 232)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37727" + "plane" "(1984 960 112) (1984 960 64) (2048 960 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94477,10 +97305,10 @@ world } side { - "id" "58564" - "plane" "(1942.16 -4074.53 232) (1934.16 -4060.68 232) (1934.16 -4060.68 256)" + "id" "37726" + "plane" "(2048 448 112) (2048 448 64) (1984 448 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94488,44 +97316,43 @@ world } editor { - "color" "156 245 0" - "groupid" "167944" - "visgroupid" "18" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167953" + "id" "70314" side { - "id" "58575" - "plane" "(2114.3 -3956.68 288) (2122.3 -3970.53 288) (1734.32 -4194.53 288)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37743" + "plane" "(2048 448 120) (2048 768 120) (2112 768 120)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58574" - "plane" "(2122.3 -3970.53 256) (2114.3 -3956.68 256) (1726.32 -4180.68 256)" + "id" "37742" + "plane" "(2048 768 64) (2048 448 64) (2112 448 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58573" - "plane" "(2114.3 -3956.68 256) (2122.3 -3970.53 256) (2122.3 -3970.53 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37741" + "plane" "(2048 448 64) (2048 768 64) (2048 768 120)" + "material" "RYAN_DEV/BROWN2" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94533,10 +97360,10 @@ world } side { - "id" "58572" - "plane" "(1734.32 -4194.53 256) (1726.32 -4180.68 256) (1726.32 -4180.68 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37740" + "plane" "(2112 768 64) (2112 448 64) (2112 448 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94544,10 +97371,10 @@ world } side { - "id" "58571" - "plane" "(2122.3 -3970.53 256) (1734.32 -4194.53 256) (1734.32 -4194.53 288)" + "id" "37739" + "plane" "(2048 768 64) (2112 768 64) (2112 768 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94555,10 +97382,10 @@ world } side { - "id" "58570" - "plane" "(1726.32 -4180.68 256) (2114.3 -3956.68 256) (2114.3 -3956.68 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37738" + "plane" "(2112 448 64) (2048 448 64) (2048 448 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94566,44 +97393,43 @@ world } editor { - "color" "156 245 0" - "groupid" "167944" - "visgroupid" "18" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167954" + "id" "70316" side { - "id" "58581" - "plane" "(1862.88 -4097.21 168) (1864.88 -4100.68 168) (1809.46 -4132.68 168)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37755" + "plane" "(2112 448 128) (2112 768 128) (2176 768 128)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58580" - "plane" "(1864.88 -4100.68 160) (1862.88 -4097.21 160) (1807.46 -4129.21 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37754" + "plane" "(2112 768 64) (2112 448 64) (2176 448 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" "58579" - "plane" "(1862.88 -4097.21 160) (1864.88 -4100.68 160) (1864.88 -4100.68 168)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37753" + "plane" "(2112 448 64) (2112 768 64) (2112 768 128)" + "material" "RYAN_DEV/BROWN2" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94611,10 +97437,10 @@ world } side { - "id" "58578" - "plane" "(1809.46 -4132.68 160) (1807.46 -4129.21 160) (1807.46 -4129.21 168)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37752" + "plane" "(2176 768 64) (2176 448 64) (2176 448 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94622,10 +97448,10 @@ world } side { - "id" "58577" - "plane" "(1864.88 -4100.68 160) (1809.46 -4132.68 160) (1809.46 -4132.68 168)" + "id" "37751" + "plane" "(2112 768 64) (2176 768 64) (2176 768 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94633,10 +97459,10 @@ world } side { - "id" "58576" - "plane" "(1807.46 -4129.21 160) (1862.88 -4097.21 160) (1862.88 -4097.21 168)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37750" + "plane" "(2176 448 64) (2112 448 64) (2112 448 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94644,43 +97470,43 @@ world } editor { - "color" "156 245 0" - "groupid" "167944" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167955" + "id" "70423" side { - "id" "58587" - "plane" "(1809.46 -4132.68 256) (1817.46 -4146.53 256) (1734.32 -4194.53 256)" + "id" "37822" + "plane" "(704 128 320) (544 128 320) (544 192 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58586" - "plane" "(1817.46 -4146.53 128) (1809.46 -4132.68 128) (1726.32 -4180.68 128)" + "id" "37821" + "plane" "(832 192 64) (544 192 64) (544 128 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58585" - "plane" "(1809.46 -4132.68 128) (1817.46 -4146.53 128) (1817.46 -4146.53 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37820" + "plane" "(544 192 64) (832 192 64) (832 192 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94688,10 +97514,10 @@ world } side { - "id" "58584" - "plane" "(1734.32 -4194.53 128) (1726.32 -4180.68 128) (1726.32 -4180.68 256)" + "id" "37819" + "plane" "(704 128 64) (544 128 64) (544 128 320)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94699,10 +97525,10 @@ world } side { - "id" "58583" - "plane" "(1817.46 -4146.53 128) (1734.32 -4194.53 128) (1734.32 -4194.53 256)" + "id" "37818" + "plane" "(544 128 64) (544 192 64) (544 192 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94710,10 +97536,10 @@ world } side { - "id" "58582" - "plane" "(1726.32 -4180.68 128) (1809.46 -4132.68 128) (1809.46 -4132.68 256)" + "id" "37817" + "plane" "(832 192 64) (704 128 64) (704 128 320)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94721,44 +97547,42 @@ world } editor { - "color" "156 245 0" - "groupid" "167944" - "visgroupid" "18" + "color" "0 108 237" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167956" + "id" "70434" side { - "id" "58593" - "plane" "(1864.88 -4100.68 168) (1872.88 -4114.53 168) (1817.46 -4146.53 168)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37828" + "plane" "(1184 128 128) (960 128 128) (960 320 128)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58592" - "plane" "(1872.88 -4114.53 128) (1864.88 -4100.68 128) (1809.46 -4132.68 128)" + "id" "37827" + "plane" "(960 128 64) (1184 128 64) (1184 320 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58591" - "plane" "(1864.88 -4100.68 128) (1872.88 -4114.53 128) (1872.88 -4114.53 168)" + "id" "37826" + "plane" "(1184 128 64) (960 128 64) (960 128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94766,10 +97590,10 @@ world } side { - "id" "58590" - "plane" "(1817.46 -4146.53 128) (1809.46 -4132.68 128) (1809.46 -4132.68 168)" + "id" "37825" + "plane" "(1184 320 64) (1184 128 64) (1184 128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94777,10 +97601,10 @@ world } side { - "id" "58589" - "plane" "(1872.88 -4114.53 128) (1817.46 -4146.53 128) (1817.46 -4146.53 168)" + "id" "37824" + "plane" "(960 320 64) (1184 320 64) (1184 320 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94788,10 +97612,10 @@ world } side { - "id" "58588" - "plane" "(1809.46 -4132.68 128) (1864.88 -4100.68 128) (1864.88 -4100.68 168)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37823" + "plane" "(960 128 64) (960 320 64) (960 320 128)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94799,66 +97623,66 @@ world } editor { - "color" "156 245 0" - "groupid" "167944" - "visgroupid" "18" + "color" "0 226 179" + "groupid" "926" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167957" + "id" "70435" side { - "id" "58599" - "plane" "(1845.17 -4130.53 256) (1817.46 -4146.53 256) (1809.46 -4132.68 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37834" + "plane" "(1408 -32 128) (544 -32 128) (544 128 128)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58598" - "plane" "(1837.17 -4116.68 232) (1809.46 -4132.68 224) (1817.46 -4146.53 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37833" + "plane" "(544 -32 64) (1408 -32 64) (1408 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 29.0909] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58597" - "plane" "(1817.46 -4146.53 224) (1809.46 -4132.68 224) (1809.46 -4132.68 256)" + "id" "37832" + "plane" "(1408 -32 64) (544 -32 64) (544 -32 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 29.0909] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58596" - "plane" "(1817.46 -4146.53 256) (1845.17 -4130.53 256) (1845.17 -4130.53 232)" + "id" "37831" + "plane" "(1408 128 64) (1408 -32 64) (1408 -32 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58595" - "plane" "(1809.46 -4132.68 224) (1837.17 -4116.68 232) (1837.17 -4116.68 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37830" + "plane" "(544 128 64) (1408 128 64) (1408 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 29.0909] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94866,10 +97690,10 @@ world } side { - "id" "58594" - "plane" "(1837.17 -4116.68 232) (1845.17 -4130.53 232) (1845.17 -4130.53 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37829" + "plane" "(544 -32 64) (544 128 64) (544 128 128)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94877,66 +97701,66 @@ world } editor { - "color" "156 245 0" - "groupid" "167944" - "visgroupid" "18" + "color" "0 226 179" + "groupid" "70398" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167958" + "id" "70436" side { - "id" "58605" - "plane" "(1864.88 -4100.68 256) (1872.88 -4114.53 256) (1845.17 -4130.53 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37840" + "plane" "(896 -128 128) (576 -128 128) (576 -32 128)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58604" - "plane" "(1872.88 -4114.53 224) (1864.88 -4100.68 224) (1837.17 -4116.68 232)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37839" + "plane" "(576 -128 64) (896 -128 64) (896 -32 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 29.0909] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58603" - "plane" "(1864.88 -4100.68 224) (1872.88 -4114.53 224) (1872.88 -4114.53 256)" + "id" "37838" + "plane" "(896 -128 64) (576 -128 64) (576 -128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 29.0909] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58602" - "plane" "(1872.88 -4114.53 224) (1845.17 -4130.53 232) (1845.17 -4130.53 256)" + "id" "37837" + "plane" "(896 -32 64) (896 -128 64) (896 -128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58601" - "plane" "(1864.88 -4100.68 256) (1837.17 -4116.68 256) (1837.17 -4116.68 232)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37836" + "plane" "(576 -32 64) (896 -32 64) (896 -32 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 29.0909] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94944,10 +97768,10 @@ world } side { - "id" "58600" - "plane" "(1845.17 -4130.53 232) (1837.17 -4116.68 232) (1837.17 -4116.68 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37835" + "plane" "(576 -128 64) (576 -32 64) (576 -32 128)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -94955,44 +97779,44 @@ world } editor { - "color" "156 245 0" - "groupid" "167944" - "visgroupid" "18" + "color" "0 226 179" + "groupid" "70392" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167959" + "id" "70500" side { - "id" "58611" - "plane" "(1938.16 -4067.61 320) (2035.16 -4011.61 320) (2031.16 -4004.68 320)" + "id" "37942" + "plane" "(-864 -416 128) (-832 -416 128) (-832 -432 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 46.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58610" - "plane" "(2035.16 -4011.61 320) (1938.16 -4067.61 320) (1938.16 -4067.61 352)" + "id" "37941" + "plane" "(-864 -432 48) (-832 -432 48) (-832 -416 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58609" - "plane" "(1934.16 -4060.68 320) (2031.16 -4004.68 320) (1994.21 -4026.01 352)" + "id" "37940" + "plane" "(-832 -416 48) (-832 -432 48) (-832 -432 128)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95000,21 +97824,21 @@ world } side { - "id" "58608" - "plane" "(1994.21 -4026.01 352) (2031.16 -4004.68 320) (2035.16 -4011.61 320)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37939" + "plane" "(-864 -416 48) (-832 -416 48) (-832 -416 128)" + "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" "58607" - "plane" "(1938.16 -4067.61 352) (1938.16 -4067.61 320) (1934.16 -4060.68 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37938" + "plane" "(-832 -432 48) (-864 -432 48) (-864 -432 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95022,19 +97846,18 @@ world } side { - "id" "58606" - "plane" "(1934.16 -4060.68 352) (1994.2 -4026.01 352) (1998.2 -4032.94 352)" + "id" "37937" + "plane" "(-864 -432 48) (-864 -416 48) (-864 -416 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167944" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -95042,35 +97865,35 @@ world } solid { - "id" "167960" + "id" "70501" side { - "id" "58617" - "plane" "(1910.45 -4083.61 320) (1938.16 -4067.61 320) (1934.16 -4060.68 320)" + "id" "37948" + "plane" "(-864 -480 128) (-832 -480 128) (-832 -512 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 46.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58616" - "plane" "(1938.16 -4067.61 352) (1938.16 -4067.61 320) (1910.45 -4083.61 320)" + "id" "37947" + "plane" "(-864 -512 48) (-832 -512 48) (-832 -480 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58615" - "plane" "(1906.45 -4076.68 352) (1906.45 -4076.68 320) (1934.16 -4060.68 320)" + "id" "37946" + "plane" "(-832 -480 48) (-832 -512 48) (-832 -512 128)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95078,10 +97901,10 @@ world } side { - "id" "58614" - "plane" "(1934.16 -4060.68 352) (1934.16 -4060.68 320) (1938.16 -4067.61 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37945" + "plane" "(-864 -480 48) (-832 -480 48) (-832 -480 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95089,10 +97912,10 @@ world } side { - "id" "58613" - "plane" "(1910.45 -4083.61 352) (1910.45 -4083.61 320) (1906.45 -4076.68 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37944" + "plane" "(-832 -512 48) (-864 -512 48) (-864 -512 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95100,19 +97923,18 @@ world } side { - "id" "58612" - "plane" "(1906.45 -4076.68 352) (1934.16 -4060.68 352) (1938.16 -4067.61 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37943" + "plane" "(-864 -512 48) (-864 -480 48) (-864 -480 128)" + "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" "156 245 0" - "groupid" "167944" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -95120,35 +97942,35 @@ world } solid { - "id" "167961" + "id" "70502" side { - "id" "58623" - "plane" "(1813.46 -4139.61 320) (1910.45 -4083.61 320) (1906.45 -4076.68 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 46.9292] 0.25" + "id" "37954" + "plane" "(-864 -416 48) (-832 -416 48) (-832 -576 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58622" - "plane" "(1910.45 -4083.61 320) (1813.46 -4139.61 320) (1850.41 -4118.27 352)" + "id" "37953" + "plane" "(-864 -576 16) (-832 -576 16) (-832 -416 16)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58621" - "plane" "(1809.46 -4132.68 320) (1906.45 -4076.68 320) (1906.45 -4076.68 352)" + "id" "37952" + "plane" "(-832 -416 16) (-832 -576 16) (-832 -576 48)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95156,21 +97978,21 @@ world } side { - "id" "58620" - "plane" "(1850.41 -4118.27 352) (1813.46 -4139.61 320) (1809.46 -4132.68 320)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37951" + "plane" "(-864 -416 16) (-832 -416 16) (-832 -416 48)" + "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" "58619" - "plane" "(1906.45 -4076.68 352) (1906.45 -4076.68 320) (1910.45 -4083.61 320)" + "id" "37950" + "plane" "(-832 -576 16) (-864 -576 16) (-864 -576 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95178,19 +98000,18 @@ world } side { - "id" "58618" - "plane" "(1846.42 -4111.34 352) (1906.45 -4076.68 352) (1910.45 -4083.61 352)" + "id" "37949" + "plane" "(-864 -576 16) (-864 -416 16) (-864 -416 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167944" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -95198,24 +98019,35 @@ world } solid { - "id" "167962" + "id" "70503" side { - "id" "58628" - "plane" "(1938.16 -4067.61 392) (1938.16 -4067.61 404) (1952.02 -4059.61 392)" + "id" "37960" + "plane" "(-864 -416 16) (-832 -416 16) (-832 -576 16)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58627" - "plane" "(1948.02 -4052.68 392) (1934.16 -4060.68 404) (1934.16 -4060.68 392)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37959" + "plane" "(-864 -576 0) (-832 -576 0) (-832 -416 0)" + "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" "37958" + "plane" "(-832 -416 0) (-832 -576 0) (-832 -576 16)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95223,21 +98055,21 @@ world } side { - "id" "58626" - "plane" "(1934.16 -4060.68 404) (1948.02 -4052.68 392) (1952.02 -4059.61 392)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37957" + "plane" "(-864 -416 0) (-832 -416 0) (-832 -416 16)" + "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" "58625" - "plane" "(1938.16 -4067.61 404) (1938.16 -4067.61 392) (1934.16 -4060.68 392)" + "id" "37956" + "plane" "(-832 -576 0) (-864 -576 0) (-864 -576 16)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95245,19 +98077,18 @@ world } side { - "id" "58624" - "plane" "(1938.16 -4067.61 392) (1952.02 -4059.61 392) (1948.02 -4052.68 392)" + "id" "37955" + "plane" "(-864 -576 0) (-864 -416 0) (-864 -416 16)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167944" + "color" "0 194 151" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -95265,46 +98096,46 @@ world } solid { - "id" "167963" + "id" "70504" side { - "id" "58634" - "plane" "(1938.16 -4067.61 352) (1938.16 -4067.61 392) (1952.02 -4059.61 392)" + "id" "37966" + "plane" "(-864 -512 128) (-848 -512 128) (-848 -560 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58633" - "plane" "(1994.2 -4026.01 352) (1948.02 -4052.68 392) (1934.16 -4060.68 392)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37965" + "plane" "(-864 -560 48) (-848 -560 48) (-848 -512 48)" + "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" "58632" - "plane" "(1948.02 -4052.68 392) (1994.21 -4026.01 352) (1998.21 -4032.94 352)" + "id" "37964" + "plane" "(-848 -512 48) (-848 -560 48) (-848 -560 128)" "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58631" - "plane" "(1938.16 -4067.61 392) (1938.16 -4067.61 352) (1934.16 -4060.68 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37963" + "plane" "(-864 -512 48) (-848 -512 48) (-848 -512 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95312,30 +98143,30 @@ world } side { - "id" "58630" - "plane" "(1938.16 -4067.61 352) (1998.21 -4032.94 352) (1994.2 -4026.01 352)" + "id" "37962" + "plane" "(-848 -560 48) (-864 -560 48) (-864 -560 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58629" - "plane" "(1934.16 -4060.68 392) (1948.02 -4052.68 392) (1952.02 -4059.61 392)" + "id" "37961" + "plane" "(-864 -560 48) (-864 -512 48) (-864 -512 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167944" + "color" "102 235 0" + "groupid" "28538" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -95343,57 +98174,46 @@ world } solid { - "id" "167964" + "id" "70505" side { - "id" "58641" - "plane" "(1910.45 -4083.61 392) (1910.45 -4083.61 404) (1924.31 -4075.61 416)" + "id" "37972" + "plane" "(-864 -432 128) (-848 -432 128) (-848 -480 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "58640" - "plane" "(1934.16 -4060.68 392) (1934.16 -4060.68 404) (1920.31 -4068.68 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58639" - "plane" "(1920.31 -4068.68 416) (1934.16 -4060.68 404) (1938.16 -4067.61 404)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37971" + "plane" "(-864 -480 48) (-848 -480 48) (-848 -432 48)" + "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" "58638" - "plane" "(1906.45 -4076.68 404) (1920.31 -4068.68 416) (1924.31 -4075.61 416)" + "id" "37970" + "plane" "(-848 -432 48) (-848 -480 48) (-848 -480 128)" "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58637" - "plane" "(1934.16 -4060.68 404) (1934.16 -4060.68 392) (1938.16 -4067.61 392)" + "id" "37969" + "plane" "(-864 -432 48) (-848 -432 48) (-848 -432 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95401,10 +98221,10 @@ world } side { - "id" "58636" - "plane" "(1910.45 -4083.61 404) (1910.45 -4083.61 392) (1906.45 -4076.68 392)" + "id" "37968" + "plane" "(-848 -480 48) (-864 -480 48) (-864 -480 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95412,19 +98232,19 @@ world } side { - "id" "58635" - "plane" "(1910.45 -4083.61 392) (1938.16 -4067.61 392) (1934.16 -4060.68 392)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37967" + "plane" "(-864 -480 48) (-864 -432 48) (-864 -432 128)" + "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" "156 245 0" - "groupid" "167944" + "color" "102 235 0" + "groupid" "28538" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -95432,24 +98252,35 @@ world } solid { - "id" "167965" + "id" "70506" side { - "id" "58646" - "plane" "(1896.6 -4091.61 392) (1910.45 -4083.61 404) (1910.45 -4083.61 392)" + "id" "37978" + "plane" "(-864 -560 128) (-832 -560 128) (-832 -576 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58645" - "plane" "(1906.45 -4076.68 392) (1906.45 -4076.68 404) (1892.6 -4084.68 392)" + "id" "37977" + "plane" "(-864 -576 48) (-832 -576 48) (-832 -560 48)" + "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" "37976" + "plane" "(-832 -560 48) (-832 -576 48) (-832 -576 128)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95457,21 +98288,21 @@ world } side { - "id" "58644" - "plane" "(1892.6 -4084.68 392) (1906.45 -4076.68 404) (1910.45 -4083.61 404)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37975" + "plane" "(-864 -560 48) (-832 -560 48) (-832 -560 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58643" - "plane" "(1906.45 -4076.68 404) (1906.45 -4076.68 392) (1910.45 -4083.61 392)" + "id" "37974" + "plane" "(-832 -576 48) (-864 -576 48) (-864 -576 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95479,19 +98310,18 @@ world } side { - "id" "58642" - "plane" "(1896.6 -4091.61 392) (1910.45 -4083.61 392) (1906.45 -4076.68 392)" + "id" "37973" + "plane" "(-864 -576 48) (-864 -560 48) (-864 -560 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167944" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -95499,46 +98329,46 @@ world } solid { - "id" "167966" + "id" "70507" side { - "id" "58652" - "plane" "(1850.41 -4118.27 352) (1896.6 -4091.61 392) (1910.45 -4083.61 392)" + "id" "37984" + "plane" "(-864 -416 160) (-832 -416 160) (-832 -576 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58651" - "plane" "(1906.45 -4076.68 352) (1906.45 -4076.68 392) (1892.6 -4084.68 392)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37983" + "plane" "(-864 -576 128) (-832 -576 128) (-832 -416 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58650" - "plane" "(1846.41 -4111.34 352) (1892.6 -4084.68 392) (1896.6 -4091.61 392)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37982" + "plane" "(-832 -416 128) (-832 -576 128) (-832 -576 160)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58649" - "plane" "(1906.45 -4076.68 392) (1906.45 -4076.68 352) (1910.45 -4083.61 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37981" + "plane" "(-864 -416 128) (-832 -416 128) (-832 -416 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95546,30 +98376,29 @@ world } side { - "id" "58648" - "plane" "(1850.41 -4118.27 352) (1910.45 -4083.61 352) (1906.45 -4076.68 352)" + "id" "37980" + "plane" "(-832 -576 128) (-864 -576 128) (-864 -576 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58647" - "plane" "(1892.6 -4084.68 392) (1906.45 -4076.68 392) (1910.45 -4083.61 392)" + "id" "37979" + "plane" "(-864 -576 128) (-864 -416 128) (-864 -416 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167944" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -95577,35 +98406,35 @@ world } solid { - "id" "167967" + "id" "70508" side { - "id" "58658" - "plane" "(1906.45 -4076.68 348) (1934.16 -4060.68 348) (1932.16 -4057.21 348)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37990" + "plane" "(-864 -416 256) (-832 -416 256) (-832 -576 256)" + "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" "58657" - "plane" "(1934.16 -4060.68 352) (1934.16 -4060.68 348) (1906.45 -4076.68 348)" + "id" "37989" + "plane" "(-864 -576 160) (-832 -576 160) (-832 -416 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58656" - "plane" "(1904.45 -4073.21 352) (1904.45 -4073.21 348) (1932.16 -4057.21 348)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37988" + "plane" "(-832 -416 160) (-832 -576 160) (-832 -576 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95613,10 +98442,10 @@ world } side { - "id" "58655" - "plane" "(1932.16 -4057.21 352) (1932.16 -4057.21 348) (1934.16 -4060.68 348)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37987" + "plane" "(-864 -416 160) (-832 -416 160) (-832 -416 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95624,10 +98453,10 @@ world } side { - "id" "58654" - "plane" "(1906.45 -4076.68 352) (1906.45 -4076.68 348) (1904.45 -4073.21 348)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37986" + "plane" "(-832 -576 160) (-864 -576 160) (-864 -576 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95635,19 +98464,18 @@ world } side { - "id" "58653" - "plane" "(1904.45 -4073.21 352) (1932.16 -4057.21 352) (1934.16 -4060.68 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37985" + "plane" "(-864 -576 160) (-864 -416 160) (-864 -416 256)" + "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" "156 245 0" - "groupid" "167944" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -95655,113 +98483,112 @@ world } solid { - "id" "167968" + "id" "70703" side { - "id" "58664" - "plane" "(1790.32 -4291.53 304) (1822.32 -4346.95 304) (1818.85 -4348.95 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "38009" + "plane" "(-576 192 70) (-576 452 70) (0 452 70)" + "material" "CONCRETE/ROADPARKINGLOT" + "uaxis" "[1 0 0 -921] 0.25" + "vaxis" "[0 -1 0 158] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58663" - "plane" "(1822.32 -4346.95 296) (1790.32 -4291.53 296) (1786.85 -4293.53 296)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "38008" + "plane" "(-576 452 64) (-576 192 64) (0 192 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" "58662" - "plane" "(1790.32 -4291.53 296) (1822.32 -4346.95 296) (1822.32 -4346.95 304)" + "id" "38007" + "plane" "(-576 192 64) (-576 452 64) (-576 452 70)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58661" - "plane" "(1818.85 -4348.95 296) (1786.85 -4293.53 296) (1786.85 -4293.53 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "38006" + "plane" "(0 452 64) (0 192 64) (0 192 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58660" - "plane" "(1822.32 -4346.95 296) (1818.85 -4348.95 296) (1818.85 -4348.95 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "38005" + "plane" "(-576 452 64) (0 452 64) (0 452 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58659" - "plane" "(1786.85 -4293.53 296) (1790.32 -4291.53 296) (1790.32 -4291.53 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "38004" + "plane" "(0 192 64) (-576 192 64) (-576 192 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167944" - "visgroupid" "18" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167972" + "id" "62617" side { - "id" "58670" - "plane" "(1820.17 -4311.24 288) (1740.17 -4172.68 288) (1726.32 -4180.68 288)" + "id" "37496" + "plane" "(-560 -3520 288) (-560 -3264 288) (32 -3264 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58669" - "plane" "(1744.17 -4179.61 304) (1740.17 -4172.68 288) (1820.17 -4311.24 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37495" + "plane" "(-560 -3264 0) (-560 -3520 0) (32 -3520 0)" + "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" "58668" - "plane" "(1806.32 -4319.24 288) (1726.32 -4180.68 288) (1730.32 -4187.61 304)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37494" + "plane" "(-560 -3520 0) (-560 -3264 0) (-560 -3264 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95769,10 +98596,10 @@ world } side { - "id" "58667" - "plane" "(1730.32 -4187.61 304) (1726.32 -4180.68 288) (1740.17 -4172.68 288)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37493" + "plane" "(32 -3264 0) (32 -3520 0) (32 -3520 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95780,10 +98607,10 @@ world } side { - "id" "58666" - "plane" "(1820.17 -4311.24 304) (1820.17 -4311.24 288) (1806.32 -4319.24 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "id" "37492" + "plane" "(-560 -3264 0) (32 -3264 0) (32 -3264 288)" + "material" "DEV/DEV_MEASURERAILS01" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95791,33 +98618,55 @@ world } side { - "id" "58665" - "plane" "(1744.17 -4179.61 304) (1820.17 -4311.24 304) (1806.32 -4319.24 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37491" + "plane" "(32 -3520 0) (-560 -3520 0) (-560 -3520 288)" + "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" "156 245 0" - "groupid" "167971" + "color" "0 165 170" "visgroupid" "18" + "visgroupid" "25" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167973" + "id" "62820" side { - "id" "58676" - "plane" "(1756.17 -4200.39 352) (1744.17 -4179.61 304) (1808.17 -4290.46 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37529" + "plane" "(576 -384 80) (576 -192 80) (896 -192 80)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37528" + "plane" "(576 -192 64) (576 -384 64) (608 -416 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" "37527" + "plane" "(896 -192 64) (896 -384 64) (896 -384 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95825,10 +98674,10 @@ world } side { - "id" "58675" - "plane" "(1730.32 -4187.61 304) (1742.32 -4208.39 352) (1794.32 -4298.46 352)" + "id" "37526" + "plane" "(576 -384 64) (576 -192 64) (576 -192 80)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95836,10 +98685,10 @@ world } side { - "id" "58674" - "plane" "(1742.32 -4208.39 352) (1730.32 -4187.61 304) (1744.17 -4179.61 304)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37525" + "plane" "(864 -416 64) (608 -416 64) (608 -416 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95847,10 +98696,10 @@ world } side { - "id" "58673" - "plane" "(1808.17 -4290.46 352) (1808.17 -4290.46 304) (1794.32 -4298.46 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37524" + "plane" "(576 -192 64) (896 -192 64) (896 -192 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95858,66 +98707,65 @@ world } side { - "id" "58672" - "plane" "(1756.17 -4200.39 352) (1808.17 -4290.46 352) (1794.32 -4298.46 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37523" + "plane" "(608 -416 64) (576 -384 64) (576 -384 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58671" - "plane" "(1808.17 -4290.46 304) (1744.17 -4179.61 304) (1730.32 -4187.61 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37522" + "plane" "(896 -384 64) (864 -416 64) (864 -416 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167971" - "visgroupid" "18" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167974" + "id" "62821" side { - "id" "58682" - "plane" "(1780.17 -4241.96 432) (1780.17 -4241.96 416) (1766.32 -4249.96 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37541" + "plane" "(608 -448 72) (608 -416 72) (864 -416 72)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58681" - "plane" "(1764.17 -4214.25 400) (1764.17 -4214.25 384) (1780.17 -4241.96 416)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37540" + "plane" "(608 -416 64) (608 -448 64) (864 -448 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" "58680" - "plane" "(1766.32 -4249.96 432) (1766.32 -4249.96 416) (1750.32 -4222.25 384)" + "id" "37539" + "plane" "(864 -416 64) (864 -448 64) (864 -448 72)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95925,10 +98773,10 @@ world } side { - "id" "58679" - "plane" "(1750.32 -4222.25 400) (1750.32 -4222.25 384) (1764.17 -4214.25 384)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37538" + "plane" "(608 -448 64) (608 -416 64) (608 -416 72)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95936,10 +98784,10 @@ world } side { - "id" "58678" - "plane" "(1764.17 -4214.25 400) (1780.17 -4241.96 432) (1766.32 -4249.96 432)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37537" + "plane" "(864 -448 64) (608 -448 64) (608 -448 72)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95947,10 +98795,10 @@ world } side { - "id" "58677" - "plane" "(1750.32 -4222.25 384) (1766.32 -4249.96 416) (1780.17 -4241.96 416)" + "id" "37536" + "plane" "(608 -416 64) (864 -416 64) (864 -416 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -95958,44 +98806,43 @@ world } editor { - "color" "156 245 0" - "groupid" "167971" - "visgroupid" "18" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167975" + "id" "61524" side { - "id" "58688" - "plane" "(1820.17 -4311.24 432) (1820.17 -4311.24 416) (1806.32 -4319.24 416)" + "id" "37295" + "plane" "(732 988 460) (768 1024 460) (768 780 460)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58687" - "plane" "(1780.17 -4241.96 432) (1780.17 -4241.96 416) (1820.17 -4311.24 416)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37294" + "plane" "(732 780 64) (768 780 64) (768 1024 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58686" - "plane" "(1806.32 -4319.24 432) (1806.32 -4319.24 416) (1766.32 -4249.96 416)" + "id" "37293" + "plane" "(732 988 64) (732 988 460) (732 780 460)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96003,188 +98850,173 @@ world } side { - "id" "58685" - "plane" "(1766.32 -4249.96 432) (1766.32 -4249.96 416) (1780.17 -4241.96 416)" + "id" "37292" + "plane" "(768 780 64) (768 780 460) (768 1024 460)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58684" - "plane" "(1780.17 -4241.96 432) (1820.17 -4311.24 432) (1806.32 -4319.24 432)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37291" + "plane" "(732 780 64) (732 780 460) (768 780 460)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58683" - "plane" "(1806.32 -4319.24 416) (1820.17 -4311.24 416) (1780.17 -4241.96 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37290" + "plane" "(768 1024 64) (768 1024 460) (732 988 460)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167971" - "visgroupid" "18" + "color" "0 226 247" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167976" + "id" "61529" side { - "id" "58695" - "plane" "(1780.17 -4241.96 416) (1820.17 -4311.24 416) (1806.32 -4319.24 416)" + "id" "37301" + "plane" "(736 992 460) (736 764 460) (924 952 460)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[0 1 0 15.3447] 0.25" + "vaxis" "[1 0 0 -7.30469] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58694" - "plane" "(1820.17 -4311.24 352) (1820.17 -4311.24 416) (1780.17 -4241.96 416)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37300" + "plane" "(796 824 560) (796 992 560) (924 992 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3447] 0.25" + "vaxis" "[1 0 0 -7.30469] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58693" - "plane" "(1742.32 -4208.39 352) (1750.32 -4222.25 384) (1766.32 -4249.96 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37299" + "plane" "(736 764 460) (736 992 460) (796 992 560)" + "material" "WOOD/MILROOF001" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58692" - "plane" "(1756.17 -4200.39 352) (1764.17 -4214.25 384) (1750.32 -4222.25 384)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37298" + "plane" "(924 992 460) (924 952 460) (924 952 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58691" - "plane" "(1764.17 -4214.25 384) (1780.17 -4241.96 416) (1766.32 -4249.96 416)" + "id" "37297" + "plane" "(924 952 460) (736 764 460) (796 824 560)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -55.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58690" - "plane" "(1806.32 -4319.24 352) (1806.32 -4319.24 416) (1820.17 -4311.24 416)" + "id" "37296" + "plane" "(736 992 460) (924 992 460) (924 992 560)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - side - { - "id" "58689" - "plane" "(1820.17 -4311.24 352) (1756.17 -4200.39 352) (1742.32 -4208.39 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } editor { - "color" "156 245 0" - "groupid" "167971" - "visgroupid" "18" + "color" "0 249 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167978" + "id" "61533" side { - "id" "58701" - "plane" "(1900.17 -4449.81 288) (1820.17 -4311.24 288) (1806.32 -4319.24 288)" + "id" "37319" + "plane" "(736 992 460) (924 992 460) (1020 1088 460)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[0 1 0 -48.6553] 0.25" + "vaxis" "[1 0 0 -7.30469] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58700" - "plane" "(1820.17 -4311.24 288) (1900.17 -4449.81 288) (1896.17 -4442.88 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37318" + "plane" "(892 1088 560) (1020 1088 560) (924 992 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48.6553] 0.25" + "vaxis" "[1 0 0 -7.30469] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58699" - "plane" "(1882.32 -4450.88 304) (1886.32 -4457.81 288) (1806.32 -4319.24 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37317" + "plane" "(832 1088 460) (892 1088 560) (796 992 560)" + "material" "WOOD/MILROOF001" + "uaxis" "[0 1 0 -368.66] 0.25" + "vaxis" "[0 0 1 -293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58698" - "plane" "(1896.17 -4442.88 304) (1900.17 -4449.81 288) (1886.32 -4457.81 288)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37316" + "plane" "(924 992 460) (924 992 560) (1020 1088 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58697" - "plane" "(1806.32 -4319.24 304) (1806.32 -4319.24 288) (1820.17 -4311.24 288)" + "id" "37315" + "plane" "(1020 1088 460) (1020 1088 560) (892 1088 560)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96192,55 +99024,53 @@ world } side { - "id" "58696" - "plane" "(1820.17 -4311.24 304) (1896.17 -4442.88 304) (1882.32 -4450.88 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37314" + "plane" "(736 992 460) (796 992 560) (924 992 560)" + "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" "156 245 0" - "groupid" "167977" - "visgroupid" "18" + "color" "0 249 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167979" + "id" "61576" side { - "id" "58707" - "plane" "(1896.17 -4442.88 304) (1884.17 -4422.09 352) (1832.17 -4332.03 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37389" + "plane" "(192 960 384) (128 896 384) (128 1088 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58706" - "plane" "(1870.32 -4430.09 352) (1882.32 -4450.88 304) (1818.32 -4340.03 304)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37388" + "plane" "(192 1088 48) (128 1088 48) (128 896 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58705" - "plane" "(1884.17 -4422.09 352) (1896.17 -4442.88 304) (1882.32 -4450.88 304)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37387" + "plane" "(192 960 384) (192 1088 384) (192 1088 48)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96248,10 +99078,10 @@ world } side { - "id" "58704" - "plane" "(1818.32 -4340.03 352) (1818.32 -4340.03 304) (1832.17 -4332.03 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37386" + "plane" "(192 1088 384) (128 1088 384) (128 1088 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96259,30 +99089,29 @@ world } side { - "id" "58703" - "plane" "(1832.17 -4332.03 352) (1884.17 -4422.09 352) (1870.32 -4430.09 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37385" + "plane" "(128 896 384) (192 960 384) (192 960 48)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58702" - "plane" "(1896.17 -4442.88 304) (1832.17 -4332.03 304) (1818.32 -4340.03 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37384" + "plane" "(128 1088 384) (128 896 384) (128 896 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167977" + "color" "0 186 151" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -96290,35 +99119,35 @@ world } solid { - "id" "167980" + "id" "61581" side { - "id" "58713" - "plane" "(1846.32 -4388.52 432) (1846.32 -4388.52 416) (1860.17 -4380.52 416)" + "id" "37401" + "plane" "(64 1152 384) (128 1152 384) (192 1088 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58712" - "plane" "(1860.17 -4380.52 432) (1860.17 -4380.52 416) (1876.17 -4408.24 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37400" + "plane" "(128 1088 48) (192 1088 48) (128 1152 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58711" - "plane" "(1862.32 -4416.24 400) (1862.32 -4416.24 384) (1846.32 -4388.52 416)" + "id" "37399" + "plane" "(128 1152 48) (192 1088 48) (192 1088 384)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96326,10 +99155,10 @@ world } side { - "id" "58710" - "plane" "(1876.17 -4408.24 400) (1876.17 -4408.24 384) (1862.32 -4416.24 384)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37398" + "plane" "(64 1152 48) (128 1152 48) (128 1152 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96337,30 +99166,29 @@ world } side { - "id" "58709" - "plane" "(1862.32 -4416.24 400) (1846.32 -4388.52 432) (1860.17 -4380.52 432)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37397" + "plane" "(192 1088 48) (128 1088 48) (128 1088 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58708" - "plane" "(1876.17 -4408.24 384) (1860.17 -4380.52 416) (1846.32 -4388.52 416)" + "id" "37396" + "plane" "(128 1088 48) (64 1152 48) (64 1152 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167977" + "color" "0 186 151" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -96368,35 +99196,35 @@ world } solid { - "id" "167981" + "id" "61585" side { - "id" "58719" - "plane" "(1806.32 -4319.24 432) (1806.32 -4319.24 416) (1820.17 -4311.24 416)" + "id" "37413" + "plane" "(64 1600 384) (128 1600 384) (128 1152 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58718" - "plane" "(1820.17 -4311.24 432) (1820.17 -4311.24 416) (1860.17 -4380.52 416)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37412" + "plane" "(64 1152 48) (128 1152 48) (128 1600 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58717" - "plane" "(1846.32 -4388.52 432) (1846.32 -4388.52 416) (1806.32 -4319.24 416)" + "id" "37411" + "plane" "(128 1600 48) (128 1152 48) (128 1152 384)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96404,10 +99232,10 @@ world } side { - "id" "58716" - "plane" "(1860.17 -4380.52 432) (1860.17 -4380.52 416) (1846.32 -4388.52 416)" + "id" "37410" + "plane" "(64 1600 48) (128 1600 48) (128 1600 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96415,30 +99243,29 @@ world } side { - "id" "58715" - "plane" "(1806.32 -4319.24 432) (1820.17 -4311.24 432) (1860.17 -4380.52 432)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37409" + "plane" "(128 1152 48) (64 1152 48) (64 1152 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58714" - "plane" "(1860.17 -4380.52 416) (1820.17 -4311.24 416) (1806.32 -4319.24 416)" + "id" "37408" + "plane" "(64 1152 48) (64 1600 48) (64 1600 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167977" + "color" "0 186 151" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -96446,46 +99273,35 @@ world } solid { - "id" "167982" + "id" "61587" side { - "id" "58726" - "plane" "(1820.17 -4311.24 416) (1860.17 -4380.52 416) (1846.32 -4388.52 416)" + "id" "37425" + "plane" "(128 1664 384) (512 1664 384) (512 1600 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "58725" - "plane" "(1884.17 -4422.09 352) (1876.17 -4408.24 384) (1860.17 -4380.52 416)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58724" - "plane" "(1806.32 -4319.24 352) (1806.32 -4319.24 416) (1846.32 -4388.52 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37424" + "plane" "(128 1600 48) (512 1600 48) (512 1664 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58723" - "plane" "(1870.32 -4430.09 352) (1862.32 -4416.24 384) (1876.17 -4408.24 384)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37423" + "plane" "(512 1664 48) (512 1600 48) (512 1600 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96493,10 +99309,10 @@ world } side { - "id" "58722" - "plane" "(1862.32 -4416.24 384) (1846.32 -4388.52 416) (1860.17 -4380.52 416)" + "id" "37422" + "plane" "(128 1664 48) (512 1664 48) (512 1664 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96504,10 +99320,10 @@ world } side { - "id" "58721" - "plane" "(1820.17 -4311.24 352) (1820.17 -4311.24 416) (1806.32 -4319.24 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "id" "37421" + "plane" "(512 1600 48) (128 1600 48) (128 1600 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96515,19 +99331,18 @@ world } side { - "id" "58720" - "plane" "(1884.17 -4422.09 352) (1820.17 -4311.24 352) (1806.32 -4319.24 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37420" + "plane" "(128 1600 48) (128 1664 48) (128 1664 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167977" + "color" "0 186 151" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -96535,46 +99350,35 @@ world } solid { - "id" "167986" + "id" "61590" side { - "id" "58733" - "plane" "(2154.3 -4025.96 416) (2194.3 -4095.24 416) (2180.44 -4103.24 416)" + "id" "37437" + "plane" "(576 1600 384) (576 1344 384) (512 1280 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58732" - "plane" "(2194.3 -4095.24 288) (2114.3 -3956.68 288) (2100.44 -3964.68 288)" + "id" "37436" + "plane" "(576 1344 48) (576 1600 48) (512 1600 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "58731" - "plane" "(2114.3 -3956.68 288) (2194.3 -4095.24 288) (2194.3 -4095.24 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58730" - "plane" "(2180.44 -4103.24 288) (2100.44 -3964.68 288) (2124.44 -4006.25 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37435" + "plane" "(576 1344 48) (576 1344 384) (576 1600 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96582,10 +99386,10 @@ world } side { - "id" "58729" - "plane" "(2100.44 -3964.68 288) (2114.3 -3956.68 288) (2138.3 -3998.25 384)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37434" + "plane" "(576 1600 48) (576 1600 384) (512 1600 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96593,21 +99397,21 @@ world } side { - "id" "58728" - "plane" "(2138.3 -3998.25 384) (2154.3 -4025.96 416) (2140.44 -4033.96 416)" + "id" "37433" + "plane" "(512 1280 48) (512 1280 384) (576 1344 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58727" - "plane" "(2194.3 -4095.24 288) (2180.44 -4103.24 288) (2180.44 -4103.24 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "id" "37432" + "plane" "(512 1600 48) (512 1600 384) (512 1280 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96615,8 +99419,7 @@ world } editor { - "color" "156 245 0" - "groupid" "167985" + "color" "0 186 151" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -96624,35 +99427,35 @@ world } solid { - "id" "167987" + "id" "61608" side { - "id" "58739" - "plane" "(2154.3 -4025.96 432) (2154.3 -4025.96 416) (2140.44 -4033.96 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37455" + "plane" "(128 1440 112) (128 1600 112) (512 1600 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58738" - "plane" "(2138.3 -3998.25 400) (2138.3 -3998.25 384) (2154.3 -4025.96 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "37454" + "plane" "(128 1600 70) (128 1440 70) (512 1440 70)" + "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" "58737" - "plane" "(2140.44 -4033.96 432) (2140.44 -4033.96 416) (2124.44 -4006.25 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37453" + "plane" "(128 1440 70) (128 1600 70) (128 1600 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96660,10 +99463,10 @@ world } side { - "id" "58736" - "plane" "(2124.44 -4006.25 400) (2124.44 -4006.25 384) (2138.3 -3998.25 384)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37452" + "plane" "(512 1600 70) (512 1440 70) (512 1440 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96671,10 +99474,10 @@ world } side { - "id" "58735" - "plane" "(2138.3 -3998.25 400) (2154.3 -4025.96 432) (2140.44 -4033.96 432)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "37451" + "plane" "(128 1600 70) (512 1600 70) (512 1600 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96682,10 +99485,10 @@ world } side { - "id" "58734" - "plane" "(2124.44 -4006.25 384) (2140.44 -4033.96 416) (2154.3 -4025.96 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "id" "37450" + "plane" "(512 1440 70) (128 1440 70) (128 1440 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96693,44 +99496,32 @@ world } editor { - "color" "156 245 0" - "groupid" "167985" - "visgroupid" "18" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167988" + "id" "61617" side { - "id" "58745" - "plane" "(2194.3 -4095.24 432) (2194.3 -4095.24 416) (2180.44 -4103.24 416)" + "id" "37472" + "plane" "(256 1440 70) (128 1440 70) (128 1312 70)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "58744" - "plane" "(2154.3 -4025.96 432) (2154.3 -4025.96 416) (2194.3 -4095.24 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58743" - "plane" "(2180.44 -4103.24 432) (2180.44 -4103.24 416) (2140.44 -4033.96 416)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "37471" + "plane" "(128 1440 112) (128 1440 70) (256 1440 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96738,10 +99529,10 @@ world } side { - "id" "58742" - "plane" "(2140.44 -4033.96 432) (2140.44 -4033.96 416) (2154.3 -4025.96 416)" + "id" "37470" + "plane" "(128 1312 70) (128 1440 70) (128 1440 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96749,66 +99540,65 @@ world } side { - "id" "58741" - "plane" "(2154.3 -4025.96 432) (2194.3 -4095.24 432) (2180.44 -4103.24 432)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37469" + "plane" "(256 1440 112) (256 1440 70) (256 1312 70)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58740" - "plane" "(2180.44 -4103.24 416) (2194.3 -4095.24 416) (2154.3 -4025.96 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "37468" + "plane" "(256 1312 70) (128 1312 70) (128 1440 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167985" - "visgroupid" "18" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167990" + "id" "58973" side { - "id" "58752" - "plane" "(2194.3 -4095.24 416) (2234.3 -4164.52 416) (2220.44 -4172.52 416)" + "id" "36261" + "plane" "(448 768 256) (448 640 256) (384 640 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58751" - "plane" "(2274.3 -4233.81 288) (2194.3 -4095.24 288) (2180.44 -4103.24 288)" + "id" "36260" + "plane" "(416 800 0) (384 768 0) (384 640 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58750" - "plane" "(2194.3 -4095.24 288) (2274.3 -4233.81 288) (2250.3 -4192.24 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "36259" + "plane" "(448 768 0) (448 768 256) (416 800 256)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96816,10 +99606,10 @@ world } side { - "id" "58749" - "plane" "(2260.44 -4241.81 288) (2180.44 -4103.24 288) (2180.44 -4103.24 416)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "36258" + "plane" "(384 640 0) (384 640 256) (448 640 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96827,10 +99617,10 @@ world } side { - "id" "58748" - "plane" "(2274.3 -4233.81 288) (2260.44 -4241.81 288) (2236.44 -4200.24 384)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "36257" + "plane" "(448 640 0) (448 640 256) (448 768 256)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96838,10 +99628,10 @@ world } side { - "id" "58747" - "plane" "(2236.44 -4200.24 384) (2220.44 -4172.52 416) (2234.3 -4164.52 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "id" "36256" + "plane" "(384 768 0) (384 768 256) (384 640 256)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96849,10 +99639,10 @@ world } side { - "id" "58746" - "plane" "(2180.44 -4103.24 288) (2194.3 -4095.24 288) (2194.3 -4095.24 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "id" "36255" + "plane" "(416 800 0) (416 800 256) (384 768 256)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96860,44 +99650,42 @@ world } editor { - "color" "156 245 0" - "groupid" "167989" - "visgroupid" "18" + "color" "0 108 237" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167991" + "id" "56553" side { - "id" "58758" - "plane" "(2220.44 -4172.52 432) (2220.44 -4172.52 416) (2234.3 -4164.52 416)" + "id" "35404" + "plane" "(1984 -256 320) (1984 -192 320) (2016 -192 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58757" - "plane" "(2234.3 -4164.52 432) (2234.3 -4164.52 416) (2250.3 -4192.24 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "35403" + "plane" "(1984 -192 64) (1984 -256 64) (2016 -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" "58756" - "plane" "(2236.44 -4200.24 400) (2236.44 -4200.24 384) (2220.44 -4172.52 416)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "35402" + "plane" "(2016 -192 64) (2016 -256 64) (2016 -256 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96905,10 +99693,10 @@ world } side { - "id" "58755" - "plane" "(2250.3 -4192.24 400) (2250.3 -4192.24 384) (2236.44 -4200.24 384)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "35401" + "plane" "(1984 -256 64) (1984 -192 64) (1984 -192 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96916,10 +99704,10 @@ world } side { - "id" "58754" - "plane" "(2236.44 -4200.24 400) (2220.44 -4172.52 432) (2234.3 -4164.52 432)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" + "id" "35400" + "plane" "(2016 -256 64) (1984 -256 64) (1984 -256 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96927,10 +99715,10 @@ world } side { - "id" "58753" - "plane" "(2250.3 -4192.24 384) (2234.3 -4164.52 416) (2220.44 -4172.52 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "id" "35399" + "plane" "(1984 -192 64) (2016 -192 64) (2016 -192 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96938,44 +99726,42 @@ world } editor { - "color" "156 245 0" - "groupid" "167989" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "167992" + "id" "56556" side { - "id" "58764" - "plane" "(2180.44 -4103.24 432) (2180.44 -4103.24 416) (2194.3 -4095.24 416)" + "id" "35416" + "plane" "(2208 -256 320) (2208 -192 320) (2240 -192 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58763" - "plane" "(2194.3 -4095.24 432) (2194.3 -4095.24 416) (2234.3 -4164.52 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "35415" + "plane" "(2208 -192 64) (2208 -256 64) (2240 -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" "58762" - "plane" "(2220.44 -4172.52 432) (2220.44 -4172.52 416) (2180.44 -4103.24 416)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.5 0.866025 0 14.9292] 0.25" + "id" "35414" + "plane" "(2208 -256 64) (2208 -192 64) (2208 -192 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96983,10 +99769,10 @@ world } side { - "id" "58761" - "plane" "(2234.3 -4164.52 432) (2234.3 -4164.52 416) (2220.44 -4172.52 416)" + "id" "35413" + "plane" "(2240 -192 64) (2240 -256 64) (2240 -256 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -96994,44 +99780,891 @@ world } side { - "id" "58760" - "plane" "(2180.44 -4103.24 432) (2194.3 -4095.24 432) (2234.3 -4164.52 432)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.866025 -0.5 0 18.7861] 0.25" - "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "35412" + "plane" "(2208 -192 64) (2240 -192 64) (2240 -192 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58759" - "plane" "(2234.3 -4164.52 416) (2194.3 -4095.24 416) (2180.44 -4103.24 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.866025 -0.5 0 50.7861] 0.25" - "vaxis" "[0.5 -0.866025 0 -14.9292] 0.25" + "id" "35411" + "plane" "(2240 -256 64) (2208 -256 64) (2208 -256 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "156 245 0" - "groupid" "167989" - "visgroupid" "18" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + hidden { - "id" "168899" - side + solid { - "id" "58788" - "plane" "(1024 -2816 64) (1024 -2624 64) (1056 -2624 64)" + "id" "56580" + side + { + "id" "35438" + "plane" "(864 -64 384) (864 1024 384) (1856 1024 384)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35437" + "plane" "(1856 1024 320) (864 1024 320) (864 -64 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35436" + "plane" "(864 1024 320) (1856 1024 320) (1856 1024 384)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35435" + "plane" "(864 -64 320) (864 1024 320) (864 1024 384)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35434" + "plane" "(1856 1024 320) (1856 -64 320) (1856 -64 384)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35433" + "plane" "(1856 -64 320) (864 -64 320) (864 -64 384)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 198" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "56597" + side + { + "id" "35514" + "plane" "(2752 -64 320) (2752 -320 320) (2688 -64 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35513" + "plane" "(2752 -64 256) (2688 -64 256) (2752 -320 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35512" + "plane" "(2752 -320 256) (2752 -320 320) (2752 -64 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35511" + "plane" "(2752 -64 256) (2752 -64 320) (2688 -64 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35510" + "plane" "(2688 -64 256) (2688 -64 320) (2752 -320 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 137 234" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "56598" + side + { + "id" "38627" + "plane" "(2688 -64 320) (2688 480 320) (2752 480 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38626" + "plane" "(2688 480 256) (2688 -64 256) (2752 -64 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38625" + "plane" "(2688 -64 256) (2688 480 256) (2688 480 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38624" + "plane" "(2752 480 256) (2752 -64 256) (2752 -64 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38623" + "plane" "(2688 480 256) (2752 480 256) (2752 480 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38622" + "plane" "(2752 -64 256) (2688 -64 256) (2688 -64 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 137 234" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "56612" + side + { + "id" "35531" + "plane" "(1984 -256 320) (1984 -224 320) (2016 -224 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35530" + "plane" "(2016 -224 96) (1984 -224 96) (1984 -256 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35529" + "plane" "(1984 -256 96) (1984 -224 96) (1984 -224 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35528" + "plane" "(1984 -224 96) (2016 -224 96) (2016 -224 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35527" + "plane" "(2016 -224 96) (1984 -256 96) (1984 -256 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 224" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "56613" + side + { + "id" "35541" + "plane" "(2208 -224 320) (2240 -224 320) (2240 -256 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35540" + "plane" "(2240 -224 96) (2208 -224 96) (2240 -256 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35539" + "plane" "(2208 -224 96) (2240 -224 96) (2240 -224 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35538" + "plane" "(2240 -224 96) (2240 -256 96) (2240 -256 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35537" + "plane" "(2240 -256 96) (2208 -224 96) (2208 -224 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 224" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "56622" + side + { + "id" "35558" + "plane" "(1920 256 96) (1856 320 96) (1856 -192 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35557" + "plane" "(1856 -192 128) (1856 -192 96) (1856 320 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35556" + "plane" "(1856 320 128) (1856 320 96) (1920 256 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35555" + "plane" "(1920 -192 96) (1856 -192 96) (1856 -192 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35554" + "plane" "(1856 -192 128) (1856 320 128) (1920 256 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 119 112" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "56624" + side + { + "id" "35568" + "plane" "(2176 320 96) (1856 320 96) (1920 256 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35567" + "plane" "(1856 320 128) (1856 320 96) (2176 320 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35566" + "plane" "(2176 320 128) (2176 320 96) (2176 256 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35565" + "plane" "(1920 256 96) (1856 320 96) (1856 320 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35564" + "plane" "(2176 256 96) (1920 256 96) (1856 320 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 119 112" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "56630" + side + { + "id" "35578" + "plane" "(2304 288 96) (2176 320 96) (2176 256 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35577" + "plane" "(2176 320 128) (2176 320 96) (2304 288 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35576" + "plane" "(2304 288 128) (2304 288 96) (2304 224 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35575" + "plane" "(2176 256 96) (2176 320 96) (2176 320 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35574" + "plane" "(2304 224 96) (2176 256 96) (2176 320 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 119 112" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "56646" + side + { + "id" "35593" + "plane" "(2368 256 96) (2304 288 96) (2304 224 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35592" + "plane" "(2304 288 128) (2304 288 96) (2368 256 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35591" + "plane" "(2304 224 96) (2304 288 96) (2304 288 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35590" + "plane" "(2336 208 96) (2304 224 96) (2304 288 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35589" + "plane" "(2368 256 128) (2368 256 96) (2336 208 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 119 112" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "56647" + side + { + "id" "35603" + "plane" "(2432 192 96) (2368 256 96) (2336 208 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35602" + "plane" "(2368 256 128) (2368 256 96) (2432 192 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35601" + "plane" "(2336 208 96) (2368 256 96) (2368 256 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35600" + "plane" "(2384 160 96) (2336 208 96) (2368 256 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35599" + "plane" "(2432 192 128) (2432 192 96) (2384 160 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 119 112" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "56649" + side + { + "id" "35618" + "plane" "(2400 128 96) (2464 128 96) (2432 192 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35617" + "plane" "(2464 128 96) (2464 128 128) (2432 192 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35616" + "plane" "(2464 128 96) (2400 128 96) (2464 128 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35615" + "plane" "(2384 160 96) (2432 192 128) (2464 128 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35614" + "plane" "(2432 192 96) (2432 192 128) (2384 160 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 119 112" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "56694" + side + { + "id" "38518" + "plane" "(-736 -3104 2048) (-736 -3104 0) (-736 -2976 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38517" + "plane" "(-672 -2976 2048) (-672 -2976 0) (-672 -3104 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38516" + "plane" "(-736 -2976 2048) (-736 -2976 0) (-672 -2976 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38515" + "plane" "(-672 -3104 2048) (-672 -3104 0) (-736 -3104 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38514" + "plane" "(-736 -2976 0) (-736 -3104 0) (-672 -3104 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38513" + "plane" "(-736 -3104 2048) (-736 -2976 2048) (-672 -2976 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 176 105" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + solid + { + "id" "56701" + side + { + "id" "35726" + "plane" "(16 -3296 256) (16 -3216 256) (24 -3216 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -97039,10 +100672,10 @@ world } side { - "id" "58787" - "plane" "(1024 -2624 -96) (1024 -2816 -96) (1056 -2816 -96)" + "id" "35725" + "plane" "(16 -3216 160) (16 -3296 160) (24 -3296 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -97050,20 +100683,20 @@ world } side { - "id" "58786" - "plane" "(1024 -2816 -96) (1024 -2624 -96) (1024 -2624 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "35724" + "plane" "(16 -3296 160) (16 -3216 160) (16 -3216 256)" + "material" "SPRITES/STORE/TRAILS/FOREVERALONE" + "uaxis" "[0 1 0 25.6] 0.625" + "vaxis" "[0 0 -1 85.3333] 0.75" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58785" - "plane" "(1056 -2624 -96) (1056 -2816 -96) (1056 -2816 64)" - "material" "DEV/REFLECTIVITY_50B" + "id" "35723" + "plane" "(24 -3216 160) (24 -3296 160) (24 -3296 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -97072,10 +100705,10 @@ world } side { - "id" "58784" - "plane" "(1024 -2624 -96) (1056 -2624 -96) (1056 -2624 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "35722" + "plane" "(16 -3216 160) (24 -3216 160) (24 -3216 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -97083,10 +100716,10 @@ world } side { - "id" "58783" - "plane" "(1056 -2816 -96) (1024 -2816 -96) (1024 -2816 64)" + "id" "35721" + "plane" "(24 -3296 160) (16 -3296 160) (16 -3296 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -97094,30 +100727,31 @@ world } editor { - "color" "0 103 232" + "color" "0 211 156" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "166162" + "id" "56734" side { - "id" "58230" - "plane" "(352 -2624 72) (352 -2320 72) (384 -2320 72)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "35775" + "plane" "(1776 -1856 128) (1776 -1824 128) (1808 -1824 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58229" - "plane" "(352 -2320 64) (352 -2624 64) (384 -2624 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35776" + "plane" "(1776 -1824 64) (1776 -1856 64) (1808 -1856 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -97126,9 +100760,9 @@ world } side { - "id" "58228" - "plane" "(352 -2624 64) (352 -2320 64) (352 -2320 72)" - "material" "DEV/REFLECTIVITY_50B" + "id" "35777" + "plane" "(1776 -1856 64) (1776 -1824 64) (1776 -1824 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -97137,9 +100771,9 @@ world } side { - "id" "58227" - "plane" "(384 -2320 64) (384 -2624 64) (384 -2624 72)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35778" + "plane" "(1808 -1824 64) (1808 -1856 64) (1808 -1856 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -97148,9 +100782,9 @@ world } side { - "id" "58226" - "plane" "(352 -2320 64) (384 -2320 64) (384 -2320 72)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35779" + "plane" "(1776 -1824 64) (1808 -1824 64) (1808 -1824 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -97159,9 +100793,9 @@ world } side { - "id" "58225" - "plane" "(384 -2624 64) (352 -2624 64) (352 -2624 72)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35780" + "plane" "(1808 -1856 64) (1776 -1856 64) (1776 -1856 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -97170,21 +100804,22 @@ world } editor { - "color" "0 103 232" - "visgroupid" "23" + "color" "128 225 0" + "groupid" "56748" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "166166" + "id" "56771" side { - "id" "58242" - "plane" "(320 -2624 64) (320 -2320 64) (352 -2320 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" + "id" "35804" + "plane" "(848 -2544 128) (848 -2512 128) (880 -2512 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -97192,9 +100827,9 @@ world } side { - "id" "58241" - "plane" "(320 -2320 56) (320 -2624 56) (352 -2624 56)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35803" + "plane" "(848 -2512 64) (848 -2544 64) (880 -2544 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -97203,65 +100838,66 @@ world } side { - "id" "58240" - "plane" "(320 -2624 56) (320 -2320 56) (320 -2320 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35802" + "plane" "(848 -2544 64) (848 -2512 64) (848 -2512 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58239" - "plane" "(352 -2320 56) (352 -2624 56) (352 -2624 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35801" + "plane" "(880 -2512 64) (880 -2544 64) (880 -2544 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58238" - "plane" "(320 -2320 56) (352 -2320 56) (352 -2320 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35800" + "plane" "(848 -2512 64) (880 -2512 64) (880 -2512 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58237" - "plane" "(352 -2624 56) (320 -2624 56) (320 -2624 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35799" + "plane" "(880 -2544 64) (848 -2544 64) (848 -2544 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 103 232" - "visgroupid" "23" + "color" "128 225 0" + "groupid" "56767" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "166174" + "id" "56776" side { - "id" "58260" - "plane" "(934 -1882 90) (934 -1792 90) (1024 -1792 90)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" + "id" "35816" + "plane" "(192 -2880 128) (192 -2848 128) (224 -2848 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -97269,9 +100905,9 @@ world } side { - "id" "58259" - "plane" "(934 -1792 64) (934 -1882 64) (1024 -1882 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35815" + "plane" "(192 -2848 64) (192 -2880 64) (224 -2880 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -97280,9 +100916,9 @@ world } side { - "id" "58258" - "plane" "(934 -1882 64) (934 -1792 64) (934 -1792 90)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35814" + "plane" "(192 -2880 64) (192 -2848 64) (192 -2848 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -97291,9 +100927,9 @@ world } side { - "id" "58257" - "plane" "(1024 -1792 64) (1024 -1882 64) (1024 -1882 90)" - "material" "DEV/REFLECTIVITY_50B" + "id" "35813" + "plane" "(224 -2848 64) (224 -2880 64) (224 -2880 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -97302,9 +100938,9 @@ world } side { - "id" "58256" - "plane" "(934 -1792 64) (1024 -1792 64) (1024 -1792 90)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35812" + "plane" "(192 -2848 64) (224 -2848 64) (224 -2848 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -97313,9 +100949,9 @@ world } side { - "id" "58255" - "plane" "(1024 -1882 64) (934 -1882 64) (934 -1882 90)" - "material" "DEV/REFLECTIVITY_50B" + "id" "35811" + "plane" "(224 -2880 64) (192 -2880 64) (192 -2880 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -97324,42 +100960,44 @@ world } editor { - "color" "0 103 232" + "color" "128 225 0" + "groupid" "56772" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163335" + "id" "56781" side { - "id" "57319" - "plane" "(1024 -2120 48) (1024 -1864 48) (1472 -1864 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35828" + "plane" "(144 -2336 128) (144 -2304 128) (176 -2304 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57318" - "plane" "(1024 -1864 24) (1024 -2120 24) (1472 -2120 24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 -1 0 -288.001] 0.25" - "vaxis" "[1 0 0 284] 0.25" + "id" "35827" + "plane" "(144 -2304 64) (144 -2336 64) (176 -2336 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57317" - "plane" "(1024 -2120 24) (1024 -1864 24) (1024 -1864 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "35826" + "plane" "(144 -2336 64) (144 -2304 64) (144 -2304 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -97367,10 +101005,10 @@ world } side { - "id" "57316" - "plane" "(1472 -1864 24) (1472 -2120 24) (1472 -2120 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "35825" + "plane" "(176 -2304 64) (176 -2336 64) (176 -2336 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -97378,64 +101016,66 @@ world } side { - "id" "57315" - "plane" "(1024 -1864 24) (1472 -1864 24) (1472 -1864 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35824" + "plane" "(144 -2304 64) (176 -2304 64) (176 -2304 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57314" - "plane" "(1472 -2120 24) (1024 -2120 24) (1024 -2120 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35823" + "plane" "(176 -2336 64) (144 -2336 64) (144 -2336 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 252 205" + "color" "128 225 0" + "groupid" "56777" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163336" + "id" "56786" side { - "id" "57325" - "plane" "(1024 -2120 -24) (1024 -1864 -24) (1072 -1864 -24)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35840" + "plane" "(-416 -2256 96) (-416 -2224 96) (-384 -2224 96)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57324" - "plane" "(1024 -1864 -56) (1024 -2120 -56) (1048 -2120 -56)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35839" + "plane" "(-416 -2224 32) (-416 -2256 32) (-384 -2256 32)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57323" - "plane" "(1024 -2120 -56) (1024 -1864 -56) (1024 -1864 -24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "35838" + "plane" "(-416 -2256 32) (-416 -2224 32) (-416 -2224 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -97443,64 +101083,77 @@ world } side { - "id" "57322" - "plane" "(1048 -1864 -56) (1048 -2120 -56) (1072 -2120 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 1 0 288.001] 0.25" - "vaxis" "[-0.6 0 -0.8 -896] 0.25" + "id" "35837" + "plane" "(-384 -2224 32) (-384 -2256 32) (-384 -2256 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57321" - "plane" "(1024 -1864 -56) (1048 -1864 -56) (1072 -1864 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35836" + "plane" "(-416 -2224 32) (-384 -2224 32) (-384 -2224 96)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57320" - "plane" "(1048 -2120 -56) (1024 -2120 -56) (1024 -2120 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35835" + "plane" "(-384 -2256 32) (-416 -2256 32) (-416 -2256 96)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 234 163" + "color" "128 225 0" + "groupid" "56782" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163337" + "id" "56791" side { - "id" "57330" - "plane" "(1024 -2120 -56) (1024 -1864 -56) (1048 -1864 -56)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35852" + "plane" "(320 -1696 128) (320 -1664 128) (352 -1664 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57329" - "plane" "(1024 -2120 -88) (1024 -1864 -88) (1024 -1864 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "35851" + "plane" "(320 -1664 64) (320 -1696 64) (352 -1696 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35850" + "plane" "(320 -1696 64) (320 -1664 64) (320 -1664 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -97508,531 +101161,545 @@ world } side { - "id" "57328" - "plane" "(1024 -1864 -88) (1024 -2120 -88) (1048 -2120 -56)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 1 0 288.001] 0.25" - "vaxis" "[-0.6 0 -0.8 -896] 0.25" + "id" "35849" + "plane" "(352 -1664 64) (352 -1696 64) (352 -1696 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57327" - "plane" "(1048 -1864 -56) (1024 -1864 -56) (1024 -1864 -88)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35848" + "plane" "(320 -1664 64) (352 -1664 64) (352 -1664 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57326" - "plane" "(1024 -2120 -88) (1024 -2120 -56) (1048 -2120 -56)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35847" + "plane" "(352 -1696 64) (320 -1696 64) (320 -1696 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 200 245" + "color" "128 225 0" + "groupid" "56787" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163338" + "id" "56806" side { - "id" "57336" - "plane" "(1024 -1864 -24) (1024 -2120 -24) (1072 -2120 -24)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35888" + "plane" "(-928 -976 128) (-928 -944 128) (-896 -944 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57335" - "plane" "(1024 -2120 0) (1024 -2120 -24) (1024 -1864 -24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "35887" + "plane" "(-928 -944 64) (-928 -976 64) (-896 -976 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57334" - "plane" "(1112 -1864 0) (1072 -1864 -24) (1072 -2120 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 1 0 288.001] 0.25" - "vaxis" "[-0.857493 0 -0.514495 -788.463] 0.25" + "id" "35886" + "plane" "(-928 -976 64) (-928 -944 64) (-928 -944 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57333" - "plane" "(1024 -1864 0) (1024 -1864 -24) (1072 -1864 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35885" + "plane" "(-896 -944 64) (-896 -976 64) (-896 -976 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57332" - "plane" "(1112 -2120 0) (1072 -2120 -24) (1024 -2120 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35884" + "plane" "(-928 -944 64) (-896 -944 64) (-896 -944 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57331" - "plane" "(1024 -2120 0) (1024 -1864 0) (1112 -1864 0)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35883" + "plane" "(-896 -976 64) (-928 -976 64) (-928 -976 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 203" + "color" "128 225 0" + "groupid" "56802" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163339" + "id" "56816" side { - "id" "57342" - "plane" "(1024 -2120 12) (1024 -1864 12) (1152 -1864 12)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35912" + "plane" "(-864 -224 96) (-864 -192 96) (-832 -192 96)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57341" - "plane" "(1024 -1864 0) (1024 -1864 12) (1024 -2120 12)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "35911" + "plane" "(-864 -192 32) (-864 -224 32) (-832 -224 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57340" - "plane" "(1112 -2120 0) (1152 -2120 12) (1152 -1864 12)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 1 0 288.001] 0.25" - "vaxis" "[-0.957826 0 -0.287348 -351.555] 0.25" + "id" "35910" + "plane" "(-864 -224 32) (-864 -192 32) (-864 -192 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57339" - "plane" "(1152.01 -1864 12) (1024 -1864 12) (1024 -1864 0)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35909" + "plane" "(-832 -192 32) (-832 -224 32) (-832 -224 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57338" - "plane" "(1024 -2120 0) (1024 -2120 12) (1152 -2120 12)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35908" + "plane" "(-864 -192 32) (-832 -192 32) (-832 -192 96)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57337" - "plane" "(1024 -1864 0) (1024 -2120 0) (1112 -2120 0)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35907" + "plane" "(-832 -224 32) (-864 -224 32) (-864 -224 96)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 120 101" + "color" "128 225 0" + "groupid" "56812" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163340" + "id" "56821" side { - "id" "57348" - "plane" "(1024 -2120 24) (1024 -1864 24) (1228 -1864 24)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35924" + "plane" "(-672 -528 64) (-672 -496 64) (-640 -496 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57347" - "plane" "(1024 -1864 12) (1024 -1864 24) (1024 -2120 24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "35923" + "plane" "(-672 -496 0) (-672 -528 0) (-640 -528 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57346" - "plane" "(1152 -2120 12) (1228 -2120 24) (1228 -1864 24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 1 0 288.001] 0.25" - "vaxis" "[-0.987763 0 -0.155962 -232.895] 0.25" + "id" "35922" + "plane" "(-672 -528 0) (-672 -496 0) (-672 -496 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57345" - "plane" "(1228 -1864 24) (1024 -1864 24) (1024 -1864 12)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35921" + "plane" "(-640 -496 0) (-640 -528 0) (-640 -528 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57344" - "plane" "(1024 -2120 12) (1024 -2120 24) (1228 -2120 24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35920" + "plane" "(-672 -496 0) (-640 -496 0) (-640 -496 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57343" - "plane" "(1024 -1864 12) (1024 -2120 12) (1152 -2120 12)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35919" + "plane" "(-640 -528 0) (-672 -528 0) (-672 -528 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 106 211" + "color" "128 225 0" + "groupid" "56817" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163341" + "id" "56826" side { - "id" "57354" - "plane" "(1268 -2120 24) (1268 -1864 24) (1472 -1864 24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "id" "35936" + "plane" "(-288 -368 64) (-288 -336 64) (-256 -336 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57353" - "plane" "(1472 -2120 12) (1472 -2120 24) (1472 -1864 24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "35935" + "plane" "(-288 -336 0) (-288 -368 0) (-256 -368 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57352" - "plane" "(1268 -1864 24) (1268 -2120 24) (1344 -2120 12)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 -1 0 -288.001] 0.25" - "vaxis" "[0.987763 0 -0.155962 145.275] 0.25" + "id" "35934" + "plane" "(-288 -368 0) (-288 -336 0) (-288 -336 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57351" - "plane" "(1472 -1864 12) (1472 -1864 24) (1268 -1864 24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35933" + "plane" "(-256 -336 0) (-256 -368 0) (-256 -368 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57350" - "plane" "(1268 -2120 24) (1472 -2120 24) (1472 -2120 12)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35932" + "plane" "(-288 -336 0) (-256 -336 0) (-256 -336 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57349" - "plane" "(1344 -1864 12) (1344 -2120 12) (1472 -2120 12)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "id" "35931" + "plane" "(-256 -368 0) (-288 -368 0) (-288 -368 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 124 221" + "color" "128 225 0" + "groupid" "56822" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163342" + "id" "56831" side { - "id" "57360" - "plane" "(1344 -2120 12) (1344 -1864 12) (1472 -1864 12)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "id" "35948" + "plane" "(-480 624 128) (-448 624 128) (-448 592 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57359" - "plane" "(1472 -2120 0) (1472 -2120 12) (1472 -1864 12)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "35947" + "plane" "(-480 592 64) (-448 592 64) (-448 624 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57358" - "plane" "(1344 -1864 12) (1344 -2120 12) (1384 -2120 0)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 -1 0 -288.001] 0.25" - "vaxis" "[0.957826 0 -0.287348 325.504] 0.25" + "id" "35946" + "plane" "(-480 624 128) (-480 592 128) (-480 592 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57357" - "plane" "(1472 -1864 0) (1472 -1864 12) (1344 -1864 12)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35945" + "plane" "(-448 624 64) (-448 592 64) (-448 592 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57356" - "plane" "(1344 -2120 12) (1472 -2120 12) (1472 -2120 0)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35944" + "plane" "(-448 624 128) (-480 624 128) (-480 624 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57355" - "plane" "(1384 -1864 0) (1384 -2120 0) (1472 -2120 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "id" "35943" + "plane" "(-448 592 64) (-480 592 64) (-480 592 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 122 107" + "color" "128 225 0" + "groupid" "56827" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163343" + "id" "56836" side { - "id" "57366" - "plane" "(1424 -1864 -24) (1424 -2120 -24) (1472 -2120 -24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "id" "35960" + "plane" "(48 688 128) (80 688 128) (80 656 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57365" - "plane" "(1472 -1864 0) (1472 -1864 -24) (1472 -2120 -24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "35959" + "plane" "(48 656 64) (80 656 64) (80 688 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57364" - "plane" "(1384 -2120 0) (1424 -2120 -24) (1424 -1864 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 -1 0 -288.001] 0.25" - "vaxis" "[0.857493 0 -0.514495 890.328] 0.25" + "id" "35958" + "plane" "(48 688 128) (48 656 128) (48 656 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57363" - "plane" "(1384 -1864 0) (1424 -1864 -24) (1472 -1864 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35957" + "plane" "(80 688 64) (80 656 64) (80 656 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57362" - "plane" "(1472 -2120 0) (1472 -2120 -24) (1424 -2120 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35956" + "plane" "(80 688 128) (48 688 128) (48 688 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57361" - "plane" "(1384 -2120 0) (1384 -1864 0) (1472 -1864 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "id" "35955" + "plane" "(80 656 64) (48 656 64) (48 656 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 120 157" + "color" "128 225 0" + "groupid" "56832" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163344" + "id" "56841" side { - "id" "57372" - "plane" "(1424 -2120 -24) (1424 -1864 -24) (1472 -1864 -24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "id" "35972" + "plane" "(496 1088 128) (528 1088 128) (528 1056 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57371" - "plane" "(1448 -1864 -56) (1448 -2120 -56) (1472 -2120 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "id" "35971" + "plane" "(496 1056 64) (528 1056 64) (528 1088 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57370" - "plane" "(1472 -1864 -56) (1472 -2120 -56) (1472 -2120 -24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "35970" + "plane" "(496 1088 128) (496 1056 128) (496 1056 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98040,64 +101707,77 @@ world } side { - "id" "57369" - "plane" "(1448 -2120 -56) (1448 -1864 -56) (1424 -1864 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 -1 0 -288.001] 0.25" - "vaxis" "[0.6 0 -0.8 281.6] 0.25" + "id" "35969" + "plane" "(528 1088 64) (528 1056 64) (528 1056 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57368" - "plane" "(1448 -1864 -56) (1472 -1864 -56) (1472 -1864 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35968" + "plane" "(528 1088 128) (496 1088 128) (496 1088 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57367" - "plane" "(1472 -2120 -56) (1448 -2120 -56) (1424 -2120 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35967" + "plane" "(528 1056 64) (496 1056 64) (496 1056 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 110 251" + "color" "128 225 0" + "groupid" "56837" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163345" + "id" "56846" side { - "id" "57377" - "plane" "(1448 -2120 -56) (1448 -1864 -56) (1472 -1864 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "id" "35984" + "plane" "(2064 6.10352e-05 160) (2064 32.0001 160) (2096 32.0001 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57376" - "plane" "(1472 -1864 -88) (1472 -2120 -88) (1472 -2120 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "35983" + "plane" "(2064 32.0001 96) (2064 6.10352e-05 96) (2096 6.10352e-05 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35982" + "plane" "(2064 6.10352e-05 96) (2064 32.0001 96) (2064 32.0001 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98105,97 +101785,99 @@ world } side { - "id" "57375" - "plane" "(1472 -2120 -88) (1472 -1864 -88) (1448 -1864 -56)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 -1 0 -288.001] 0.25" - "vaxis" "[0.6 0 -0.8 281.6] 0.25" - "rotation" "180" + "id" "35981" + "plane" "(2096 32.0001 96) (2096 6.10352e-05 96) (2096 6.10352e-05 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57374" - "plane" "(1472 -1864 -88) (1472 -1864 -56) (1448 -1864 -56)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35980" + "plane" "(2064 32.0001 96) (2096 32.0001 96) (2096 32.0001 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57373" - "plane" "(1448 -2120 -56) (1472 -2120 -56) (1472 -2120 -88)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35979" + "plane" "(2096 6.10352e-05 96) (2064 6.10352e-05 96) (2064 6.10352e-05 160)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 172 217" + "color" "128 225 0" + "groupid" "56842" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163346" + "id" "56851" side { - "id" "57383" - "plane" "(1136 -1882 110) (1080 -1882 96) (1080 -1864 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35996" + "plane" "(1504 32.0001 192) (1504 64.0001 192) (1536 64.0001 192)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57382" - "plane" "(1136 -1864 48) (1080 -1864 48) (1080 -1882 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "35995" + "plane" "(1504 64.0001 128) (1504 32.0001 128) (1536 32.0001 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57381" - "plane" "(1136 -1864 110) (1080 -1864 96) (1080 -1864 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35994" + "plane" "(1504 32.0001 128) (1504 64.0001 128) (1504 64.0001 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57380" - "plane" "(1136 -1882 48) (1080 -1882 48) (1080 -1882 96)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "35993" + "plane" "(1536 64.0001 128) (1536 32.0001 128) (1536 32.0001 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57379" - "plane" "(1136 -1864 48) (1136 -1882 48) (1136 -1882 110)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "35992" + "plane" "(1504 64.0001 128) (1536 64.0001 128) (1536 64.0001 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98203,10 +101885,10 @@ world } side { - "id" "57378" - "plane" "(1080 -1882 48) (1080 -1864 48) (1080 -1864 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "35991" + "plane" "(1536 32.0001 128) (1504 32.0001 128) (1504 32.0001 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98214,75 +101896,77 @@ world } editor { - "color" "0 158 231" + "color" "128 225 0" + "groupid" "56847" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163347" + "id" "56861" side { - "id" "57389" - "plane" "(1080 -1882 96) (1024 -1882 90) (1024 -1864 90)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36020" + "plane" "(704 -384 128) (704 -352 128) (736 -352 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57388" - "plane" "(1080 -1864 48) (1024 -1864 48) (1024 -1882 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36019" + "plane" "(704 -352 64) (704 -384 64) (736 -384 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57387" - "plane" "(1024 -1882 48) (1024 -1864 48) (1024 -1864 90)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 1 0 288] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "36018" + "plane" "(704 -384 64) (704 -352 64) (704 -352 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57386" - "plane" "(1080 -1864 96) (1024 -1864 90) (1024 -1864 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "36017" + "plane" "(736 -352 64) (736 -384 64) (736 -384 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57385" - "plane" "(1080 -1882 48) (1024 -1882 48) (1024 -1882 90)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "36016" + "plane" "(704 -352 64) (736 -352 64) (736 -352 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57384" - "plane" "(1080 -1864 48) (1080 -1882 48) (1080 -1882 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36015" + "plane" "(736 -384 64) (704 -384 64) (704 -384 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98290,64 +101974,66 @@ world } editor { - "color" "0 208 157" + "color" "128 225 0" + "groupid" "56857" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163348" + "id" "56871" side { - "id" "57395" - "plane" "(1360 -1864 110) (1416 -1864 96) (1416 -1882 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36044" + "plane" "(864 -1264 128) (864 -1232 128) (896 -1232 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57394" - "plane" "(1360 -1882 48) (1416 -1882 48) (1416 -1864 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36043" + "plane" "(864 -1232 64) (864 -1264 64) (896 -1264 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57393" - "plane" "(1360 -1864 48) (1416 -1864 48) (1416 -1864 96)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "36042" + "plane" "(864 -1264 64) (864 -1232 64) (864 -1232 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57392" - "plane" "(1360 -1882 110) (1416 -1882 96) (1416 -1882 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "36041" + "plane" "(896 -1232 64) (896 -1264 64) (896 -1264 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57391" - "plane" "(1360 -1882 48) (1360 -1864 48) (1360 -1864 110)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36040" + "plane" "(864 -1232 64) (896 -1232 64) (896 -1232 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98355,10 +102041,10 @@ world } side { - "id" "57390" - "plane" "(1416 -1864 48) (1416 -1882 48) (1416 -1882 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36039" + "plane" "(896 -1264 64) (864 -1264 64) (864 -1264 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98366,75 +102052,77 @@ world } editor { - "color" "0 174 179" + "color" "128 225 0" + "groupid" "56867" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163349" + "id" "56881" side { - "id" "57401" - "plane" "(1416 -1864 96) (1472 -1864 90) (1472 -1882 90)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36068" + "plane" "(1616 -976 128) (1616 -944 128) (1648 -944 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57400" - "plane" "(1416 -1882 48) (1472 -1882 48) (1472 -1864 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36067" + "plane" "(1616 -944 64) (1616 -976 64) (1648 -976 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57399" - "plane" "(1472 -1864 48) (1472 -1882 48) (1472 -1882 90)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 1 0 103.994] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "36066" + "plane" "(1616 -976 64) (1616 -944 64) (1616 -944 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57398" - "plane" "(1416 -1864 48) (1472 -1864 48) (1472 -1864 90)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "36065" + "plane" "(1648 -944 64) (1648 -976 64) (1648 -976 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57397" - "plane" "(1416 -1882 96) (1472 -1882 90) (1472 -1882 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "36064" + "plane" "(1616 -944 64) (1648 -944 64) (1648 -944 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57396" - "plane" "(1416 -1882 48) (1416 -1864 48) (1416 -1864 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36063" + "plane" "(1648 -976 64) (1616 -976 64) (1616 -976 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98442,64 +102130,66 @@ world } editor { - "color" "0 200 165" + "color" "128 225 0" + "groupid" "56877" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163350" + "id" "56886" side { - "id" "57407" - "plane" "(1248 -1864 122) (1304 -1864 118) (1304 -1882 118)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36080" + "plane" "(2352 -1056 128) (2352 -1024 128) (2384 -1024 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57406" - "plane" "(1248 -1882 48) (1304 -1882 48) (1304 -1864 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36079" + "plane" "(2352 -1024 64) (2352 -1056 64) (2384 -1056 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57405" - "plane" "(1248 -1864 48) (1304 -1864 48) (1304 -1864 118)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "36078" + "plane" "(2352 -1056 64) (2352 -1024 64) (2352 -1024 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57404" - "plane" "(1248 -1882 122) (1304 -1882 118) (1304 -1882 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "36077" + "plane" "(2384 -1024 64) (2384 -1056 64) (2384 -1056 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57403" - "plane" "(1248 -1882 48) (1248 -1864 48) (1248 -1864 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36076" + "plane" "(2352 -1024 64) (2384 -1024 64) (2384 -1024 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98507,10 +102197,10 @@ world } side { - "id" "57402" - "plane" "(1304 -1864 48) (1304 -1882 48) (1304 -1882 118)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36075" + "plane" "(2384 -1056 64) (2352 -1056 64) (2352 -1056 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98518,64 +102208,66 @@ world } editor { - "color" "0 146 215" + "color" "128 225 0" + "groupid" "56882" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163351" + "id" "56892" side { - "id" "57413" - "plane" "(1248 -1882 122) (1192 -1882 118) (1192 -1864 118)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36092" + "plane" "(2608 -544 160) (2608 -512 160) (2640 -512 160)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57412" - "plane" "(1248 -1864 48) (1192 -1864 48) (1192 -1882 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36091" + "plane" "(2608 -512 96) (2608 -544 96) (2640 -544 96)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57411" - "plane" "(1248 -1864 122) (1192 -1864 118) (1192 -1864 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "36090" + "plane" "(2608 -544 96) (2608 -512 96) (2608 -512 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57410" - "plane" "(1248 -1882 48) (1192 -1882 48) (1192 -1882 118)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "36089" + "plane" "(2640 -512 96) (2640 -544 96) (2640 -544 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57409" - "plane" "(1248 -1864 48) (1248 -1882 48) (1248 -1882 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36088" + "plane" "(2608 -512 96) (2640 -512 96) (2640 -512 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98583,75 +102275,77 @@ world } side { - "id" "57408" - "plane" "(1192 -1882 48) (1192 -1864 48) (1192 -1864 118)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "36087" + "plane" "(2640 -544 96) (2608 -544 96) (2608 -544 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 132 141" + "color" "128 225 0" + "groupid" "56888" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163352" + "id" "56897" side { - "id" "57419" - "plane" "(1192 -1882 118) (1136 -1882 110) (1136 -1864 110)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36104" + "plane" "(2512 160 192) (2512 192 192) (2544 192 192)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57418" - "plane" "(1192 -1864 48) (1136 -1864 48) (1136 -1882 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36103" + "plane" "(2512 192 128) (2512 160 128) (2544 160 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57417" - "plane" "(1192 -1864 118) (1136 -1864 110) (1136 -1864 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "36102" + "plane" "(2512 160 128) (2512 192 128) (2512 192 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57416" - "plane" "(1192 -1882 48) (1136 -1882 48) (1136 -1882 110)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "36101" + "plane" "(2544 192 128) (2544 160 128) (2544 160 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57415" - "plane" "(1136 -1882 48) (1136 -1864 48) (1136 -1864 110)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36100" + "plane" "(2512 192 128) (2544 192 128) (2544 192 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98659,10 +102353,10 @@ world } side { - "id" "57414" - "plane" "(1192 -1864 48) (1192 -1882 48) (1192 -1882 118)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36099" + "plane" "(2544 160 128) (2512 160 128) (2512 160 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98670,64 +102364,66 @@ world } editor { - "color" "0 134 211" + "color" "128 225 0" + "groupid" "56893" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163353" + "id" "56902" side { - "id" "57425" - "plane" "(1304 -1864 118) (1360 -1864 110) (1360 -1882 110)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36116" + "plane" "(1904 -400 160) (1904 -368 160) (1936 -368 160)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57424" - "plane" "(1304 -1882 48) (1360 -1882 48) (1360 -1864 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36115" + "plane" "(1904 -368 96) (1904 -400 96) (1936 -400 96)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57423" - "plane" "(1304 -1864 48) (1360 -1864 48) (1360 -1864 110)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "36114" + "plane" "(1904 -400 96) (1904 -368 96) (1904 -368 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57422" - "plane" "(1304 -1882 118) (1360 -1882 110) (1360 -1882 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "36113" + "plane" "(1936 -368 96) (1936 -400 96) (1936 -400 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57421" - "plane" "(1360 -1864 48) (1360 -1882 48) (1360 -1882 110)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36112" + "plane" "(1904 -368 96) (1936 -368 96) (1936 -368 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98735,10 +102431,10 @@ world } side { - "id" "57420" - "plane" "(1304 -1882 48) (1304 -1864 48) (1304 -1864 118)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36111" + "plane" "(1936 -400 96) (1904 -400 96) (1904 -400 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98746,75 +102442,77 @@ world } editor { - "color" "0 132 217" + "color" "128 225 0" + "groupid" "56898" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163354" + "id" "56907" side { - "id" "57431" - "plane" "(1080 -2120 96) (1024 -2120 90) (1024 -2102 90)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36128" + "plane" "(1568 592 128) (1568 624 128) (1600 624 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57430" - "plane" "(1080 -2102 48) (1024 -2102 48) (1024 -2120 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36127" + "plane" "(1568 624 64) (1568 592 64) (1600 592 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57429" - "plane" "(1024 -2120 48) (1024 -2102 48) (1024 -2102 90)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 1 0 215.994] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "36126" + "plane" "(1568 592 64) (1568 624 64) (1568 624 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57428" - "plane" "(1080 -2102 96) (1024 -2102 90) (1024 -2102 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "36125" + "plane" "(1600 624 64) (1600 592 64) (1600 592 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57427" - "plane" "(1080 -2120 48) (1024 -2120 48) (1024 -2120 90)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "36124" + "plane" "(1568 624 64) (1600 624 64) (1600 624 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57426" - "plane" "(1080 -2102 48) (1080 -2120 48) (1080 -2120 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36123" + "plane" "(1600 592 64) (1568 592 64) (1568 592 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98822,64 +102520,66 @@ world } editor { - "color" "0 138 239" + "color" "128 225 0" + "groupid" "56903" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163355" + "id" "56912" side { - "id" "57437" - "plane" "(1136 -2120 110) (1080 -2120 96) (1080 -2102 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36140" + "plane" "(864 656 160) (896 656 160) (896 624 160)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57436" - "plane" "(1136 -2102 48) (1080 -2102 48) (1080 -2120 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36139" + "plane" "(864 624 96) (896 624 96) (896 656 96)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57435" - "plane" "(1136 -2102 110) (1080 -2102 96) (1080 -2102 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "36138" + "plane" "(864 656 160) (864 624 160) (864 624 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57434" - "plane" "(1136 -2120 48) (1080 -2120 48) (1080 -2120 96)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "36137" + "plane" "(896 656 96) (896 624 96) (896 624 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57433" - "plane" "(1136 -2102 48) (1136 -2120 48) (1136 -2120 110)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36136" + "plane" "(896 656 160) (864 656 160) (864 656 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98887,10 +102587,10 @@ world } side { - "id" "57432" - "plane" "(1080 -2120 48) (1080 -2102 48) (1080 -2102 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36135" + "plane" "(896 624 96) (864 624 96) (864 624 160)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98898,64 +102598,66 @@ world } editor { - "color" "0 176 213" + "color" "128 225 0" + "groupid" "56908" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163356" + "id" "56917" side { - "id" "57443" - "plane" "(1192 -2120 118) (1136 -2120 110) (1136 -2102 110)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36152" + "plane" "(-176 -3088 64) (-176 -3056 64) (-144 -3056 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57442" - "plane" "(1192 -2102 48) (1136 -2102 48) (1136 -2120 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36151" + "plane" "(-176 -3056 0) (-176 -3088 0) (-144 -3088 0)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57441" - "plane" "(1192 -2102 118) (1136 -2102 110) (1136 -2102 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "36150" + "plane" "(-176 -3088 0) (-176 -3056 0) (-176 -3056 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57440" - "plane" "(1192 -2120 48) (1136 -2120 48) (1136 -2120 110)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "36149" + "plane" "(-144 -3056 0) (-144 -3088 0) (-144 -3088 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57439" - "plane" "(1136 -2120 48) (1136 -2102 48) (1136 -2102 110)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36148" + "plane" "(-176 -3056 0) (-144 -3056 0) (-144 -3056 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98963,10 +102665,10 @@ world } side { - "id" "57438" - "plane" "(1192 -2102 48) (1192 -2120 48) (1192 -2120 118)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36147" + "plane" "(-144 -3088 0) (-176 -3088 0) (-176 -3088 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98974,64 +102676,66 @@ world } editor { - "color" "0 226 155" + "color" "128 225 0" + "groupid" "56913" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163357" + "id" "56922" side { - "id" "57449" - "plane" "(1248 -2120 122) (1192 -2120 118) (1192 -2102 118)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36164" + "plane" "(464 -1168 128) (464 -1136 128) (496 -1136 128)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57448" - "plane" "(1248 -2102 48) (1192 -2102 48) (1192 -2120 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "36163" + "plane" "(464 -1136 64) (464 -1168 64) (496 -1168 64)" + "material" "TOOLS/TOOLSSKIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57447" - "plane" "(1248 -2102 122) (1192 -2102 118) (1192 -2102 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "36162" + "plane" "(464 -1168 64) (464 -1136 64) (464 -1136 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57446" - "plane" "(1248 -2120 48) (1192 -2120 48) (1192 -2120 118)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "36161" + "plane" "(496 -1136 64) (496 -1168 64) (496 -1168 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57445" - "plane" "(1248 -2102 48) (1248 -2120 48) (1248 -2120 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36160" + "plane" "(464 -1136 64) (496 -1136 64) (496 -1136 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99039,10 +102743,10 @@ world } side { - "id" "57444" - "plane" "(1192 -2120 48) (1192 -2102 48) (1192 -2102 118)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "36159" + "plane" "(496 -1168 64) (464 -1168 64) (464 -1168 128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99050,64 +102754,303 @@ world } editor { - "color" "0 172 133" + "color" "128 225 0" + "groupid" "56918" + "visgroupid" "20" "visgroupshown" "1" "visgroupautoshown" "1" } } + hidden + { + solid + { + "id" "57391" + side + { + "id" "36194" + "plane" "(2096 160 320) (2096 416 320) (2256 416 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36193" + "plane" "(2096 416 256) (2096 160 256) (2256 160 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36192" + "plane" "(2256 416 256) (2256 416 320) (2096 416 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36191" + "plane" "(2096 160 256) (2096 160 320) (2256 160 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36190" + "plane" "(2256 160 256) (2256 160 320) (2256 416 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36189" + "plane" "(2096 416 256) (2096 416 320) (2096 160 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 101 178" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "57394" + side + { + "id" "36206" + "plane" "(2080 176 320) (2080 400 320) (2096 416 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36205" + "plane" "(2080 400 256) (2080 176 256) (2096 160 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36204" + "plane" "(2096 416 256) (2096 416 320) (2080 400 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36203" + "plane" "(2080 176 256) (2080 176 320) (2096 160 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36202" + "plane" "(2096 160 256) (2096 160 320) (2096 416 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36201" + "plane" "(2080 400 256) (2080 400 320) (2080 176 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 101 178" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "57397" + side + { + "id" "36218" + "plane" "(2272 400 320) (2272 176 320) (2256 160 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36217" + "plane" "(2256 416 256) (2256 160 256) (2272 176 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36216" + "plane" "(2272 400 256) (2272 400 320) (2256 416 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36215" + "plane" "(2256 160 256) (2256 160 320) (2272 176 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36214" + "plane" "(2256 416 256) (2256 416 320) (2256 160 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36213" + "plane" "(2272 176 256) (2272 176 320) (2272 400 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 101 178" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } solid { - "id" "163358" + "id" "53609" side { - "id" "57455" - "plane" "(1248 -2102 122) (1304 -2102 118) (1304 -2120 118)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "id" "35023" + "plane" "(640 -1952 64) (320 -1952 64) (320 -1640 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57454" - "plane" "(1248 -2120 48) (1304 -2120 48) (1304 -2102 48)" + "id" "35022" + "plane" "(640 -1640 0) (320 -1640 0) (320 -1952 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57453" - "plane" "(1248 -2102 48) (1304 -2102 48) (1304 -2102 118)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "35021" + "plane" "(320 -1952 0) (320 -1640 0) (320 -1640 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57452" - "plane" "(1248 -2120 122) (1304 -2120 118) (1304 -2120 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" + "id" "35020" + "plane" "(320 -1640 0) (640 -1640 0) (640 -1640 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57451" - "plane" "(1248 -2120 48) (1248 -2102 48) (1248 -2102 122)" + "id" "35019" + "plane" "(640 -1952 0) (320 -1952 0) (320 -1952 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99115,10 +103058,10 @@ world } side { - "id" "57450" - "plane" "(1304 -2102 48) (1304 -2120 48) (1304 -2120 118)" + "id" "35018" + "plane" "(640 -1640 0) (640 -1952 0) (640 -1952 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99126,64 +103069,65 @@ world } editor { - "color" "0 182 239" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163359" + "id" "53616" side { - "id" "57461" - "plane" "(1304 -2102 118) (1360 -2102 110) (1360 -2120 110)" + "id" "35053" + "plane" "(1408 -576 320) (1408 -288 320) (1472 -288 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57460" - "plane" "(1304 -2120 48) (1360 -2120 48) (1360 -2102 48)" + "id" "35052" + "plane" "(1408 -288 64) (1408 -576 64) (1472 -576 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57459" - "plane" "(1304 -2102 48) (1360 -2102 48) (1360 -2102 110)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "35051" + "plane" "(1472 -288 64) (1472 -576 64) (1472 -576 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57458" - "plane" "(1304 -2120 118) (1360 -2120 110) (1360 -2120 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35050" + "plane" "(1408 -576 64) (1408 -288 64) (1408 -288 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" "57457" - "plane" "(1360 -2102 48) (1360 -2120 48) (1360 -2120 110)" + "id" "35049" + "plane" "(1472 -576 64) (1408 -576 64) (1408 -576 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99191,10 +103135,10 @@ world } side { - "id" "57456" - "plane" "(1304 -2120 48) (1304 -2102 48) (1304 -2102 118)" + "id" "35048" + "plane" "(1408 -288 64) (1472 -288 64) (1472 -288 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99202,64 +103146,64 @@ world } editor { - "color" "0 168 193" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163360" + "id" "53623" side { - "id" "57467" - "plane" "(1360 -2102 110) (1416 -2102 96) (1416 -2120 96)" + "id" "35077" + "plane" "(1408 -640 320) (1408 -576 320) (1472 -576 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57466" - "plane" "(1360 -2120 48) (1416 -2120 48) (1416 -2102 48)" + "id" "35076" + "plane" "(1408 -576 64) (1408 -640 64) (1472 -640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57465" - "plane" "(1360 -2102 48) (1416 -2102 48) (1416 -2102 96)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "35075" + "plane" "(1472 -576 64) (1472 -640 64) (1472 -640 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57464" - "plane" "(1360 -2120 110) (1416 -2120 96) (1416 -2120 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35074" + "plane" "(1408 -640 64) (1408 -576 64) (1408 -576 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" "57463" - "plane" "(1360 -2120 48) (1360 -2102 48) (1360 -2102 110)" + "id" "35073" + "plane" "(1472 -640 64) (1408 -640 64) (1408 -640 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99267,10 +103211,10 @@ world } side { - "id" "57462" - "plane" "(1416 -2102 48) (1416 -2120 48) (1416 -2120 96)" + "id" "35072" + "plane" "(1408 -576 64) (1472 -576 64) (1472 -576 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99278,75 +103222,75 @@ world } editor { - "color" "0 234 247" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163361" + "id" "53624" side { - "id" "57473" - "plane" "(1416 -2102 96) (1472 -2102 90) (1472 -2120 90)" + "id" "35089" + "plane" "(2304 -576 320) (1728 -576 320) (1728 -512 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57472" - "plane" "(1416 -2120 48) (1472 -2120 48) (1472 -2102 48)" + "id" "35088" + "plane" "(2304 -512 64) (1728 -512 64) (1728 -576 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57471" - "plane" "(1472 -2102 48) (1472 -2120 48) (1472 -2120 90)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 -1 0 -472.004] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "35087" + "plane" "(1728 -512 64) (2304 -512 64) (2304 -512 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57470" - "plane" "(1416 -2102 48) (1472 -2102 48) (1472 -2102 90)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "35086" + "plane" "(2304 -576 64) (1728 -576 64) (1728 -576 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57469" - "plane" "(1416 -2120 96) (1472 -2120 90) (1472 -2120 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35085" + "plane" "(2304 -512 64) (2304 -576 64) (2304 -576 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57468" - "plane" "(1416 -2120 48) (1416 -2102 48) (1416 -2102 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" + "id" "35084" + "plane" "(1728 -576 64) (1728 -512 64) (1728 -512 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99354,213 +103298,118 @@ world } editor { - "color" "0 140 225" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163362" + "id" "53627" side { - "id" "57479" - "plane" "(1024 -2102 64) (1024 -1882 64) (1472 -1882 64)" - "material" "STONE/INFFLRD_BLEND_DIRT" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 223.999] 0.25" + "id" "35101" + "plane" "(2240 -512 384) (2240 -192 384) (2304 -192 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "3" - "startposition" "[1024 -2102 64]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - } - distances - { - "row0" "0 0 8.72384 22.7896 25.6621 20.1907 4.35275 0 0" - "row1" "0 0 10.1827 25.5304 27.147 22.7175 7.43949 0 0" - "row2" "0 0 11.7292 25.8815 27.6696 24.1757 8.70917 0 0" - "row3" "0 0 11.4823 25.7711 27.2674 19.7582 9.54561 0 0" - "row4" "0 0 5.8032 21.0732 22.2416 19.6183 3.99163 0 0" - "row5" "0 0 9.91635 26.8722 26.5464 24.7575 9.19771 0 0" - "row6" "0 0 9.46894 27.9154 28.3562 24.2906 8.30138 0 0" - "row7" "0 0 9.1328 28.1661 29.6615 23.2554 7.28686 0 0" - "row8" "0 0 9.75365 26.478 29.437 21.1696 5.54286 0 0" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "255 130 255 237.5 255 218.5 180.5 92.5 217.5" - "row1" "230 149.5 142.5 104.5 123.5 114 57 57 241.5" - "row2" "176 10.5 66.5 47.5 66.5 28.5 28.5 0 255" - "row3" "185.5 0 95 95 66.5 38 57 0 255" - "row4" "255 130.5 180.5 161.5 142.5 114 152 52 255" - "row5" "255 1 66.5 66.5 66.5 38 57 1 255" - "row6" "207 0 19 47.5 47.5 28.5 19 41.5 191.5" - "row7" "255 0 76 76 95 66.5 76 23.5 255" - "row8" "180.5 209 171 171 142.5 161.5 152 237.5 255" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "57478" - "plane" "(1024 -1882 48) (1024 -2102 48) (1472 -2102 48)" + "id" "35100" + "plane" "(2240 -192 64) (2240 -512 64) (2304 -512 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 31.9985] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57477" - "plane" "(1024 -2102 48) (1024 -1882 48) (1024 -1882 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "35099" + "plane" "(2240 -512 64) (2240 -192 64) (2240 -192 384)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57476" - "plane" "(1472 -1882 48) (1472 -2102 48) (1472 -2102 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -31.9985] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "35098" + "plane" "(2304 -192 64) (2304 -512 64) (2304 -512 384)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57475" - "plane" "(1024 -1882 48) (1472 -1882 48) (1472 -1882 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "35097" + "plane" "(2240 -192 64) (2304 -192 64) (2304 -192 384)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57474" - "plane" "(1472 -2102 48) (1024 -2102 48) (1024 -2102 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "35096" + "plane" "(2304 -512 64) (2240 -512 64) (2240 -512 384)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 118 243" - "visgroupid" "23" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163555" + "id" "53635" side { - "id" "57510" - "plane" "(704 -1920 256) (704 -1472 256) (1024 -1472 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "35113" + "plane" "(1856 -192 112) (1856 320 112) (1888 320 112)" + "material" "RYAN_DEV/DEV_BROWN4" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57509" - "plane" "(704 -1472 -128) (704 -1920 -128) (896 -1920 -128)" + "id" "35112" + "plane" "(1856 320 96) (1856 -192 96) (1888 -192 96)" "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" "57508" - "plane" "(704 -1920 -128) (704 -1920 256) (896 -1920 256)" - "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57507" - "plane" "(1024 -1472 -128) (1024 -1472 256) (704 -1472 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "35111" + "plane" "(1856 -192 96) (1856 320 96) (1856 320 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99568,9 +103417,9 @@ world } side { - "id" "57506" - "plane" "(1024 -1792 -128) (1024 -1792 256) (1024 -1472 256)" - "material" "DEV/REFLECTIVITY_50B" + "id" "35110" + "plane" "(1888 320 96) (1888 -192 96) (1888 -192 112)" + "material" "RYAN_DEV/BROWN2" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -99579,10 +103428,10 @@ world } side { - "id" "57505" - "plane" "(704 -1472 -128) (704 -1472 256) (704 -1920 256)" + "id" "35109" + "plane" "(1856 320 96) (1888 320 96) (1888 320 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99590,10 +103439,10 @@ world } side { - "id" "57504" - "plane" "(896 -1920 -128) (896 -1920 256) (1024 -1792 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "35108" + "plane" "(1888 -192 96) (1856 -192 96) (1856 -192 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99601,42 +103450,43 @@ world } editor { - "color" "0 137 234" + "color" "0 119 112" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163573" + "id" "53640" side { - "id" "57682" - "plane" "(1533.48 -3324.56 48) (1352.46 -3143.54 48) (1669.25 -2826.75 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "35125" + "plane" "(1888 320 112) (2176 320 112) (2176 288 112)" + "material" "RYAN_DEV/DEV_BROWN4" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57681" - "plane" "(1352.46 -3143.54 24) (1533.48 -3324.56 24) (1850.27 -3007.77 24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 -0.707107 0 -428.609] 0.25" - "vaxis" "[0.707107 0.707107 0 -794.083] 0.25" + "id" "35124" + "plane" "(1888 288 96) (2176 288 96) (2176 320 96)" + "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" "57680" - "plane" "(1533.48 -3324.56 24) (1352.46 -3143.54 24) (1352.46 -3143.54 48)" + "id" "35123" + "plane" "(2176 288 96) (2176 288 112) (2176 320 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99644,10 +103494,10 @@ world } side { - "id" "57679" - "plane" "(1669.25 -2826.75 24) (1850.27 -3007.77 24) (1850.27 -3007.77 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "id" "35122" + "plane" "(1888 320 96) (1888 320 112) (1888 288 112)" + "material" "RYAN_DEV/BROWN2" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99655,21 +103505,21 @@ world } side { - "id" "57678" - "plane" "(1352.46 -3143.54 24) (1669.25 -2826.75 24) (1669.25 -2826.75 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35121" + "plane" "(1888 288 96) (1888 288 112) (2176 288 112)" + "material" "RYAN_DEV/BROWN2" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57677" - "plane" "(1850.27 -3007.77 24) (1533.48 -3324.56 24) (1533.48 -3324.56 48)" + "id" "35120" + "plane" "(2176 320 96) (2176 320 112) (1888 320 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99677,42 +103527,42 @@ world } editor { - "color" "0 102 155" + "color" "0 119 112" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163574" + "id" "55264" side { - "id" "57688" - "plane" "(1533.48 -3324.56 -24) (1352.46 -3143.54 -24) (1386.41 -3109.59 -24)" + "id" "35269" + "plane" "(1280 0 320) (1280 64 320) (1296 64 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57687" - "plane" "(1352.46 -3143.54 -56) (1533.48 -3324.56 -56) (1550.45 -3307.58 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "35268" + "plane" "(1280 64 244) (1280 0 244) (1296 0 244)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 224] 0.25" + "vaxis" "[1 0 0 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57686" - "plane" "(1533.48 -3324.56 -56) (1352.46 -3143.54 -56) (1352.46 -3143.54 -24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "id" "35267" + "plane" "(1280 0 244) (1280 64 244) (1280 64 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 224] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99720,32 +103570,32 @@ world } side { - "id" "57685" - "plane" "(1369.43 -3126.57 -56) (1550.45 -3307.58 -56) (1567.42 -3290.61 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-0.707107 0.707107 0 428.609] 0.25" - "vaxis" "[-0.424264 -0.424264 -0.8 -249.148] 0.25" + "id" "35266" + "plane" "(1296 64 244) (1296 0 244) (1296 0 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 224] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57684" - "plane" "(1352.46 -3143.54 -56) (1369.43 -3126.57 -56) (1386.41 -3109.59 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35265" + "plane" "(1280 64 244) (1296 64 244) (1296 64 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57683" - "plane" "(1550.45 -3307.58 -56) (1533.48 -3324.56 -56) (1533.48 -3324.56 -24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "id" "35264" + "plane" "(1296 0 244) (1280 0 244) (1280 0 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99753,31 +103603,42 @@ world } editor { - "color" "0 164 153" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163575" + "id" "55272" side { - "id" "57693" - "plane" "(1533.48 -3324.56 -56) (1352.46 -3143.54 -56) (1369.43 -3126.57 -56)" + "id" "35281" + "plane" "(704 -192 96) (704 -160 96) (896 -160 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35280" + "plane" "(704 -160 64) (704 -192 64) (896 -192 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57692" - "plane" "(1533.48 -3324.56 -88) (1352.46 -3143.54 -88) (1352.46 -3143.54 -56)" + "id" "35279" + "plane" "(896 -160 64) (896 -192 64) (896 -192 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99785,32 +103646,32 @@ world } side { - "id" "57691" - "plane" "(1352.46 -3143.54 -88) (1533.48 -3324.56 -88) (1550.45 -3307.58 -56)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-0.707107 0.707107 0 428.609] 0.25" - "vaxis" "[-0.424264 -0.424264 -0.8 -249.148] 0.25" + "id" "35278" + "plane" "(704 -192 64) (704 -160 64) (704 -160 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57690" - "plane" "(1369.43 -3126.57 -56) (1352.46 -3143.54 -56) (1352.46 -3143.54 -88)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35277" + "plane" "(896 -192 64) (704 -192 64) (704 -192 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57689" - "plane" "(1533.48 -3324.56 -88) (1533.48 -3324.56 -56) (1550.45 -3307.58 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "id" "35276" + "plane" "(704 -160 64) (896 -160 64) (896 -160 96)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99818,64 +103679,65 @@ world } editor { - "color" "0 242 243" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163576" + "id" "55276" side { - "id" "57699" - "plane" "(1352.46 -3143.54 -24) (1533.48 -3324.56 -24) (1567.42 -3290.61 -24)" + "id" "35298" + "plane" "(1152 352 288) (1152 384 288) (1184 384 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57698" - "plane" "(1533.48 -3324.56 0) (1533.48 -3324.56 -24) (1352.46 -3143.54 -24)" + "id" "35297" + "plane" "(1152 384 64) (1152 352 64) (1184 352 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57697" - "plane" "(1414.69 -3081.31 0) (1386.41 -3109.59 -24) (1567.42 -3290.61 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-0.707107 0.707107 0 428.609] 0.25" - "vaxis" "[-0.606339 -0.606339 -0.514495 571.256] 0.25" + "id" "35296" + "plane" "(1152 352 64) (1152 384 64) (1152 384 288)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57696" - "plane" "(1352.46 -3143.54 0) (1352.46 -3143.54 -24) (1386.41 -3109.59 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35295" + "plane" "(1184 384 64) (1184 352 64) (1184 352 288)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57695" - "plane" "(1595.71 -3262.33 0) (1567.42 -3290.61 -24) (1533.48 -3324.56 -24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "id" "35294" + "plane" "(1152 384 64) (1184 384 64) (1184 384 288)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99883,75 +103745,75 @@ world } side { - "id" "57694" - "plane" "(1533.48 -3324.56 0) (1352.46 -3143.54 0) (1414.69 -3081.31 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "35293" + "plane" "(1184 352 64) (1152 352 64) (1152 352 288)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 224 193" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163577" + "id" "55284" side { - "id" "57705" - "plane" "(1533.48 -3324.56 12) (1352.46 -3143.54 12) (1442.97 -3053.03 12)" + "id" "35310" + "plane" "(960 352 288) (960 384 288) (992 384 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57704" - "plane" "(1352.46 -3143.54 0) (1352.46 -3143.54 12) (1533.48 -3324.56 12)" + "id" "35309" + "plane" "(960 384 64) (960 352 64) (992 352 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57703" - "plane" "(1595.71 -3262.33 0) (1623.99 -3234.05 12) (1442.97 -3053.03 12)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-0.707107 0.707107 0 428.609] 0.25" - "vaxis" "[-0.677285 -0.677285 -0.287348 88.9198] 0.25" + "id" "35308" + "plane" "(992 384 64) (992 352 64) (992 352 288)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57702" - "plane" "(1442.98 -3053.02 12) (1352.46 -3143.54 12) (1352.46 -3143.54 0)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35307" + "plane" "(960 352 64) (960 384 64) (960 384 288)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57701" - "plane" "(1533.48 -3324.56 0) (1533.48 -3324.56 12) (1623.99 -3234.05 12)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "id" "35306" + "plane" "(992 352 64) (960 352 64) (960 352 288)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -99959,75 +103821,75 @@ world } side { - "id" "57700" - "plane" "(1352.46 -3143.54 0) (1533.48 -3324.56 0) (1595.71 -3262.33 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "35305" + "plane" "(960 384 64) (992 384 64) (992 384 288)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 110 155" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163578" + "id" "55460" side { - "id" "57711" - "plane" "(1533.48 -3324.56 24) (1352.46 -3143.54 24) (1496.71 -2999.29 24)" + "id" "35380" + "plane" "(1664 64.0001 320) (1664 224 320) (1728 224 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57710" - "plane" "(1352.46 -3143.54 12) (1352.46 -3143.54 24) (1533.48 -3324.56 24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "35379" + "plane" "(1664 224 288) (1664 64.0001 288) (1728 64.0001 288)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 -288] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57709" - "plane" "(1623.99 -3234.05 12) (1677.73 -3180.31 24) (1496.71 -2999.29 24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-0.707107 0.707107 0 428.609] 0.25" - "vaxis" "[-0.698454 -0.698454 -0.155962 -66.6939] 0.25" + "id" "35378" + "plane" "(1728 224 288) (1728 64.0001 288) (1728 64.0001 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57708" - "plane" "(1496.71 -2999.29 24) (1352.46 -3143.54 24) (1352.46 -3143.54 12)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "35377" + "plane" "(1664 64.0001 288) (1664 224 288) (1664 224 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57707" - "plane" "(1533.48 -3324.56 12) (1533.48 -3324.56 24) (1677.73 -3180.31 24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "id" "35376" + "plane" "(1728 64.0001 288) (1664 64.0001 288) (1664 64.0001 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100035,75 +103897,64 @@ world } side { - "id" "57706" - "plane" "(1352.46 -3143.54 12) (1533.48 -3324.56 12) (1623.99 -3234.05 12)" + "id" "35375" + "plane" "(1664 224 288) (1728 224 288) (1728 224 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 148 181" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163579" + "id" "52232" side { - "id" "57717" - "plane" "(1706.02 -3152.02 24) (1525 -2971 24) (1669.25 -2826.75 24)" + "id" "34371" + "plane" "(1472 -704 64) (1728 -704 64) (1728 -576 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57716" - "plane" "(1850.27 -3007.77 12) (1850.27 -3007.77 24) (1669.25 -2826.75 24)" + "id" "34370" + "plane" "(1472 -576 64) (1472 -576 96) (1472 -704 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "57715" - "plane" "(1525 -2971 24) (1706.02 -3152.02 24) (1759.76 -3098.28 12)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 -0.707107 0 -428.609] 0.25" - "vaxis" "[0.698454 0.698454 -0.155962 -20.9252] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57714" - "plane" "(1669.25 -2826.75 12) (1669.25 -2826.75 24) (1525 -2971 24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "34369" + "plane" "(1728 -576 64) (1728 -704 64) (1728 -576 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57713" - "plane" "(1706.02 -3152.02 24) (1850.27 -3007.77 24) (1850.27 -3007.77 12)" + "id" "34368" + "plane" "(1472 -576 64) (1728 -576 64) (1728 -576 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100111,75 +103962,76 @@ world } side { - "id" "57712" - "plane" "(1578.74 -2917.26 12) (1759.76 -3098.28 12) (1850.27 -3007.77 12)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "34367" + "plane" "(1472 -704 64) (1472 -576 96) (1728 -576 96)" + "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" } editor { - "color" "0 198 203" + "color" "0 119 112" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163580" + "id" "52244" side { - "id" "57723" - "plane" "(1759.76 -3098.28 12) (1578.74 -2917.26 12) (1669.25 -2826.75 12)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "34407" + "plane" "(1792 -512 96) (1792 -256 96) (2240 -256 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57722" - "plane" "(1850.27 -3007.77 0) (1850.27 -3007.77 12) (1669.25 -2826.75 12)" + "id" "34406" + "plane" "(1792 -256 0) (1792 -512 0) (2240 -512 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57721" - "plane" "(1578.74 -2917.26 12) (1759.76 -3098.28 12) (1788.04 -3070 0)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 -0.707107 0 -428.609] 0.25" - "vaxis" "[0.677285 0.677285 -0.287348 -114.971] 0.25" + "id" "34405" + "plane" "(1792 -512 0) (1792 -256 0) (1792 -256 96)" + "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" "57720" - "plane" "(1669.25 -2826.75 0) (1669.25 -2826.75 12) (1578.74 -2917.26 12)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "34404" + "plane" "(2240 -256 0) (2240 -512 0) (2240 -512 96)" + "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" "57719" - "plane" "(1759.76 -3098.28 12) (1850.27 -3007.77 12) (1850.27 -3007.77 0)" + "id" "34403" + "plane" "(1792 -256 0) (2240 -256 0) (2240 -256 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100187,75 +104039,76 @@ world } side { - "id" "57718" - "plane" "(1607.02 -2888.98 0) (1788.04 -3070 0) (1850.27 -3007.77 0)" + "id" "34402" + "plane" "(2240 -512 0) (1792 -512 0) (1792 -512 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 120 209" + "color" "0 119 112" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163581" + "id" "52256" side { - "id" "57729" - "plane" "(1635.31 -2860.69 -24) (1816.33 -3041.71 -24) (1850.27 -3007.77 -24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "34419" + "plane" "(1472 -576 96) (1472 -512 96) (1728 -512 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57728" - "plane" "(1669.25 -2826.75 0) (1669.25 -2826.75 -24) (1850.27 -3007.77 -24)" + "id" "34418" + "plane" "(1472 -512 0) (1472 -576 0) (1728 -576 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57727" - "plane" "(1788.04 -3070 0) (1816.33 -3041.71 -24) (1635.31 -2860.69 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 -0.707107 0 -428.609] 0.25" - "vaxis" "[0.606339 0.606339 -0.514495 -469.39] 0.25" + "id" "34417" + "plane" "(1472 -576 0) (1472 -512 0) (1472 -512 96)" + "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" "57726" - "plane" "(1607.02 -2888.98 0) (1635.31 -2860.69 -24) (1669.25 -2826.75 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "34416" + "plane" "(1728 -512 0) (1728 -576 0) (1728 -576 96)" + "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" "57725" - "plane" "(1850.27 -3007.77 0) (1850.27 -3007.77 -24) (1816.33 -3041.71 -24)" + "id" "34415" + "plane" "(1472 -512 0) (1728 -512 0) (1728 -512 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100263,53 +104116,54 @@ world } side { - "id" "57724" - "plane" "(1788.04 -3070 0) (1607.02 -2888.98 0) (1669.25 -2826.75 0)" + "id" "34414" + "plane" "(1728 -576 0) (1472 -576 0) (1472 -576 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 218 183" + "color" "0 119 112" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163582" + "id" "52259" side { - "id" "57735" - "plane" "(1816.33 -3041.71 -24) (1635.31 -2860.69 -24) (1669.25 -2826.75 -24)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "34431" + "plane" "(1920 -256 96) (1920 -192 96) (2240 -192 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57734" - "plane" "(1652.28 -2843.72 -56) (1833.3 -3024.74 -56) (1850.27 -3007.77 -56)" + "id" "34430" + "plane" "(1920 -192 0) (1920 -256 0) (2240 -256 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57733" - "plane" "(1669.25 -2826.75 -56) (1850.27 -3007.77 -56) (1850.27 -3007.77 -24)" + "id" "34429" + "plane" "(1920 -256 0) (1920 -192 0) (1920 -192 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100317,32 +104171,32 @@ world } side { - "id" "57732" - "plane" "(1833.3 -3024.74 -56) (1652.28 -2843.72 -56) (1635.31 -2860.69 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 -0.707107 0 -428.609] 0.25" - "vaxis" "[0.424264 0.424264 -0.8 -365.251] 0.25" + "id" "34428" + "plane" "(2240 -192 0) (2240 -256 0) (2240 -256 96)" + "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" "57731" - "plane" "(1652.28 -2843.72 -56) (1669.25 -2826.75 -56) (1669.25 -2826.75 -24)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "34427" + "plane" "(1920 -192 0) (2240 -192 0) (2240 -192 96)" + "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" "57730" - "plane" "(1850.27 -3007.77 -56) (1833.3 -3024.74 -56) (1816.33 -3041.71 -24)" + "id" "34426" + "plane" "(2240 -256 0) (1920 -256 0) (1920 -256 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100350,118 +104204,213 @@ world } editor { - "color" "0 144 233" + "color" "0 119 112" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163583" + "id" "45455" side { - "id" "57740" - "plane" "(1833.3 -3024.74 -56) (1652.28 -2843.72 -56) (1669.25 -2826.75 -56)" + "id" "36230" + "plane" "(1024 -1312 -63) (1472 -1312 -63) (1472 -2752 -63)" + "material" "WATERSOURCE/RIVER/FOAM2" + "uaxis" "[0 1 0 388] 0.438" + "vaxis" "[1 0 0 -293] 0.438" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1024 -2752 -63]" + "flags" "14" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0" + "row1" "1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0" + "row2" "0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0" + "row3" "1 0 0 1 0 0 1 0 0 -0.999997 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0" + "row4" "1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row5" "-1 0 0 -1 0 0 -1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row6" "-0.564389 0.825509 0 -0.328692 0.944437 0 -0.394021 0.919101 0 0.901524 0.43273 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row7" "0.668344 0.743852 0 0.847656 0.530546 0 0.541921 0.840429 0 0.920982 0.389606 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row8" "-1 0 0 -0.999977 0.00680501 0 -0.999297 0.0375018 0 -0.999968 0.00796807 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 10" + "row1" "20.6031 13.6959 2.95801 21.7623 29.1858 26.5483 14.4177 7.66736 7.33105" + "row2" "0 2.1488 6.39441 6.01416 9.1875 14.8439 18.5538 17.1353 12.2306" + "row3" "9.29224 8.91968 3.79968 0.0395508 19.4307 50.2518 71.9346 72.166 3.4187" + "row4" "65.0813 62.5544 42.8752 13.3651 15.0847 43.8945 68.7433 78.6355 50.9379" + "row5" "29.5582 6.84692 0.884888 6.56335 17.8127 32.6293 57.0549 79.9454 53.7913" + "row6" "35.4365 27.8098 17.7928 5.42241 1.16467 16.2168 36.6536 63.1993 34.6776" + "row7" "47.0523 54.8289 28.7436 18.4547 2.01782 32.0026 64.3987 105.05 91.4807" + "row8" "111.752 93.3689 88.2152 65.2017 81.6702 109.392 119.978 118.461 106.558" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" + "row1" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" + "row2" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" + "row3" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" + "row4" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" + "row5" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" + "row6" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" + "row7" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" + "row8" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "36229" + "plane" "(1024 -2752 -64) (1472 -2752 -64) (1472 -1312 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57739" - "plane" "(1669.25 -2826.75 -88) (1850.27 -3007.77 -88) (1850.27 -3007.77 -56)" + "id" "36228" + "plane" "(1024 -1312 -64) (1024 -1312 -63) (1024 -2752 -63)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57738" - "plane" "(1850.27 -3007.77 -88) (1669.25 -2826.75 -88) (1652.28 -2843.72 -56)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 -0.707107 0 -428.609] 0.25" - "vaxis" "[0.424264 0.424264 -0.8 -365.251] 0.25" - "rotation" "180" + "id" "36227" + "plane" "(1472 -2752 -64) (1472 -2752 -63) (1472 -1312 -63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57737" - "plane" "(1669.25 -2826.75 -88) (1669.25 -2826.75 -56) (1652.28 -2843.72 -56)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[-0.707107 -0.707107 0 54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "36226" + "plane" "(1472 -1312 -64) (1472 -1312 -63) (1024 -1312 -63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57736" - "plane" "(1833.3 -3024.74 -56) (1850.27 -3007.77 -56) (1850.27 -3007.77 -88)" + "id" "36225" + "plane" "(1024 -2752 -64) (1024 -2752 -63) (1472 -2752 -63)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 130 255" + "color" "0 234 195" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163584" + "id" "44279" side { - "id" "57746" - "plane" "(1444.39 -3077.07 110) (1404.79 -3116.67 96) (1392.06 -3103.94 96)" + "id" "33553" + "plane" "(1856 -1504 256) (1792 -1504 256) (1792 -1312 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57745" - "plane" "(1431.66 -3064.34 48) (1392.06 -3103.94 48) (1404.79 -3116.67 48)" + "id" "33552" + "plane" "(1856 -1312 64) (1792 -1312 64) (1792 -1504 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57744" - "plane" "(1431.66 -3064.34 110) (1392.06 -3103.94 96) (1392.06 -3103.94 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "33551" + "plane" "(1856 -1504 64) (1792 -1504 64) (1792 -1504 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57743" - "plane" "(1444.39 -3077.07 48) (1404.79 -3116.67 48) (1404.79 -3116.67 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "id" "33550" + "plane" "(1792 -1312 64) (1856 -1312 64) (1856 -1312 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100469,10 +104418,10 @@ world } side { - "id" "57742" - "plane" "(1431.66 -3064.34 48) (1444.39 -3077.07 48) (1444.39 -3077.07 110)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "id" "33549" + "plane" "(1792 -1504 64) (1792 -1312 64) (1792 -1312 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100480,10 +104429,10 @@ world } side { - "id" "57741" - "plane" "(1404.79 -3116.67 48) (1392.06 -3103.94 48) (1392.06 -3103.94 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "id" "33548" + "plane" "(1856 -1312 64) (1856 -1504 64) (1856 -1504 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100491,42 +104440,53 @@ world } editor { - "color" "0 172 205" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163585" + "id" "44302" side { - "id" "57752" - "plane" "(1404.79 -3116.67 96) (1365.19 -3156.26 90) (1352.46 -3143.54 90)" + "id" "33560" + "plane" "(1664 -2272 64) (1664 -1856 64) (2176 -1856 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33559" + "plane" "(1664 -1856 0) (1664 -2272 0) (1920 -2272 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57751" - "plane" "(1392.06 -3103.94 48) (1352.46 -3143.54 48) (1365.19 -3156.26 48)" + "id" "33558" + "plane" "(1664 -2272 0) (1664 -1856 0) (1664 -1856 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57750" - "plane" "(1365.19 -3156.26 48) (1352.46 -3143.54 48) (1352.46 -3143.54 90)" + "id" "33557" + "plane" "(2176 -1856 0) (2176 -2016 0) (2176 -2016 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100534,21 +104494,21 @@ world } side { - "id" "57749" - "plane" "(1392.06 -3103.94 96) (1352.46 -3143.54 90) (1352.46 -3143.54 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "33556" + "plane" "(1920 -2272 0) (1664 -2272 0) (1664 -2272 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" "57748" - "plane" "(1404.79 -3116.67 48) (1365.19 -3156.26 48) (1365.19 -3156.26 90)" + "id" "33555" + "plane" "(2176 -2016 0) (1920 -2272 0) (1920 -2272 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100556,10 +104516,10 @@ world } side { - "id" "57747" - "plane" "(1392.06 -3103.94 48) (1404.79 -3116.67 48) (1404.79 -3116.67 96)" + "id" "33554" + "plane" "(1664 -1856 0) (2176 -1856 0) (2176 -1856 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100567,53 +104527,43 @@ world } editor { - "color" "0 158 195" + "color" "0 225 254" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163586" + "id" "44307" side { - "id" "57758" - "plane" "(1590.05 -2905.95 110) (1629.65 -2866.35 96) (1642.38 -2879.08 96)" + "id" "33571" + "plane" "(2176 -1664 464) (2176 -1856 464) (2271.99 -1952 464)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 -0.0488281] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57757" - "plane" "(1602.78 -2918.68 48) (1642.38 -2879.08 48) (1629.65 -2866.35 48)" + "id" "33570" + "plane" "(2271.99 -1952 576) (2271.99 -1952 464) (2176 -1856 464)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "57756" - "plane" "(1590.05 -2905.95 48) (1629.65 -2866.35 48) (1629.65 -2866.35 96)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "uaxis" "[1 0 0 0.0488281] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57755" - "plane" "(1602.78 -2918.68 110) (1642.38 -2879.08 96) (1642.38 -2879.08 48)" + "id" "33569" + "plane" "(2271.99 -1664 464) (2271.99 -1952 464) (2271.99 -1952 576)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100621,10 +104571,10 @@ world } side { - "id" "57754" - "plane" "(1602.78 -2918.68 48) (1590.05 -2905.95 48) (1590.05 -2905.95 110)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "id" "33568" + "plane" "(2272 -1952 576) (2176 -1856 464) (2176 -1664 464)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100632,10 +104582,10 @@ world } side { - "id" "57753" - "plane" "(1629.65 -2866.35 48) (1642.38 -2879.08 48) (1642.38 -2879.08 96)" + "id" "33567" + "plane" "(2176 -1664 464) (2271.99 -1664 464) (2271.99 -1664 576)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100643,42 +104593,43 @@ world } editor { - "color" "0 188 181" + "color" "0 251 148" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163587" + "id" "44332" side { - "id" "57764" - "plane" "(1629.65 -2866.35 96) (1669.25 -2826.75 90) (1681.98 -2839.48 90)" + "id" "33601" + "plane" "(1856 -832 256) (1824 -800 256) (2208 -800 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57763" - "plane" "(1642.38 -2879.08 48) (1681.98 -2839.48 48) (1669.25 -2826.75 48)" + "id" "33600" + "plane" "(2208 -800 64) (1824 -800 64) (1856 -832 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57762" - "plane" "(1669.25 -2826.75 48) (1681.98 -2839.48 48) (1681.98 -2839.48 90)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "id" "33599" + "plane" "(1824 -800 64) (2208 -800 64) (2208 -800 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100686,21 +104637,21 @@ world } side { - "id" "57761" - "plane" "(1629.65 -2866.35 48) (1669.25 -2826.75 48) (1669.25 -2826.75 90)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "33598" + "plane" "(1856 -832 64) (1824 -800 64) (1824 -800 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57760" - "plane" "(1642.38 -2879.08 96) (1681.98 -2839.48 90) (1681.98 -2839.48 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "id" "33597" + "plane" "(2208 -800 64) (2176 -832 64) (2176 -832 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100708,10 +104659,10 @@ world } side { - "id" "57759" - "plane" "(1642.38 -2879.08 48) (1629.65 -2866.35 48) (1629.65 -2866.35 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "id" "33596" + "plane" "(2176 -832 64) (1856 -832 64) (1856 -832 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100719,53 +104670,53 @@ world } editor { - "color" "0 222 207" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163588" + "id" "44333" side { - "id" "57770" - "plane" "(1510.86 -2985.14 122) (1550.45 -2945.55 118) (1563.18 -2958.27 118)" + "id" "33613" + "plane" "(1152 -1152 256) (1408 -1152 256) (1408 -1184 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57769" - "plane" "(1523.58 -2997.87 48) (1563.18 -2958.27 48) (1550.45 -2945.55 48)" + "id" "33612" + "plane" "(1152 -1184 128) (1408 -1184 128) (1408 -1152 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57768" - "plane" "(1510.86 -2985.14 48) (1550.45 -2945.55 48) (1550.45 -2945.55 118)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "33611" + "plane" "(1408 -1152 128) (1408 -1184 128) (1408 -1184 256)" + "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" "57767" - "plane" "(1523.58 -2997.87 122) (1563.18 -2958.27 118) (1563.18 -2958.27 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "id" "33610" + "plane" "(1152 -1152 128) (1408 -1152 128) (1408 -1152 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100773,10 +104724,10 @@ world } side { - "id" "57766" - "plane" "(1523.58 -2997.87 48) (1510.86 -2985.14 48) (1510.86 -2985.14 122)" + "id" "33609" + "plane" "(1408 -1184 128) (1152 -1184 128) (1152 -1184 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100784,10 +104735,10 @@ world } side { - "id" "57765" - "plane" "(1550.45 -2945.55 48) (1563.18 -2958.27 48) (1563.18 -2958.27 118)" + "id" "33608" + "plane" "(1152 -1184 128) (1152 -1152 128) (1152 -1152 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100795,53 +104746,53 @@ world } editor { - "color" "0 216 121" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163589" + "id" "44407" side { - "id" "57776" - "plane" "(1523.58 -2997.87 122) (1483.99 -3037.47 118) (1471.26 -3024.74 118)" + "id" "33793" + "plane" "(1184 -1216 128) (1152 -1216 128) (1152 -1152 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57775" - "plane" "(1510.86 -2985.14 48) (1471.26 -3024.74 48) (1483.99 -3037.47 48)" + "id" "33792" + "plane" "(1184 -1152 64) (1152 -1152 64) (1152 -1216 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57774" - "plane" "(1510.86 -2985.14 122) (1471.26 -3024.74 118) (1471.26 -3024.74 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "33791" + "plane" "(1152 -1216 64) (1152 -1152 64) (1152 -1152 128)" + "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" "57773" - "plane" "(1523.58 -2997.87 48) (1483.99 -3037.47 48) (1483.99 -3037.47 118)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "id" "33790" + "plane" "(1184 -1216 64) (1152 -1216 64) (1152 -1216 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100849,10 +104800,10 @@ world } side { - "id" "57772" - "plane" "(1510.86 -2985.14 48) (1523.58 -2997.87 48) (1523.58 -2997.87 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "id" "33789" + "plane" "(1152 -1152 64) (1184 -1152 64) (1184 -1152 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100860,10 +104811,10 @@ world } side { - "id" "57771" - "plane" "(1483.99 -3037.47 48) (1471.26 -3024.74 48) (1471.26 -3024.74 118)" + "id" "33788" + "plane" "(1184 -1152 64) (1184 -1216 64) (1184 -1216 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100871,53 +104822,53 @@ world } editor { - "color" "0 154 147" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163590" + "id" "44408" side { - "id" "57782" - "plane" "(1483.99 -3037.47 118) (1444.39 -3077.07 110) (1431.66 -3064.34 110)" + "id" "33799" + "plane" "(1344 -1216 128) (1328 -1216 128) (1328 -1152 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57781" - "plane" "(1471.26 -3024.74 48) (1431.66 -3064.34 48) (1444.39 -3077.07 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "33798" + "plane" "(1344 -1152 64) (1328 -1152 96) (1328 -1216 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57780" - "plane" "(1471.26 -3024.74 118) (1431.66 -3064.34 110) (1431.66 -3064.34 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "33797" + "plane" "(1344 -1152 128) (1328 -1152 128) (1328 -1152 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57779" - "plane" "(1483.99 -3037.47 48) (1444.39 -3077.07 48) (1444.39 -3077.07 110)" + "id" "33796" + "plane" "(1344 -1216 64) (1328 -1216 96) (1328 -1216 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100925,10 +104876,10 @@ world } side { - "id" "57778" - "plane" "(1444.39 -3077.07 48) (1431.66 -3064.34 48) (1431.66 -3064.34 110)" + "id" "33795" + "plane" "(1344 -1152 64) (1344 -1216 64) (1344 -1216 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100936,10 +104887,10 @@ world } side { - "id" "57777" - "plane" "(1471.26 -3024.74 48) (1483.99 -3037.47 48) (1483.99 -3037.47 118)" + "id" "33794" + "plane" "(1328 -1216 96) (1328 -1152 96) (1328 -1152 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100947,53 +104898,54 @@ world } editor { - "color" "0 184 229" + "color" "169 190 0" + "groupid" "44471" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163591" + "id" "44409" side { - "id" "57788" - "plane" "(1550.45 -2945.55 118) (1590.05 -2905.95 110) (1602.78 -2918.68 110)" + "id" "33805" + "plane" "(1328 -1216 128) (1304 -1216 128) (1304 -1152 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57787" - "plane" "(1563.18 -2958.27 48) (1602.78 -2918.68 48) (1590.05 -2905.95 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "33804" + "plane" "(1328 -1152 96) (1304 -1152 112) (1304 -1216 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57786" - "plane" "(1550.45 -2945.55 48) (1590.05 -2905.95 48) (1590.05 -2905.95 110)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 672] 0.25" + "id" "33803" + "plane" "(1328 -1152 128) (1304 -1152 128) (1304 -1152 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57785" - "plane" "(1563.18 -2958.27 118) (1602.78 -2918.68 110) (1602.78 -2918.68 48)" + "id" "33802" + "plane" "(1328 -1216 96) (1304 -1216 112) (1304 -1216 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101001,10 +104953,10 @@ world } side { - "id" "57784" - "plane" "(1590.05 -2905.95 48) (1602.78 -2918.68 48) (1602.78 -2918.68 110)" + "id" "33801" + "plane" "(1328 -1152 96) (1328 -1216 96) (1328 -1216 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101012,10 +104964,10 @@ world } side { - "id" "57783" - "plane" "(1563.18 -2958.27 48) (1550.45 -2945.55 48) (1550.45 -2945.55 118)" + "id" "33800" + "plane" "(1304 -1216 112) (1304 -1152 112) (1304 -1152 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101023,42 +104975,43 @@ world } editor { - "color" "0 210 247" + "color" "169 190 0" + "groupid" "44471" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163592" + "id" "44410" side { - "id" "57794" - "plane" "(1573.08 -3284.96 96) (1533.48 -3324.56 90) (1520.76 -3311.83 90)" + "id" "33811" + "plane" "(1304 -1216 128) (1280 -1216 128) (1280 -1152 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57793" - "plane" "(1560.35 -3272.23 48) (1520.76 -3311.83 48) (1533.48 -3324.56 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "33810" + "plane" "(1304 -1152 112) (1280 -1152 116) (1280 -1216 116)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57792" - "plane" "(1533.48 -3324.56 48) (1520.76 -3311.83 48) (1520.76 -3311.83 90)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "id" "33809" + "plane" "(1304 -1152 128) (1280 -1152 128) (1280 -1152 116)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101066,21 +105019,21 @@ world } side { - "id" "57791" - "plane" "(1560.35 -3272.23 96) (1520.76 -3311.83 90) (1520.76 -3311.83 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "33808" + "plane" "(1304 -1216 112) (1280 -1216 116) (1280 -1216 128)" + "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" "57790" - "plane" "(1573.08 -3284.96 48) (1533.48 -3324.56 48) (1533.48 -3324.56 90)" + "id" "33807" + "plane" "(1304 -1152 112) (1304 -1216 112) (1304 -1216 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101088,10 +105041,10 @@ world } side { - "id" "57789" - "plane" "(1560.35 -3272.23 48) (1573.08 -3284.96 48) (1573.08 -3284.96 96)" + "id" "33806" + "plane" "(1280 -1216 116) (1280 -1152 116) (1280 -1152 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101099,53 +105052,54 @@ world } editor { - "color" "0 244 197" + "color" "169 190 0" + "groupid" "44471" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163593" + "id" "44411" side { - "id" "57800" - "plane" "(1612.68 -3245.36 110) (1573.08 -3284.96 96) (1560.35 -3272.23 96)" + "id" "33817" + "plane" "(1256 -1152 128) (1280 -1152 128) (1280 -1216 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57799" - "plane" "(1599.95 -3232.63 48) (1560.35 -3272.23 48) (1573.08 -3284.96 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "33816" + "plane" "(1256 -1216 112) (1280 -1216 116) (1280 -1152 116)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57798" - "plane" "(1599.95 -3232.63 110) (1560.35 -3272.23 96) (1560.35 -3272.23 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "33815" + "plane" "(1256 -1152 112) (1280 -1152 116) (1280 -1152 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57797" - "plane" "(1612.68 -3245.36 48) (1573.08 -3284.96 48) (1573.08 -3284.96 96)" + "id" "33814" + "plane" "(1256 -1216 128) (1280 -1216 128) (1280 -1216 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101153,10 +105107,10 @@ world } side { - "id" "57796" - "plane" "(1599.95 -3232.63 48) (1612.68 -3245.36 48) (1612.68 -3245.36 110)" + "id" "33813" + "plane" "(1280 -1152 116) (1280 -1216 116) (1280 -1216 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101164,10 +105118,10 @@ world } side { - "id" "57795" - "plane" "(1573.08 -3284.96 48) (1560.35 -3272.23 48) (1560.35 -3272.23 96)" + "id" "33812" + "plane" "(1256 -1216 112) (1256 -1152 112) (1256 -1152 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101175,53 +105129,54 @@ world } editor { - "color" "0 202 159" + "color" "169 190 0" + "groupid" "44471" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163594" + "id" "44412" side { - "id" "57806" - "plane" "(1652.28 -3205.76 118) (1612.68 -3245.36 110) (1599.95 -3232.63 110)" + "id" "33823" + "plane" "(1232 -1152 128) (1256 -1152 128) (1256 -1216 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57805" - "plane" "(1639.55 -3193.03 48) (1599.95 -3232.63 48) (1612.68 -3245.36 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "33822" + "plane" "(1232 -1216 96) (1256 -1216 112) (1256 -1152 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57804" - "plane" "(1639.55 -3193.03 118) (1599.95 -3232.63 110) (1599.95 -3232.63 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "33821" + "plane" "(1232 -1152 96) (1256 -1152 112) (1256 -1152 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57803" - "plane" "(1652.28 -3205.76 48) (1612.68 -3245.36 48) (1612.68 -3245.36 110)" + "id" "33820" + "plane" "(1232 -1216 128) (1256 -1216 128) (1256 -1216 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101229,10 +105184,10 @@ world } side { - "id" "57802" - "plane" "(1612.68 -3245.36 48) (1599.95 -3232.63 48) (1599.95 -3232.63 110)" + "id" "33819" + "plane" "(1256 -1152 112) (1256 -1216 112) (1256 -1216 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101240,10 +105195,10 @@ world } side { - "id" "57801" - "plane" "(1639.55 -3193.03 48) (1652.28 -3205.76 48) (1652.28 -3205.76 118)" + "id" "33818" + "plane" "(1232 -1216 96) (1232 -1152 96) (1232 -1152 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101251,53 +105206,54 @@ world } editor { - "color" "0 128 129" + "color" "169 190 0" + "groupid" "44471" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163595" + "id" "44413" side { - "id" "57812" - "plane" "(1691.88 -3166.16 122) (1652.28 -3205.76 118) (1639.55 -3193.03 118)" + "id" "33829" + "plane" "(1408 -1216 128) (1376 -1216 128) (1376 -1152 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57811" - "plane" "(1679.15 -3153.44 48) (1639.55 -3193.03 48) (1652.28 -3205.76 48)" + "id" "33828" + "plane" "(1408 -1152 64) (1376 -1152 64) (1376 -1216 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57810" - "plane" "(1679.15 -3153.44 122) (1639.55 -3193.03 118) (1639.55 -3193.03 48)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "33827" + "plane" "(1408 -1216 64) (1376 -1216 64) (1376 -1216 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57809" - "plane" "(1691.88 -3166.16 48) (1652.28 -3205.76 48) (1652.28 -3205.76 118)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "id" "33826" + "plane" "(1376 -1152 64) (1408 -1152 64) (1408 -1152 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101305,10 +105261,10 @@ world } side { - "id" "57808" - "plane" "(1679.15 -3153.44 48) (1691.88 -3166.16 48) (1691.88 -3166.16 122)" + "id" "33825" + "plane" "(1408 -1152 64) (1408 -1216 64) (1408 -1216 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101316,10 +105272,10 @@ world } side { - "id" "57807" - "plane" "(1652.28 -3205.76 48) (1639.55 -3193.03 48) (1639.55 -3193.03 118)" + "id" "33824" + "plane" "(1376 -1216 64) (1376 -1152 64) (1376 -1152 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101327,53 +105283,53 @@ world } editor { - "color" "0 146 227" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163596" + "id" "44414" side { - "id" "57818" - "plane" "(1679.15 -3153.44 122) (1718.75 -3113.84 118) (1731.47 -3126.57 118)" + "id" "33835" + "plane" "(1216 -1152 128) (1232 -1152 128) (1232 -1216 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57817" - "plane" "(1691.88 -3166.16 48) (1731.47 -3126.57 48) (1718.75 -3113.84 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "33834" + "plane" "(1216 -1216 64) (1232 -1216 96) (1232 -1152 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57816" - "plane" "(1679.15 -3153.44 48) (1718.75 -3113.84 48) (1718.75 -3113.84 118)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "33833" + "plane" "(1216 -1152 64.0117) (1232 -1152 96.0117) (1232 -1152 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57815" - "plane" "(1691.88 -3166.16 122) (1731.47 -3126.57 118) (1731.47 -3126.57 48)" + "id" "33832" + "plane" "(1216 -1216 128) (1232 -1216 128) (1232 -1216 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101381,10 +105337,10 @@ world } side { - "id" "57814" - "plane" "(1691.88 -3166.16 48) (1679.15 -3153.44 48) (1679.15 -3153.44 122)" + "id" "33831" + "plane" "(1232 -1152 96) (1232 -1216 96) (1232 -1216 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101392,10 +105348,10 @@ world } side { - "id" "57813" - "plane" "(1718.75 -3113.84 48) (1731.47 -3126.57 48) (1731.47 -3126.57 118)" + "id" "33830" + "plane" "(1216 -1216 64) (1216 -1152 64) (1216 -1152 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101403,53 +105359,54 @@ world } editor { - "color" "0 124 173" + "color" "169 190 0" + "groupid" "44471" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163597" + "id" "44480" side { - "id" "57824" - "plane" "(1718.75 -3113.84 118) (1758.34 -3074.24 110) (1771.07 -3086.97 110)" + "id" "33877" + "plane" "(1344 -1280 64) (1328 -1280 64) (1328 -1216 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57823" - "plane" "(1731.47 -3126.57 48) (1771.07 -3086.97 48) (1758.34 -3074.24 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "33876" + "plane" "(1344 -1216 0) (1328 -1216 32) (1328 -1280 32)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57822" - "plane" "(1718.75 -3113.84 48) (1758.34 -3074.24 48) (1758.34 -3074.24 110)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "33875" + "plane" "(1344 -1280 0) (1328 -1280 32) (1328 -1280 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57821" - "plane" "(1731.47 -3126.57 118) (1771.07 -3086.97 110) (1771.07 -3086.97 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "id" "33874" + "plane" "(1344 -1216 64) (1328 -1216 64) (1328 -1216 32)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101457,10 +105414,10 @@ world } side { - "id" "57820" - "plane" "(1758.34 -3074.24 48) (1771.07 -3086.97 48) (1771.07 -3086.97 110)" + "id" "33873" + "plane" "(1328 -1280 32) (1328 -1216 32) (1328 -1216 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101468,10 +105425,10 @@ world } side { - "id" "57819" - "plane" "(1731.47 -3126.57 48) (1718.75 -3113.84 48) (1718.75 -3113.84 118)" + "id" "33872" + "plane" "(1344 -1216 0) (1344 -1280 0) (1344 -1280 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101479,53 +105436,54 @@ world } editor { - "color" "0 218 163" + "color" "169 190 0" + "groupid" "44479" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163598" + "id" "44481" side { - "id" "57830" - "plane" "(1758.34 -3074.24 110) (1797.94 -3034.64 96) (1810.67 -3047.37 96)" + "id" "33883" + "plane" "(1328 -1280 64) (1304 -1280 64) (1304 -1216 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57829" - "plane" "(1771.07 -3086.97 48) (1810.67 -3047.37 48) (1797.94 -3034.64 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "33882" + "plane" "(1328 -1216 32) (1304 -1216 48) (1304 -1280 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57828" - "plane" "(1758.34 -3074.24 48) (1797.94 -3034.64 48) (1797.94 -3034.64 96)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "33881" + "plane" "(1328 -1280 32) (1304 -1280 48) (1304 -1280 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57827" - "plane" "(1771.07 -3086.97 110) (1810.67 -3047.37 96) (1810.67 -3047.37 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "id" "33880" + "plane" "(1328 -1216 64) (1304 -1216 64) (1304 -1216 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101533,10 +105491,10 @@ world } side { - "id" "57826" - "plane" "(1771.07 -3086.97 48) (1758.34 -3074.24 48) (1758.34 -3074.24 110)" + "id" "33879" + "plane" "(1304 -1280 48) (1304 -1216 48) (1304 -1216 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101544,10 +105502,10 @@ world } side { - "id" "57825" - "plane" "(1797.94 -3034.64 48) (1810.67 -3047.37 48) (1810.67 -3047.37 96)" + "id" "33878" + "plane" "(1328 -1216 32) (1328 -1280 32) (1328 -1280 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101555,42 +105513,43 @@ world } editor { - "color" "0 156 189" + "color" "169 190 0" + "groupid" "44479" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163599" + "id" "44482" side { - "id" "57836" - "plane" "(1797.94 -3034.64 96) (1837.54 -2995.04 90) (1850.27 -3007.77 90)" + "id" "33889" + "plane" "(1256 -1216 64) (1280 -1216 64) (1280 -1280 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57835" - "plane" "(1810.67 -3047.37 48) (1850.27 -3007.77 48) (1837.54 -2995.04 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "33888" + "plane" "(1256 -1280 48) (1280 -1280 52) (1280 -1216 52)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57834" - "plane" "(1837.54 -2995.04 48) (1850.27 -3007.77 48) (1850.27 -3007.77 90)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "id" "33887" + "plane" "(1256 -1280 64) (1280 -1280 64) (1280 -1280 52)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101598,21 +105557,21 @@ world } side { - "id" "57833" - "plane" "(1797.94 -3034.64 48) (1837.54 -2995.04 48) (1837.54 -2995.04 90)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 192] 0.25" + "id" "33886" + "plane" "(1256 -1216 48) (1280 -1216 52) (1280 -1216 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57832" - "plane" "(1810.67 -3047.37 96) (1850.27 -3007.77 90) (1850.27 -3007.77 48)" + "id" "33885" + "plane" "(1256 -1280 48) (1256 -1216 48) (1256 -1216 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101620,10 +105579,10 @@ world } side { - "id" "57831" - "plane" "(1810.67 -3047.37 48) (1797.94 -3034.64 48) (1797.94 -3034.64 96)" + "id" "33884" + "plane" "(1280 -1216 52) (1280 -1280 52) (1280 -1280 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101631,190 +105590,109 @@ world } editor { - "color" "0 210 123" + "color" "169 190 0" + "groupid" "44479" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "163600" + "id" "44483" side { - "id" "57842" - "plane" "(1520.76 -3311.83 64) (1365.19 -3156.26 64) (1681.98 -2839.48 64)" - "material" "STONE/INFFLRD_BLEND_DIRT" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 83.3913] 0.25" + "id" "33895" + "plane" "(1232 -1216 64) (1256 -1216 64) (1256 -1280 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" - dispinfo - { - "power" "3" - "startposition" "[1520.76 -3311.84 64]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0" - } - distances - { - "row0" "0 0 8.72384 22.7896 25.6621 20.1907 4.35275 0 0" - "row1" "0 0 10.1827 25.5304 27.147 22.7175 7.43949 0 0" - "row2" "0 0 11.7292 25.8815 27.6696 24.1757 8.70917 0 0" - "row3" "0 0 11.4823 25.7711 27.2674 19.7582 9.54561 0 0" - "row4" "0 0 5.8032 21.0732 22.2416 19.6183 3.99163 0 0" - "row5" "0 0 9.91635 26.8722 26.5464 24.7575 9.19771 0 0" - "row6" "0 0 9.46894 27.9154 28.3562 24.2906 8.30138 0 0" - "row7" "0 0 9.1328 28.1661 29.6615 23.2554 7.28686 0 0" - "row8" "0 0 9.75365 26.478 29.437 21.1696 5.54286 0 0" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "255 130 255 237.5 255 218.5 180.5 92.5 217.5" - "row1" "230 149.5 142.5 104.5 123.5 114 57 57 241.5" - "row2" "176 10.5 66.5 47.5 66.5 28.5 28.5 0 255" - "row3" "185.5 0 95 95 66.5 38 57 0 255" - "row4" "255 130.5 180.5 161.5 142.5 114 152 52 255" - "row5" "255 1 66.5 66.5 66.5 38 57 1 255" - "row6" "207 0 19 47.5 47.5 28.5 19 41.5 191.5" - "row7" "255 0 76 76 95 66.5 76 23.5 255" - "row8" "180.5 209 171 171 142.5 161.5 152 237.5 255" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "57841" - "plane" "(1365.19 -3156.26 48) (1520.76 -3311.83 48) (1837.54 -2995.04 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0.707107 -0.707107 0 19.3913] 0.25" + "id" "33894" + "plane" "(1232 -1280 32) (1256 -1280 48) (1256 -1216 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57840" - "plane" "(1520.76 -3311.83 48) (1365.19 -3156.26 48) (1365.19 -3156.26 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "33893" + "plane" "(1232 -1280 64) (1256 -1280 64) (1256 -1280 48)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57839" - "plane" "(1681.98 -2839.48 48) (1837.54 -2995.04 48) (1837.54 -2995.04 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 -19.3913] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "33892" + "plane" "(1232 -1216 32) (1256 -1216 48) (1256 -1216 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57838" - "plane" "(1365.19 -3156.26 48) (1681.98 -2839.48 48) (1681.98 -2839.48 64)" + "id" "33891" + "plane" "(1232 -1280 32) (1232 -1216 32) (1232 -1216 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "57837" - "plane" "(1837.54 -2995.04 48) (1520.76 -3311.83 48) (1520.76 -3311.83 64)" + "id" "33890" + "plane" "(1256 -1216 48) (1256 -1280 48) (1256 -1280 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.0832] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 236 241" + "color" "169 190 0" + "groupid" "44479" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "164268" + "id" "44484" side { - "id" "58094" - "plane" "(720 -2272 72) (720 -2240 72) (1008 -2240 72)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "33901" + "plane" "(1216 -1216 64) (1232 -1216 64) (1232 -1280 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" "58093" - "plane" "(720 -2240 64) (720 -2272 64) (1008 -2272 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "33900" + "plane" "(1216 -1280 0) (1232 -1280 32) (1232 -1216 32)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101822,10 +105700,10 @@ world } side { - "id" "58092" - "plane" "(720 -2272 64) (720 -2240 64) (720 -2240 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "33899" + "plane" "(1216 -1280 64) (1232 -1280 64) (1232 -1280 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101833,10 +105711,10 @@ world } side { - "id" "58091" - "plane" "(1008 -2240 64) (1008 -2272 64) (1008 -2272 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "33898" + "plane" "(1216 -1216 0) (1232 -1216 32) (1232 -1216 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101844,10 +105722,10 @@ world } side { - "id" "58090" - "plane" "(720 -2240 64) (1008 -2240 64) (1008 -2240 72)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "33897" + "plane" "(1216 -1280 0) (1216 -1216 0) (1216 -1216 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101855,10 +105733,10 @@ world } side { - "id" "58089" - "plane" "(1008 -2272 64) (720 -2272 64) (720 -2272 72)" + "id" "33896" + "plane" "(1232 -1216 32) (1232 -1280 32) (1232 -1280 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101866,21 +105744,21 @@ world } editor { - "color" "0 103 232" - "visgroupid" "23" + "color" "169 190 0" + "groupid" "44479" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "164281" + "id" "44485" side { - "id" "58136" - "plane" "(1008 -2112 64) (1008 -1792 64) (1024 -1792 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" + "id" "33907" + "plane" "(1304 -1280 64) (1280 -1280 64) (1280 -1216 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101888,10 +105766,10 @@ world } side { - "id" "58135" - "plane" "(1008 -1792 -128) (1008 -2112 -128) (1024 -2112 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "33906" + "plane" "(1304 -1216 48) (1280 -1216 52) (1280 -1280 52)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101899,10 +105777,10 @@ world } side { - "id" "58134" - "plane" "(1008 -2112 -128) (1008 -1792 -128) (1008 -1792 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "33905" + "plane" "(1304 -1280 48) (1280 -1280 52) (1280 -1280 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101910,10 +105788,10 @@ world } side { - "id" "58133" - "plane" "(1024 -1792 -128) (1024 -2112 -128) (1024 -2112 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "33904" + "plane" "(1304 -1216 64) (1280 -1216 64) (1280 -1216 52)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101921,10 +105799,10 @@ world } side { - "id" "58132" - "plane" "(1008 -1792 -128) (1024 -1792 -128) (1024 -1792 64)" + "id" "33903" + "plane" "(1280 -1280 52) (1280 -1216 52) (1280 -1216 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101932,10 +105810,10 @@ world } side { - "id" "58131" - "plane" "(1024 -2112 -128) (1008 -2112 -128) (1008 -2112 64)" + "id" "33902" + "plane" "(1304 -1216 48) (1304 -1280 48) (1304 -1280 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101943,43 +105821,43 @@ world } editor { - "color" "0 103 232" - "visgroupid" "23" + "color" "169 190 0" + "groupid" "44479" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "164311" + "id" "44536" side { - "id" "58184" - "plane" "(720 -2624 80) (720 -2272 80) (1008 -2272 80)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "33961" + "plane" "(1344 -1312 -16) (1216 -1312 -16) (1216 -1184 -16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58183" - "plane" "(720 -2272 64) (720 -2624 64) (1008 -2624 64)" + "id" "33960" + "plane" "(1344 -1184 -128) (1216 -1184 -128) (1216 -1312 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58182" - "plane" "(720 -2624 64) (720 -2272 64) (720 -2272 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "33959" + "plane" "(1344 -1312 -128) (1216 -1312 -128) (1216 -1312 -16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101987,10 +105865,10 @@ world } side { - "id" "58181" - "plane" "(1008 -2272 64) (1008 -2624 64) (1008 -2624 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 16] 0.25" + "id" "33958" + "plane" "(1216 -1184 -128) (1344 -1184 -128) (1344 -1184 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -101998,10 +105876,10 @@ world } side { - "id" "58180" - "plane" "(720 -2272 64) (1008 -2272 64) (1008 -2272 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "33957" + "plane" "(1216 -1312 -128) (1216 -1184 -128) (1216 -1184 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102009,10 +105887,10 @@ world } side { - "id" "58179" - "plane" "(1008 -2624 64) (720 -2624 64) (720 -2624 80)" + "id" "33956" + "plane" "(1344 -1184 -128) (1344 -1312 -128) (1344 -1312 -16)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102020,32 +105898,31 @@ world } editor { - "color" "0 103 232" - "visgroupid" "23" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "164386" + "id" "44541" side { - "id" "58196" - "plane" "(384 -2624 80) (384 -2320 80) (720 -2320 80)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "33973" + "plane" "(1152 -1280 256) (1152 -1216 256) (1408 -1216 256)" + "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" "58195" - "plane" "(384 -2320 64) (384 -2624 64) (720 -2624 64)" + "id" "33972" + "plane" "(1152 -1216 64) (1152 -1280 64) (1408 -1280 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102053,9 +105930,9 @@ world } side { - "id" "58194" - "plane" "(384 -2624 64) (384 -2320 64) (384 -2320 80)" - "material" "DEV/REFLECTIVITY_50B" + "id" "33971" + "plane" "(1152 -1216 64) (1152 -1216 256) (1152 -1280 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -102064,10 +105941,10 @@ world } side { - "id" "58193" - "plane" "(720 -2320 64) (720 -2624 64) (720 -2624 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "33970" + "plane" "(1152 -1280 64) (1152 -1280 256) (1408 -1280 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102075,10 +105952,10 @@ world } side { - "id" "58192" - "plane" "(384 -2320 64) (720 -2320 64) (720 -2320 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "33969" + "plane" "(1408 -1216 64) (1408 -1216 256) (1152 -1216 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102086,10 +105963,10 @@ world } side { - "id" "58191" - "plane" "(720 -2624 64) (384 -2624 64) (384 -2624 80)" + "id" "33968" + "plane" "(1408 -1280 64) (1408 -1280 256) (1408 -1216 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102097,19 +105974,18 @@ world } editor { - "color" "0 103 232" - "visgroupid" "23" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "164402" + "id" "44545" side { - "id" "58208" - "plane" "(1032 -1800 264) (904 -1928 264) (872 -1896 264)" + "id" "33985" + "plane" "(1216 -1280 64) (1152 -1280 64) (1152 -1248 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -102119,54 +105995,54 @@ world } side { - "id" "58207" - "plane" "(1024 -1792 256) (896 -1920 256) (904 -1928 264)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "33984" + "plane" "(1216 -1248 0) (1152 -1248 0) (1152 -1280 0)" + "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" "58206" - "plane" "(1000 -1768 264) (872 -1896 264) (872 -1896 256)" + "id" "33983" + "plane" "(1152 -1280 0) (1152 -1248 0) (1152 -1248 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58205" - "plane" "(1000 -1768 264) (1000 -1768 256) (1024 -1792 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "33982" + "plane" "(1216 -1280 0) (1152 -1280 0) (1152 -1280 64)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58204" - "plane" "(896 -1920 256) (1024 -1792 256) (1000 -1768 256)" + "id" "33981" + "plane" "(1152 -1248 0) (1216 -1248 0) (1216 -1248 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58203" - "plane" "(896 -1920 256) (872 -1896 256) (872 -1896 264)" + "id" "33980" + "plane" "(1216 -1248 0) (1216 -1280 0) (1216 -1280 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102174,64 +106050,75 @@ world } editor { - "color" "0 176 105" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "164404" + "id" "44548" side { - "id" "58218" - "plane" "(896 -1920 264) (832 -1856 384) (960 -1728 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-0.707107 -0.707107 0 -25.0166] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "33997" + "plane" "(1408 -1280 64) (1344 -1280 64) (1344 -1248 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" "58217" - "plane" "(832 -1856 384) (832 -1856 264) (960 -1728 264)" + "id" "33996" + "plane" "(1408 -1248 0) (1344 -1248 0) (1344 -1280 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 -0.707107 0 -57.0166] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58216" - "plane" "(1024 -1792 264) (960 -1728 384) (960 -1728 264)" + "id" "33995" + "plane" "(1344 -1280 0) (1344 -1248 0) (1344 -1248 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 21.0867] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58215" - "plane" "(1024 -1792 264) (960 -1728 264) (832 -1856 264)" + "id" "33994" + "plane" "(1408 -1280 0) (1344 -1280 0) (1344 -1280 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33993" + "plane" "(1344 -1248 0) (1408 -1248 0) (1408 -1248 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 21.0867] 0.25" - "vaxis" "[0.707107 0.707107 0 57.0166] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "58214" - "plane" "(832 -1856 384) (896 -1920 264) (832 -1856 264)" + "id" "33992" + "plane" "(1408 -1248 0) (1408 -1280 0) (1408 -1280 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 21.0867] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102239,162 +106126,118 @@ world } editor { - "color" "0 176 105" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "150196" + "id" "44552" side { - "id" "55933" - "plane" "(3344.85 -87.0562 202) (3388.33 75.2193 202) (3559.8 174.214 202)" + "id" "34021" + "plane" "(1152 -1248 256) (1152 -1280 256) (1120 -1280 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.965926 -0.258819 0 42.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55932" - "plane" "(3388.33 75.2193 144) (3344.85 -87.0562 144) (3443.85 -258.521 144)" + "id" "34020" + "plane" "(1152 -1280 0) (1152 -1248 0) (1136 -1248 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.965926 -0.258819 0 42.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55931" - "plane" "(3344.85 -87.0562 144) (3388.33 75.2193 144) (3388.33 75.2193 202)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.258819 0.965926 0 -248.968] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34019" + "plane" "(1120 -1280 256) (1120 -1280 0) (1136 -1248 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55930" - "plane" "(3821.07 -40.7317 144) (3777.59 -203.007 144) (3777.59 -203.007 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" - "vaxis" "[0 0 -1 62] 0.25" + "id" "34018" + "plane" "(1152 -1280 256) (1152 -1280 0) (1120 -1280 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55929" - "plane" "(3559.8 174.214 144) (3722.07 130.733 144) (3722.07 130.733 202)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 293.296] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34017" + "plane" "(1136 -1248 256) (1136 -1248 0) (1152 -1248 0)" + "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" "55928" - "plane" "(3606.12 -302.002 144) (3443.85 -258.521 144) (3443.85 -258.521 202)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[-0.965926 0.258819 0 -238.941] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34016" + "plane" "(1152 -1248 256) (1152 -1248 0) (1152 -1280 0)" + "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 + editor { - "id" "55927" - "plane" "(3722.07 130.733 144) (3821.07 -40.7317 144) (3821.07 -40.7317 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" - "vaxis" "[0 0 -1 62] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "55926" - "plane" "(3777.59 -203.007 144) (3606.12 -302.002 144) (3606.12 -302.002 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" - "vaxis" "[0 0 -1 62] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "55925" - "plane" "(3443.85 -258.521 144) (3344.85 -87.0562 144) (3344.85 -87.0562 202)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[-0.5 0.866026 0 -384.279] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "55924" - "plane" "(3388.33 75.2193 144) (3559.8 174.214 144) (3559.8 174.214 202)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.866026 0.5 0 -362.063] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 101 110" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "155013" + "id" "44630" side { - "id" "56141" - "plane" "(3384.86 77.7014 202) (3340.6 -87.468 202) (3441.36 -261.996 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" - "vaxis" "[0.965926 -0.258819 0 42.355] 0.25" + "id" "34046" + "plane" "(1152 -896 56) (1216 -896 56) (1216 -1152 56)" + "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" "56140" - "plane" "(3340.6 -87.4699 206) (3340.6 -87.4699 202) (3384.86 77.7034 202)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.258819 0.965926 0 -248.968] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34045" + "plane" "(1152 -1152 32) (1216 -1152 32) (1216 -896 32)" + "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" "56139" - "plane" "(3825.32 -40.318 206) (3825.32 -40.318 202) (3781.06 -205.491 202)" + "id" "34044" + "plane" "(1216 -896 32) (1216 -1152 32) (1216 -1152 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102402,32 +106245,10 @@ world } side { - "id" "56138" - "plane" "(3559.38 178.466 206) (3559.38 178.466 202) (3724.56 134.208 202)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 293.296] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "56137" - "plane" "(3606.54 -306.254 206) (3606.54 -306.254 202) (3441.36 -261.996 202)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[-0.965926 0.258819 0 -238.941] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "56136" - "plane" "(3724.56 134.208 206) (3724.56 134.208 202) (3825.32 -40.318 202)" + "id" "34043" + "plane" "(1216 -1152 32) (1152 -1152 32) (1152 -1152 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102435,10 +106256,10 @@ world } side { - "id" "56135" - "plane" "(3781.06 -205.491 206) (3781.06 -205.491 202) (3606.54 -306.254 202)" + "id" "34042" + "plane" "(1152 -896 32) (1216 -896 32) (1216 -896 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102446,197 +106267,130 @@ world } side { - "id" "56134" - "plane" "(3441.36 -261.996 206) (3441.36 -261.996 202) (3340.6 -87.4699 202)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[-0.5 0.866026 0 -384.279] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "56133" - "plane" "(3384.86 77.6996 206) (3384.86 77.6996 202) (3559.38 178.466 202)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.866026 0.5 0 -362.063] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "56132" - "plane" "(3340.6 -87.4679 206) (3384.86 77.7014 206) (3559.38 178.466 206)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.965926 -0.258819 0 101.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 326.487] 0.25" + "id" "34041" + "plane" "(1152 -1152 32) (1152 -896 32) (1152 -896 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 220 220" - "groupid" "155031" + "color" "0 221 166" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "155015" - side - { - "id" "56149" - "plane" "(3340.6 -87.4699 208) (3340.6 -87.4699 206) (3384.86 77.7034 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.258819 0.965926 0 -248.968] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "56148" - "plane" "(3559.38 178.467 208) (3559.38 178.467 206) (3580.15 172.902 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 293.296] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "44648" side { - "id" "56147" - "plane" "(3462.13 -267.561 206) (3441.36 -261.995 206) (3441.36 -261.995 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[-0.965926 0.258819 0 -238.941] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34082" + "plane" "(1216 -1216 128) (1184 -1216 128) (1184 -1152 128)" + "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" "56146" - "plane" "(3441.36 -261.996 208) (3441.36 -261.996 206) (3340.6 -87.4699 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[-0.5 0.866026 0 -384.279] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34081" + "plane" "(1216 -1152 0) (1184 -1152 0) (1184 -1216 0)" + "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" "56145" - "plane" "(3384.86 77.7015 208) (3384.86 77.7015 206) (3559.38 178.466 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.866026 0.5 0 -362.063] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34080" + "plane" "(1184 -1216 0) (1184 -1152 0) (1184 -1152 128)" + "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" "56144" - "plane" "(3462.13 -267.561 208) (3441.36 -261.996 208) (3340.6 -87.4679 208)" - "material" "CONCRETE/CONCRETE_FLOOR_10" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" + "id" "34079" + "plane" "(1216 -1216 0) (1184 -1216 0) (1184 -1216 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56143" - "plane" "(3580.15 172.902 206) (3559.38 178.466 206) (3384.86 77.7014 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" + "id" "34078" + "plane" "(1184 -1152 0) (1216 -1152 0) (1216 -1152 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56142" - "plane" "(3580.15 172.902 208) (3580.15 172.902 206) (3462.13 -267.561 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.258819 0.965926 0 -75.4871] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34077" + "plane" "(1216 -1152 0) (1216 -1216 0) (1216 -1216 128)" + "material" "DEV/REFLECTIVITY_30B" + "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" "155031" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "155017" + "id" "44651" side { - "id" "56157" - "plane" "(3825.32 -40.318 208) (3825.32 -40.318 206) (3781.06 -205.491 206)" + "id" "34094" + "plane" "(1376 -1216 128) (1344 -1216 128) (1344 -1152 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "56156" - "plane" "(3703.79 139.773 206) (3724.56 134.208 206) (3724.56 134.208 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 293.296] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "56155" - "plane" "(3606.54 -306.254 208) (3606.54 -306.254 206) (3585.77 -300.69 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[-0.965926 0.258819 0 -238.941] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56154" - "plane" "(3724.56 134.208 208) (3724.56 134.208 206) (3825.32 -40.3199 206)" + "id" "34093" + "plane" "(1376 -1152 0) (1344 -1152 0) (1344 -1216 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56153" - "plane" "(3781.06 -205.491 208) (3781.06 -205.491 206) (3606.54 -306.254 206)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "id" "34092" + "plane" "(1344 -1216 0) (1344 -1152 0) (1344 -1152 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102644,87 +106398,86 @@ world } side { - "id" "56152" - "plane" "(3703.79 139.773 208) (3724.56 134.208 208) (3825.32 -40.318 208)" - "material" "CONCRETE/CONCRETE_FLOOR_10" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" + "id" "34091" + "plane" "(1376 -1216 0) (1344 -1216 0) (1344 -1216 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56151" - "plane" "(3585.77 -300.69 206) (3606.54 -306.254 206) (3781.06 -205.491 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" + "id" "34090" + "plane" "(1344 -1152 0) (1376 -1152 0) (1376 -1152 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56150" - "plane" "(3585.77 -300.69 208) (3585.77 -300.69 206) (3703.79 139.773 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.258819 0.965926 0 -75.4871] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34089" + "plane" "(1376 -1152 0) (1376 -1216 0) (1376 -1216 128)" + "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" "155031" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "155019" + "id" "44675" side { - "id" "56163" - "plane" "(3580.15 172.902 206) (3703.79 139.773 206) (3703.79 139.773 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 293.296] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34178" + "plane" "(1344 -896 256) (1344 -832 256) (1440 -832 256)" + "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" "56162" - "plane" "(3537.71 14.4897 208) (3580.15 172.902 208) (3703.79 139.773 208)" - "material" "CONCRETE/CONCRETE_FLOOR_10" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" + "id" "34177" + "plane" "(1344 -832 64) (1344 -896 64) (1440 -896 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" "56161" - "plane" "(3703.79 139.773 206) (3580.15 172.902 206) (3537.71 14.4897 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" + "id" "34176" + "plane" "(1344 -896 64) (1344 -832 64) (1344 -832 256)" + "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" "56160" - "plane" "(3537.71 14.4897 206) (3580.15 172.902 206) (3580.15 172.902 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.258819 0.965926 0 -262.487] 0.25" + "id" "34175" + "plane" "(1440 -832 64) (1440 -896 64) (1440 -896 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102732,10 +106485,10 @@ world } side { - "id" "56159" - "plane" "(3703.79 139.773 208) (3703.79 139.773 206) (3661.34 -18.6391 206)" + "id" "34174" + "plane" "(1344 -832 64) (1440 -832 64) (1440 -832 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102743,65 +106496,64 @@ world } side { - "id" "56158" - "plane" "(3661.34 -18.6391 206) (3537.71 14.4897 206) (3537.71 14.4897 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 101.355] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34173" + "plane" "(1440 -896 64) (1344 -896 64) (1344 -896 256)" + "material" "DEV/REFLECTIVITY_50B" + "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" "155031" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "155021" + "id" "44679" side { - "id" "56169" - "plane" "(3585.77 -300.69 206) (3462.13 -267.561 206) (3462.13 -267.561 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[-0.965926 0.258819 0 -238.941] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34190" + "plane" "(1216 -896 256) (1216 -832 256) (1344 -832 256)" + "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" "56168" - "plane" "(3585.77 -300.69 208) (3462.13 -267.561 208) (3504.58 -109.149 208)" - "material" "CONCRETE/CONCRETE_FLOOR_10" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" + "id" "34189" + "plane" "(1216 -832 128) (1216 -896 128) (1344 -896 128)" + "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" "56167" - "plane" "(3504.58 -109.149 206) (3462.13 -267.561 206) (3585.77 -300.69 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" + "id" "34188" + "plane" "(1216 -896 128) (1216 -832 128) (1216 -832 256)" + "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" "56166" - "plane" "(3462.13 -267.561 208) (3462.13 -267.561 206) (3504.58 -109.149 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.258819 0.965926 0 -262.487] 0.25" + "id" "34187" + "plane" "(1344 -832 128) (1344 -896 128) (1344 -896 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102809,10 +106561,10 @@ world } side { - "id" "56165" - "plane" "(3628.22 -142.278 206) (3585.77 -300.69 206) (3585.77 -300.69 208)" + "id" "34186" + "plane" "(1216 -832 128) (1344 -832 128) (1344 -832 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102820,54 +106572,53 @@ world } side { - "id" "56164" - "plane" "(3504.58 -109.149 206) (3628.22 -142.278 206) (3628.22 -142.278 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 101.355] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34185" + "plane" "(1344 -896 128) (1216 -896 128) (1216 -896 256)" + "material" "DEV/REFLECTIVITY_50B" + "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" "155031" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "155023" + "id" "44749" side { - "id" "56174" - "plane" "(3622.71 -8.28632 208) (3661.34 -18.6391 208) (3650.99 -57.2761 208)" - "material" "CONCRETE/CONCRETE_FLOOR_10" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" + "id" "34197" + "plane" "(1216 -896 48) (1344 -896 48) (1344 -1171.29 48)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56173" - "plane" "(3650.99 -57.2761 206) (3661.34 -18.6391 206) (3622.71 -8.28632 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" + "id" "34196" + "plane" "(1216 -1184 -16) (1344 -1184 -16) (1344 -896 -16)" + "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" "56172" - "plane" "(3661.34 -18.6391 206) (3650.99 -57.2761 206) (3650.99 -57.2761 208)" + "id" "34195" + "plane" "(1344 -896 -16) (1344 -1184 -16) (1344 -1184 24)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102875,10 +106626,10 @@ world } side { - "id" "56171" - "plane" "(3622.71 -8.28632 206) (3661.34 -18.6391 206) (3661.34 -18.6391 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "id" "34194" + "plane" "(1344 -1184 -16) (1216 -1184 -16) (1216 -1184 24)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102886,54 +106637,10 @@ world } side { - "id" "56170" - "plane" "(3650.99 -57.2761 206) (3622.71 -8.28632 206) (3622.71 -8.28632 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 101.355] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 220 220" - "groupid" "155031" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "155025" - side - { - "id" "56179" - "plane" "(3638.57 -103.641 208) (3628.22 -142.278 208) (3589.58 -131.925 208)" - "material" "CONCRETE/CONCRETE_FLOOR_10" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "56178" - "plane" "(3589.58 -131.925 206) (3628.22 -142.278 206) (3638.57 -103.641 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "56177" - "plane" "(3638.57 -103.641 206) (3628.22 -142.278 206) (3628.22 -142.278 208)" + "id" "34193" + "plane" "(1216 -896 -16) (1344 -896 -16) (1344 -896 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.258819 0.965926 0 -6.48706] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102941,10 +106648,10 @@ world } side { - "id" "56176" - "plane" "(3628.22 -142.278 206) (3589.58 -131.925 206) (3589.58 -131.925 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "id" "34192" + "plane" "(1216 -1184 -16) (1216 -896 -16) (1216 -896 48)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -102952,54 +106659,112 @@ world } side { - "id" "56175" - "plane" "(3589.58 -131.925 206) (3638.57 -103.641 206) (3638.57 -103.641 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.258819 0.965926 0 -75.4871] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34191" + "plane" "(1216 -1171.29 48) (1344 -1171.29 48) (1344 -1184 24)" + "material" "DEV/REFLECTIVITY_10B" + "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" "155031" + "color" "0 221 166" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "155027" + "id" "44798" side { - "id" "56184" - "plane" "(3543.21 -119.502 208) (3504.58 -109.149 208) (3514.93 -70.5117 208)" - "material" "CONCRETE/CONCRETE_FLOOR_10" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" + "id" "34223" + "plane" "(1216 -1192 -8) (1344 -1192 -8) (1344 -1320 -8)" + "material" "WATERSOURCE/WATERFALL/WATERFALLSOFT_1024_CLEAR_SLOW" + "uaxis" "[1 0 0 -760] 0.135" + "vaxis" "[0 1 0 270.997] 0.135" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[1216 -1320 -8]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.327101 0.633918 -0.422612 -0.390648 0.765936 -0.510623 0.140674 0.823776 -0.549184 -0.0712148 0.829937 -0.553292 0.0401754 0.710938 -0.315972" + "row1" "0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0" + "row2" "-1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0" + "row3" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" + "row4" "-0.737386 -0.337736 0 -0.776109 -0.3153 0 -0.705472 -0.354369 0 0.439837 -0.449039 0 0.65664 -0.377102 0" + } + distances + { + "row0" "11.8312 9.79194 9.10445 9.03679 15.8242" + "row1" "0 5 0 0 0" + "row2" "4.67639 11.3447 9.0238 19.1284 3.96301" + "row3" "14.3677 22 6.10889 1.02039 4.52454" + "row4" "11.8436 15.8579 16.9315 17.8158 18.5626" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 -0.5 0.5 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.5 0.5" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0" + "row1" "0 0 0 0 0" + "row2" "0 0 0 0 0" + "row3" "0 0 0 0 0" + "row4" "0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "56183" - "plane" "(3514.93 -70.5117 206) (3504.58 -109.149 206) (3543.21 -119.502 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" + "id" "34222" + "plane" "(1216 -1320 -16) (1344 -1320 -16) (1344 -1192 -16)" + "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" "56182" - "plane" "(3504.58 -109.149 206) (3514.93 -70.5117 206) (3514.93 -70.5117 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.258819 0.965926 0 -262.487] 0.25" + "id" "34221" + "plane" "(1216 -1320 -8) (1344 -1320 -8) (1344 -1320 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -103007,10 +106772,10 @@ world } side { - "id" "56181" - "plane" "(3543.21 -119.502 206) (3504.58 -109.149 206) (3504.58 -109.149 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" + "id" "34220" + "plane" "(1344 -1192 -8) (1216 -1192 -8) (1216 -1192 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -103018,130 +106783,268 @@ world } side { - "id" "56180" - "plane" "(3514.93 -70.5117 206) (3543.21 -119.502 206) (3543.21 -119.502 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.258819 0.965926 0 -75.4871] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34219" + "plane" "(1216 -1192 -8) (1216 -1320 -8) (1216 -1320 -16)" + "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" "34218" + "plane" "(1344 -1320 -8) (1344 -1192 -8) (1344 -1192 -16)" + "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" "155031" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "155029" + "id" "45083" side { - "id" "56189" - "plane" "(3527.35 -24.1473 208) (3537.71 14.4897 208) (3576.34 4.13696 208)" - "material" "CONCRETE/CONCRETE_FLOOR_10" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 262.487] 0.25" + "id" "34235" + "plane" "(1344 -1192 -8) (1216 -1192 -8) (1216 -1192 32)" + "material" "WATERSOURCE/WATERFALL/WATERFALLSOFT_1024_CLEAR_SLOW" + "uaxis" "[1 0 0 -760] 0.135" + "vaxis" "[0 0 1 -307.372] 0.135" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[1216 -1192 -8]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "-0.737386 -0.675472 0 -0.776109 -0.630599 0 -0.705472 -0.708738 0 0.439837 -0.898078 0 0.65664 -0.754204 0" + "row1" "-1 0 0 -1 0 0 -0.910894 -0.41264 0 0.708312 -0.705899 0 0.857537 -0.514422 0" + "row2" "-1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0" + "row3" "-1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0" + "row4" "-0.752878 0.46539 -0.46539 -0.887012 0.206499 -0.412999 -0.956841 0.205493 -0.205493 0.789386 0.434091 -0.434091 0.891028 0.203012 -0.406024" + } + distances + { + "row0" "11.8436 15.8579 16.9315 17.8158 18.5626" + "row1" "8.76196 13.6442 14.5405 11.3331 15.5514" + "row2" "7.86255 13.349 13.2036 7.14282 13.161" + "row3" "6.026 11.3885 11.8635 5.34717 11.6538" + "row4" "4.29747 9.68526 9.73267 4.60733 9.85163" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row1" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row2" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row3" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row4" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + } + alphas + { + "row0" "0 0 0 0 0" + "row1" "0 0 0 0 0" + "row2" "0 0 0 0 0" + "row3" "0 0 0 0 0" + "row4" "0 0 0 0 0" + } + triangle_tags + { + "row0" "0 1 1 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "56188" - "plane" "(3576.34 4.13696 206) (3537.71 14.4897 206) (3527.35 -24.1473 206)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[-0.258819 -0.965926 0 6.48706] 0.25" + "id" "34234" + "plane" "(1216 -1184 -8) (1344 -1184 -8) (1344 -1184 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56187" - "plane" "(3527.35 -24.1473 206) (3537.71 14.4897 206) (3537.71 14.4897 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.258819 0.965926 0 -262.487] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "34233" + "plane" "(1344 -1184 -8) (1216 -1184 -8) (1216 -1192 -8)" + "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" "56186" - "plane" "(3537.71 14.4897 206) (3576.34 4.13696 206) (3576.34 4.13696 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 426.355] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "34232" + "plane" "(1344 -1192 32) (1216 -1192 32) (1216 -1184 32)" + "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" "56185" - "plane" "(3576.34 4.13696 206) (3527.35 -24.1473 206) (3527.35 -24.1473 208)" - "material" "CONCRETE/CONCRETE_EXT_14B" - "uaxis" "[0.965926 -0.258819 0 101.355] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "34231" + "plane" "(1216 -1192 32) (1216 -1192 -8) (1216 -1184 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "34230" + "plane" "(1344 -1184 32) (1344 -1184 -8) (1344 -1192 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 220 220" - "groupid" "155031" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "155088" + "id" "45088" side { - "id" "56201" - "plane" "(4544 64 704) (5184 64 704) (5184 -576 704)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "34247" + "plane" "(1216 -1192 32) (1216 -1160 52) (1344 -1160 52)" + "material" "WATERSOURCE/WATERFALL/WATERFALLSOFT_1024_CLEAR_SLOW" + "uaxis" "[1 0 0 -760] 0.135" + "vaxis" "[0 0.752576 0.658505 274.544] 0.135" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[1216 -1192 32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "-0.752878 0.46539 -0.46539 -0.887012 0.206499 -0.412999 -0.956841 0.205493 -0.205493 0.789386 0.434091 -0.434091 0.891028 0.203012 -0.406024" + "row1" "-0.194861 0 0.980831 -1 0 0 -1 0 0 1 0 0 1 0 0" + "row2" "0 0 1 -0.569692 0 0.821858 -0.914077 0 0.405541 0.755181 0 0.655517 0.277856 0 0.960623" + "row3" "0 0 0 0 0 0 -0.999998 0 0 0.999999 0 0 0 0 0" + "row4" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + } + distances + { + "row0" "4.29747 9.68526 9.73267 4.60733 9.85163" + "row1" "2.03909 5.76379 7.68823 3.38159 5.47534" + "row2" "2 2.43351 4.93168 3.05103 2.08198" + "row3" "0 0 0.0671387 0.088501 0" + "row4" "4 4 4 4 4" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577" + "row1" "0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577" + "row2" "0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577" + "row3" "0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577" + "row4" "0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577" + } + alphas + { + "row0" "0 0 0 0 0" + "row1" "0 0 0 0 0" + "row2" "0 0 0 0 0" + "row3" "0 0 0 0 0" + "row4" "0 0 0 0 0" + } + triangle_tags + { + "row0" "0 0 0 0 0 0 0 0" + "row1" "9 1 1 1 1 1 1 1" + "row2" "9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "56200" - "plane" "(4544 64 704) (4544 -576 704) (4544 -576 24)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "34246" + "plane" "(1344 -1184 32) (1344 -1160 48) (1216 -1160 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56199" - "plane" "(5184 64 24) (5184 -576 24) (5184 -576 704)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "34245" + "plane" "(1216 -1184 32) (1216 -1192 32) (1344 -1192 32)" + "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" "56198" - "plane" "(5184 64 704) (4544 64 704) (4544 64 24)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "34244" + "plane" "(1344 -1160 48) (1344 -1160 52) (1216 -1160 52)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -103150,65 +107053,123 @@ world } side { - "id" "56197" - "plane" "(5184 -576 24) (4544 -576 24) (4544 -576 704)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "34243" + "plane" "(1216 -1160 48) (1216 -1160 52) (1216 -1192 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56196" - "plane" "(5120 -512 640) (5120 0 640) (4608 0 640)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "34242" + "plane" "(1344 -1160 52) (1344 -1160 48) (1344 -1184 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 220 220" - "groupid" "155100" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "155090" + "id" "45090" side { - "id" "56207" - "plane" "(4544 -576 24) (5184 -576 24) (5184 64 24)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" + "id" "34259" + "plane" "(1344 -1160 52) (1216 -1160 52) (1216 -896 52)" + "material" "WATERSOURCE/WATERFALL/WATERFALLSOFT_1024_CLEAR_SLOW" + "uaxis" "[1 0 0 -760] 0.135" + "vaxis" "[0 1 0 645.222] 0.135" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[1216 -1160 52]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row1" "-1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0" + "row2" "-1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" + "row3" "-1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "4 4 4 4 4" + "row1" "7.96423 8.87817 0.55896 16.0397 10.5742" + "row2" "6.99072 6.24072 12.4965 26 17.3584" + "row3" "0.355591 7.82288 10.4374 3.08801 4.72131" + "row4" "0 0 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0" + "row1" "0 0 0 0 0" + "row2" "0 0 0 0 0" + "row3" "0 0 0 0 0" + "row4" "0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "56206" - "plane" "(4544 64 704) (4544 -576 704) (4544 -576 24)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "34258" + "plane" "(1344 -896 48) (1216 -896 48) (1216 -1160 48)" + "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" "56205" - "plane" "(5184 64 24) (5184 -576 24) (5184 -576 704)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" + "id" "34257" + "plane" "(1344 -1160 48) (1216 -1160 48) (1216 -1160 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -103216,9 +107177,9 @@ world } side { - "id" "56204" - "plane" "(5184 64 704) (4544 64 704) (4544 64 24)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "34256" + "plane" "(1216 -896 48) (1344 -896 48) (1344 -896 52)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -103227,142 +107188,200 @@ world } side { - "id" "56203" - "plane" "(5184 -576 24) (4544 -576 24) (4544 -576 704)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "34255" + "plane" "(1216 -1160 48) (1216 -896 48) (1216 -896 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56202" - "plane" "(5120 0 88) (5120 -512 88) (4608 -512 88)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "34254" + "plane" "(1344 -896 48) (1344 -1160 48) (1344 -1160 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 220 220" - "groupid" "155100" + "color" "0 137 234" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "155092" + "id" "45108" side { - "id" "56213" - "plane" "(4544 64 704) (4544 -576 704) (4544 -576 24)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "34277" + "plane" "(1216 -1320 -64) (1216 -1320 -8) (1344 -1320 -8)" + "material" "WATERSOURCE/WATERFALL/WATERFALLSOFT_1024_CLEAR_SLOW" + "uaxis" "[1 0 0 -760] 0.135" + "vaxis" "[0 0 1 -155.668] 0.135" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[1216 -1320 -64]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "1 0 0 -1 0 0 1 0 0 -1 0 0 1 0 0" + "row1" "1 0 0 -1 0 0 1 0 0 -1 0 0 1 0 0" + "row2" "-1 0 0 -1 0 0 1 0 0 -1 0 0 1 0 0" + "row3" "0.690412 0.290963 0.662323 -0.988346 0.00962422 0.151919 0.920526 0.191683 0.340427 -0.932034 0.362369 0 0.982522 0.186147 0" + "row4" "0.327101 0.633918 -0.422612 -0.390648 0.765936 -0.510623 0.140674 0.823776 -0.549184 -0.0712148 0.829937 -0.553292 0.0401754 0.710938 -0.315972" + } + distances + { + "row0" "0.802368 1.85437 4.46313 1.27441 8.27917" + "row1" "1.30945 1.93396 7.73828 4 5.61987" + "row2" "2.6593 4.97009 1.47485 1.90674 4.89502" + "row3" "1.85772 8.94198 3.53444 2.14584 3.11623" + "row4" "11.8312 9.79194 9.10445 9.03679 15.8242" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row1" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row2" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row3" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" + "row4" "0 -0.5 0.5 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.5 0.5" + } + alphas + { + "row0" "0 0 0 0 0" + "row1" "0 0 0 0 0" + "row2" "0 0 0 0 0" + "row3" "0 0 0 0 0" + "row4" "0 0 0 0 0" + } + triangle_tags + { + "row0" "0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 1" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "56212" - "plane" "(5184 64 704) (4544 64 704) (4544 64 24)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "34276" + "plane" "(1344 -1312 -64) (1344 -1312 -16) (1216 -1312 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56211" - "plane" "(5184 -576 24) (4544 -576 24) (4544 -576 704)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "34275" + "plane" "(1216 -1312 -16) (1344 -1312 -16) (1344 -1320 -8)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56210" - "plane" "(4608 0 640) (5120 0 640) (5120 -512 640)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "34274" + "plane" "(1216 -1320 -8) (1216 -1320 -64) (1216 -1312 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56209" - "plane" "(4608 -512 88) (5120 -512 88) (5120 0 88)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "34273" + "plane" "(1344 -1312 -16) (1344 -1312 -64) (1344 -1320 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56208" - "plane" "(4608 -512 88) (4608 -512 640) (4608 0 640)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "34272" + "plane" "(1344 -1312 -64) (1216 -1312 -64) (1216 -1320 -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" } editor { - "color" "220 220 220" - "groupid" "155100" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "155094" + "id" "43407" side { - "id" "56219" - "plane" "(5184 64 24) (5184 -576 24) (5184 -576 704)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "33064" + "plane" "(1408 -1152 256) (1472 -1152 256) (1472 -1280 256)" + "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" "56218" - "plane" "(5184 64 704) (4544 64 704) (4544 64 24)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "33063" + "plane" "(1408 -1280 -7.62939e-06) (1472 -1280 -7.62939e-06) (1472 -1152 -7.62939e-06)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56217" - "plane" "(5184 -576 24) (4544 -576 24) (4544 -576 704)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" + "id" "33062" + "plane" "(1472 -1152 -7.62939e-06) (1472 -1280 -7.62939e-06) (1472 -1280 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -103370,31 +107389,31 @@ world } side { - "id" "56216" - "plane" "(4608 0 640) (5120 0 640) (5120 -512 640)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "33061" + "plane" "(1408 -1152 -7.62939e-06) (1472 -1152 -7.62939e-06) (1472 -1152 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56215" - "plane" "(4608 -512 88) (5120 -512 88) (5120 0 88)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "33060" + "plane" "(1472 -1280 -7.62939e-06) (1408 -1280 -7.62939e-06) (1408 -1280 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56214" - "plane" "(5120 -512 640) (5120 -512 88) (5120 0 88)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "33059" + "plane" "(1408 -1280 -7.62939e-06) (1408 -1152 -7.62939e-06) (1408 -1152 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -103403,54 +107422,53 @@ world } editor { - "color" "220 220 220" - "groupid" "155100" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "155096" + "id" "43973" side { - "id" "56225" - "plane" "(5184 64 704) (4544 64 704) (4544 64 24)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "33541" + "plane" "(1536 -1472 256) (1472 -1472 256) (1472 -1280 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56224" - "plane" "(4608 0 640) (5120 0 640) (5120 -512 640)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "33540" + "plane" "(1472 -1280 64) (1472 -1472 64) (1536 -1472 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56223" - "plane" "(4608 -512 88) (5120 -512 88) (5120 0 88)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "33539" + "plane" "(1472 -1472 64) (1472 -1280 64) (1472 -1280 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56222" - "plane" "(4608 0 640) (4608 -512 640) (4608 -512 88)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" + "id" "33538" + "plane" "(1536 -1472 64) (1472 -1472 64) (1472 -1472 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -103458,10 +107476,10 @@ world } side { - "id" "56221" - "plane" "(5120 0 88) (5120 -512 88) (5120 -512 640)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" + "id" "33537" + "plane" "(1472 -1280 64) (1536 -1312 64) (1536 -1312 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -103469,10 +107487,10 @@ world } side { - "id" "56220" - "plane" "(4608 0 88) (4608 0 640) (5120 0 640)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" + "id" "33536" + "plane" "(1536 -1312 64) (1536 -1472 64) (1536 -1472 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -103480,31 +107498,30 @@ world } editor { - "color" "220 220 220" - "groupid" "155100" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "155098" + "id" "42459" side { - "id" "56231" - "plane" "(5184 -576 24) (4544 -576 24) (4544 -576 704)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "32535" + "plane" "(-96 -2432 40) (-96 -2272 40) (-64 -2272 40)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56230" - "plane" "(4608 0 640) (5120 0 640) (5120 -512 640)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "32534" + "plane" "(-96 -2272 0) (-96 -2432 0) (-64 -2432 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -103513,20 +107530,20 @@ world } side { - "id" "56229" - "plane" "(4608 -512 88) (5120 -512 88) (5120 0 88)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "32533" + "plane" "(-96 -2432 0) (-96 -2272 0) (-96 -2272 40)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "56228" - "plane" "(4608 0 640) (4608 -512 640) (4608 -512 88)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "32532" + "plane" "(-64 -2272 0) (-64 -2432 0) (-64 -2432 40)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -103535,10 +107552,10 @@ world } side { - "id" "56227" - "plane" "(5120 0 88) (5120 -512 88) (5120 -512 640)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" + "id" "32531" + "plane" "(-64 -2432 0) (-96 -2432 0) (-96 -2432 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -103546,9 +107563,9 @@ world } side { - "id" "56226" - "plane" "(4608 -512 640) (4608 -512 88) (5120 -512 88)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "32530" + "plane" "(-96 -2272 0) (-64 -2272 0) (-64 -2272 40)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -103557,89 +107574,30 @@ world } editor { - "color" "220 220 220" - "groupid" "155100" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "147682" + "id" "42460" side { - "id" "55768" - "plane" "(2752 1.52588e-05 96) (3072 1.52588e-05 96) (3072 -320 96)" - "material" "NATURE/BLEND_GRASS_GRAVEL_02" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "32541" + "plane" "(-64 -2432 48) (-64 -2272 48) (-32 -2272 48)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "2" - "startposition" "[2752 -320 96]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - distances - { - "row0" "11.504 15.0161 17.1085 16.3327 8.30555" - "row1" "17.8935 21.4036 22.0629 23.4014 24.589" - "row2" "19.9632 23.5321 26.4527 34.1234 43.3441" - "row3" "18.559 26.2845 29.2457 40.0207 49.7986" - "row4" "21.3565 26.4204 29.2845 39.7141 47.4668" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "0 12.5 25 0 0" - "row1" "12.5 37.5 93.75 12.5 0" - "row2" "31.25 106.25 193.75 25 0" - "row3" "50 156.25 211.25 56.25 6.25" - "row4" "31.25 125 200 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "55769" - "plane" "(2752 -320 64) (3072 -320 64) (3072 1.52588e-05 64)" + "id" "32540" + "plane" "(-64 -2272 0) (-64 -2432 0) (-32 -2432 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -103649,9 +107607,9 @@ world } side { - "id" "55770" - "plane" "(2752 1.52588e-05 96) (2752 -320 96) (2752 -320 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32539" + "plane" "(-64 -2432 0) (-64 -2272 0) (-64 -2272 48)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -103660,8 +107618,8 @@ world } side { - "id" "55771" - "plane" "(3072 1.52588e-05 64) (3072 -320 64) (3072 -320 96)" + "id" "32538" + "plane" "(-32 -2272 0) (-32 -2432 0) (-32 -2432 48)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -103671,8 +107629,8 @@ world } side { - "id" "55772" - "plane" "(3072 1.52588e-05 96) (2752 1.52588e-05 96) (2752 1.52588e-05 64)" + "id" "32537" + "plane" "(-32 -2432 0) (-64 -2432 0) (-64 -2432 48)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -103682,9 +107640,9 @@ world } side { - "id" "55773" - "plane" "(3072 -320 64) (2752 -320 64) (2752 -320 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32536" + "plane" "(-64 -2272 0) (-32 -2272 0) (-32 -2272 48)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -103693,89 +107651,30 @@ world } editor { - "color" "213 106 0" - "groupid" "148044" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "147703" + "id" "42461" side { - "id" "55797" - "plane" "(3072 0 96) (3392 0 96) (3392 -320 96)" - "material" "NATURE/BLEND_GRASS_GRAVEL_02" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "32547" + "plane" "(-32 -2432 56) (-32 -2272 56) (0 -2272 56)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "2" - "startposition" "[3072 -320 96]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - distances - { - "row0" "8.30555 5.61645 0.801247 11.2046 6.53531" - "row1" "24.589 24.3274 18.7894 16.0475 22.5716" - "row2" "43.3441 43.6063 45.0102 52.1873 59.3569" - "row3" "49.7986 53.6579 58.8564 68.5224 78.8228" - "row4" "47.4668 51.5869 59.1033 72.244 82.6946" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "0 18.75 43.75 243.75 200" - "row1" "0 6.25 43.75 230 212.5" - "row2" "0 12.5 81.25 255 175" - "row3" "6.25 37.5 205 231.25 75" - "row4" "0 6.25 187.5 206.25 106.25" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "55796" - "plane" "(3072 -320 64) (3392 -320 64) (3392 0 64)" + "id" "32546" + "plane" "(-32 -2272 0) (-32 -2432 0) (0 -2432 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -103785,9 +107684,9 @@ world } side { - "id" "55795" - "plane" "(3072 0 96) (3072 -320 96) (3072 -320 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32545" + "plane" "(-32 -2432 0) (-32 -2272 0) (-32 -2272 56)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -103796,8 +107695,8 @@ world } side { - "id" "55794" - "plane" "(3392 0 64) (3392 -320 64) (3392 -320 96)" + "id" "32544" + "plane" "(0 -2272 0) (0 -2432 0) (0 -2432 56)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -103807,8 +107706,8 @@ world } side { - "id" "55793" - "plane" "(3392 0 96) (3072 0 96) (3072 0 64)" + "id" "32543" + "plane" "(0 -2432 0) (-32 -2432 0) (-32 -2432 56)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -103818,8 +107717,8 @@ world } side { - "id" "55792" - "plane" "(3392 -320 64) (3072 -320 64) (3072 -320 96)" + "id" "32542" + "plane" "(-32 -2272 0) (0 -2272 0) (0 -2272 56)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -103829,89 +107728,30 @@ world } editor { - "color" "213 106 0" - "groupid" "148044" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "147704" + "id" "42470" side { - "id" "55809" - "plane" "(3392 0 96) (3712 0 96) (3712 -320 96)" - "material" "NATURE/BLEND_GRASS_GRAVEL_02" + "id" "32607" + "plane" "(-32 -2272 80) (-32 -2176 80) (0 -2176 80)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "2" - "startposition" "[3392 -320 96]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - distances - { - "row0" "6.53531 2.13487 4.86508 8.47142 11.1003" - "row1" "22.5716 24.8233 23.809 27.9572 29.2342" - "row2" "59.3569 60.2115 63.3455 62.248 56.0144" - "row3" "78.8228 86.0599 90.9793 91.2455 83.3257" - "row4" "82.6946 88.7154 93.9125 97.2602 88.5573" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "200 81.25 12.5 0 0" - "row1" "212.5 100 18.75 0 0" - "row2" "175 43.75 0 0 0" - "row3" "75 6.25 0 0 0" - "row4" "106.25 200 175 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "55808" - "plane" "(3392 -320 64) (3712 -320 64) (3712 0 64)" + "id" "32606" + "plane" "(-32 -2176 32) (-32 -2272 32) (0 -2272 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -103921,9 +107761,9 @@ world } side { - "id" "55807" - "plane" "(3392 0 96) (3392 -320 96) (3392 -320 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32605" + "plane" "(-32 -2272 32) (-32 -2176 32) (-32 -2176 80)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -103932,9 +107772,9 @@ world } side { - "id" "55806" - "plane" "(3712 0 64) (3712 -320 64) (3712 -320 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32604" + "plane" "(0 -2176 32) (0 -2272 32) (0 -2272 80)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -103943,9 +107783,9 @@ world } side { - "id" "55805" - "plane" "(3712 0 96) (3392 0 96) (3392 0 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32603" + "plane" "(0 -2272 32) (-32 -2272 32) (-32 -2272 80)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -103954,9 +107794,9 @@ world } side { - "id" "55804" - "plane" "(3712 -320 64) (3392 -320 64) (3392 -320 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32602" + "plane" "(-32 -2176 32) (0 -2176 32) (0 -2176 80)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -103965,89 +107805,30 @@ world } editor { - "color" "213 106 0" - "groupid" "148044" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "147705" + "id" "42529" side { - "id" "55833" - "plane" "(3392 320 96) (3712 320 96) (3712 0 96)" - "material" "NATURE/BLEND_GRASS_GRAVEL_02" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "32643" + "plane" "(1408 -64 128) (1408 256 128) (1664 256 128)" + "material" "RYAN_DEV/DEV_BROWN4" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "2" - "startposition" "[3392 0 96]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - distances - { - "row0" "82.6946 88.7154 93.9125 97.2602 88.5573" - "row1" "82.7051 84.0012 80.5315 76.8796 67.4157" - "row2" "79.5404 76.5387 70.5652 58.6945 46.4415" - "row3" "83.3797 78.3208 67.0365 61.1737 47.0005" - "row4" "82.2625 85.1196 77.3626 75.2888 55.0113" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "106.25 200 175 0 0" - "row1" "225 50 0 0 0" - "row2" "225 0 0 0 0" - "row3" "175 0 0 0 0" - "row4" "25 225 50 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "55832" - "plane" "(3392 0 64) (3712 0 64) (3712 320 64)" + "id" "32642" + "plane" "(1408 256 64) (1408 -64 64) (1664 -64 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -104057,8 +107838,8 @@ world } side { - "id" "55831" - "plane" "(3392 320 96) (3392 0 96) (3392 0 64)" + "id" "32641" + "plane" "(1408 -64 64) (1408 256 64) (1408 256 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -104068,8 +107849,8 @@ world } side { - "id" "55830" - "plane" "(3712 320 64) (3712 0 64) (3712 0 96)" + "id" "32640" + "plane" "(1664 256 64) (1664 -64 64) (1664 -64 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -104079,8 +107860,8 @@ world } side { - "id" "55829" - "plane" "(3712 320 96) (3392 320 96) (3392 320 64)" + "id" "32639" + "plane" "(1408 256 64) (1664 256 64) (1664 256 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -104090,8 +107871,8 @@ world } side { - "id" "55828" - "plane" "(3712 0 64) (3392 0 64) (3392 0 96)" + "id" "32638" + "plane" "(1664 -64 64) (1408 -64 64) (1408 -64 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -104101,100 +107882,41 @@ world } editor { - "color" "213 106 0" - "groupid" "148044" + "color" "0 119 112" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "147706" + "id" "42536" side { - "id" "55839" - "plane" "(3072 320 96) (3392 320 96) (3392 0 96)" - "material" "NATURE/BLEND_GRASS_GRAVEL_02" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "32655" + "plane" "(1408 256 320) (1408 320 320) (1664 320 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" - dispinfo - { - "power" "2" - "startposition" "[3072 0 96]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - distances - { - "row0" "47.4668 51.5869 59.1033 72.244 82.6946" - "row1" "44.4186 47.6372 57.4464 73.6798 82.7051" - "row2" "40.6872 51.2597 64.3743 74.4908 79.5404" - "row3" "39.8486 57.165 68.9036 79.7486 83.3797" - "row4" "43.4646 52.6037 68.5684 77.6504 82.2625" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "0 6.25 187.5 206.25 106.25" - "row1" "0 0 18.75 231.25 225" - "row2" "0 0 50 200 225" - "row3" "0 0 0 0 175" - "row4" "0 0 0 0 25" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "55838" - "plane" "(3072 0 64) (3392 0 64) (3392 320 64)" + "id" "32654" + "plane" "(1408 320 128) (1408 256 128) (1664 256 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55837" - "plane" "(3072 320 96) (3072 0 96) (3072 0 64)" + "id" "32653" + "plane" "(1408 256 128) (1408 320 128) (1408 320 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -104204,8 +107926,8 @@ world } side { - "id" "55836" - "plane" "(3392 320 64) (3392 0 64) (3392 0 96)" + "id" "32652" + "plane" "(1664 320 128) (1664 256 128) (1664 256 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -104215,10 +107937,10 @@ world } side { - "id" "55835" - "plane" "(3392 320 96) (3072 320 96) (3072 320 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "32651" + "plane" "(1408 320 128) (1664 320 128) (1664 320 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -104226,10 +107948,10 @@ world } side { - "id" "55834" - "plane" "(3392 0 64) (3072 0 64) (3072 0 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "32650" + "plane" "(1664 256 128) (1408 256 128) (1408 256 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -104237,102 +107959,42 @@ world } editor { - "color" "213 106 0" - "groupid" "148044" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "147707" + "id" "42552" side { - "id" "55845" - "plane" "(2752 320 96) (3072 320 96) (3072 0 96)" - "material" "NATURE/BLEND_GRASS_GRAVEL_02" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "32679" + "plane" "(1664 -128 320) (1664 -32 320) (1728 -32 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" - dispinfo - { - "power" "2" - "startposition" "[2752 0 96]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - distances - { - "row0" "21.3565 26.4204 29.2845 39.7141 47.4668" - "row1" "33.4891 35.7172 32.7752 38.1383 44.4186" - "row2" "2.8403 47.914 42.1599 38.3632 40.6872" - "row3" "23.5955 59.3062 50.7801 38.5922 39.8486" - "row4" "53.6182 60.7187 54.6164 46.76 43.4646" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "31.25 125 200 0 0" - "row1" "50 118.75 223.75 37.5 0" - "row2" "62.5 150 162.5 31.25 0" - "row3" "31.25 68.75 93.75 0 0" - "row4" "0 31.25 31.25 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "55844" - "plane" "(2752 0 64) (3072 0 64) (3072 320 64)" + "id" "32678" + "plane" "(1664 -32 128) (1664 -128 128) (1728 -128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55843" - "plane" "(2752 320 96) (2752 0 96) (2752 0 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "32677" + "plane" "(1728 -32 128) (1728 -128 128) (1728 -128 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 -288] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -104340,10 +108002,10 @@ world } side { - "id" "55842" - "plane" "(3072 320 64) (3072 0 64) (3072 0 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "32676" + "plane" "(1664 -128 128) (1664 -32 128) (1664 -32 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 -288] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -104351,9 +108013,9 @@ world } side { - "id" "55841" - "plane" "(3072 320 96) (2752 320 96) (2752 320 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32675" + "plane" "(1728 -128 128) (1664 -128 128) (1664 -128 320)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -104362,9 +108024,9 @@ world } side { - "id" "55840" - "plane" "(3072 0 64) (2752 0 64) (2752 0 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32674" + "plane" "(1664 -32 128) (1728 -32 128) (1728 -32 320)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -104373,102 +108035,42 @@ world } editor { - "color" "213 106 0" - "groupid" "148044" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "147708" + "id" "42556" side { - "id" "55869" - "plane" "(3712 640 96) (3712 320 96) (3392 320 96)" - "material" "NATURE/BLEND_GRASS_GRAVEL_02" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "32691" + "plane" "(1664 224 320) (1664 320 320) (1728 320 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" - dispinfo - { - "power" "2" - "startposition" "[3392 320 96]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - distances - { - "row0" "82.2625 85.1196 77.3626 75.2888 55.0113" - "row1" "74.9956 84.7092 86.6656 89.728 70.3482" - "row2" "74.1789 78.5434 76.1951 85.5458 67.4682" - "row3" "95.5306 75.2748 60.0716 59.0545 49.7721" - "row4" "98.319 90.4589 58.2112 37.9875 26.5557" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1" - "row1" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1" - "row2" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1" - "row3" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1" - "row4" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1" - } - alphas - { - "row0" "25 225 50 0 0" - "row1" "0 50 25 0 0" - "row2" "0 0 0 0 0" - "row3" "0 0 0 0 0" - "row4" "0 0 0 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "55868" - "plane" "(3712 320 64) (3712 640 64) (3328 640 64)" + "id" "32690" + "plane" "(1664 320 128) (1664 224 128) (1728 224 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55867" - "plane" "(3392 320 96) (3392 320 64) (3328 640 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "32689" + "plane" "(1728 320 128) (1728 224 128) (1728 224 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -104476,10 +108078,10 @@ world } side { - "id" "55866" - "plane" "(3712 320 64) (3712 320 96) (3712 640 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "32688" + "plane" "(1664 224 128) (1664 320 128) (1664 320 320)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -104487,9 +108089,9 @@ world } side { - "id" "55865" - "plane" "(3328 640 96) (3328 640 64) (3712 640 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32687" + "plane" "(1728 224 128) (1664 224 128) (1664 224 320)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -104498,8 +108100,8 @@ world } side { - "id" "55864" - "plane" "(3392 320 64) (3392 320 96) (3712 320 96)" + "id" "32686" + "plane" "(1664 320 128) (1728 320 128) (1728 320 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -104509,101 +108111,52 @@ world } editor { - "color" "213 106 0" - "groupid" "148044" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "147709" + "id" "41789" side { - "id" "55875" - "plane" "(3328 640 96) (3392 320 96) (3072 320 96)" - "material" "NATURE/BLEND_GRASS_GRAVEL_02" + "id" "32112" + "plane" "(1184 512 96) (960 512 96) (960 640 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32111" + "plane" "(960 640 64) (960 512 64) (1184 512 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "2" - "startposition" "[3072 320 96]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - distances - { - "row0" "43.4646 52.6037 68.5684 77.6504 82.2625" - "row1" "46.6297 47.3046 59.7506 67.8692 74.9956" - "row2" "43.7404 45.4218 56.519 66.8632 74.1789" - "row3" "45.5725 49.6557 58.9988 82.097 95.5306" - "row4" "31.2802 38.7296 56.4284 92.9499 98.319" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "0 0 0 0 25" - "row1" "0 0 0 0 0" - "row2" "0 0 0 0 0" - "row3" "0 0 0 0 0" - "row4" "0 0 0 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "55874" - "plane" "(3392 320 64) (3328 640 64) (3072 640 64)" + "id" "32110" + "plane" "(1184 512 64) (960 512 64) (960 512 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55873" - "plane" "(3072 320 96) (3072 320 64) (3072 640 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32109" + "plane" "(1184 608 64) (1184 512 64) (1184 512 96)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -104612,8 +108165,8 @@ world } side { - "id" "55872" - "plane" "(3392 320 64) (3392 320 96) (3328 640 96)" + "id" "32108" + "plane" "(960 512 64) (960 640 64) (960 640 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -104623,9 +108176,9 @@ world } side { - "id" "55871" - "plane" "(3072 640 96) (3072 640 64) (3328 640 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32107" + "plane" "(960 640 64) (1152 640 64) (1152 640 96)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -104634,10 +108187,10 @@ world } side { - "id" "55870" - "plane" "(3072 320 64) (3072 320 96) (3392 320 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "32106" + "plane" "(1152 640 64) (1184 608 64) (1184 608 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -104645,89 +108198,31 @@ world } editor { - "color" "213 106 0" - "groupid" "148044" + "color" "0 226 179" + "groupid" "41734" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "147710" + "id" "41791" side { - "id" "55881" - "plane" "(2752 640 96) (3072 640 96) (3072 320 96)" - "material" "NATURE/BLEND_GRASS_GRAVEL_02" + "id" "32124" + "plane" "(832 -160 256) (832 -128 256) (896 -128 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "2" - "startposition" "[2752 320 96]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - distances - { - "row0" "53.6182 60.7187 54.6164 46.76 43.4646" - "row1" "42.9219 55.7531 53.4924 47.7501 46.6297" - "row2" "30.7672 49.3019 56.937 51.3292 43.7404" - "row3" "19.2516 38.6454 49.1986 51.3169 45.5725" - "row4" "7.77762 22.1455 32.1785 36.528 31.2802" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "0 31.25 31.25 0 0" - "row1" "0 0 12.5 0 0" - "row2" "0 0 0 0 0" - "row3" "0 0 0 0 0" - "row4" "0 0 0 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "55880" - "plane" "(2752 320 64) (3072 320 64) (3072 640 64)" + "id" "32123" + "plane" "(832 -128 160) (832 -160 160) (896 -160 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -104737,8 +108232,8 @@ world } side { - "id" "55879" - "plane" "(2752 640 96) (2752 320 96) (2752 320 64)" + "id" "32122" + "plane" "(896 -128 160) (896 -160 160) (896 -160 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -104748,9 +108243,9 @@ world } side { - "id" "55878" - "plane" "(3072 640 64) (3072 320 64) (3072 320 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32121" + "plane" "(832 -160 160) (832 -128 160) (832 -128 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -104759,9 +108254,9 @@ world } side { - "id" "55877" - "plane" "(3072 640 96) (2752 640 96) (2752 640 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32120" + "plane" "(896 -160 160) (832 -160 160) (832 -160 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -104770,100 +108265,40 @@ world } side { - "id" "55876" - "plane" "(3072 320 64) (2752 320 64) (2752 320 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "32119" + "plane" "(832 -128 160) (896 -128 160) (896 -128 256)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "213 106 0" - "groupid" "148044" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "147711" + "id" "41796" side { - "id" "55893" - "plane" "(3328 640 96) (3392 800 96) (3712 1088 96)" - "material" "NATURE/BLEND_GRASS_GRAVEL_02" + "id" "32149" + "plane" "(448 1.52588e-05 256) (448 320 256) (544 320 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "2" - "startposition" "[3328 640 96]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - distances - { - "row0" "98.319 90.4589 58.2112 37.9875 26.5557" - "row1" "86.101 72.2523 63.2874 20.5278 10.1993" - "row2" "73.0614 64.7419 65.6566 43.9237 32.248" - "row3" "52.6215 61.0278 69.0243 53.2467 47.2206" - "row4" "55.7753 67.8565 53.5728 50.0645 33.8807" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "0 0 0 0 0" - "row1" "0 0 0 0 0" - "row2" "0 0 0 0 0" - "row3" "0 0 0 0 0" - "row4" "0 0 0 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9" - "row2" "1 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "55892" - "plane" "(3392 800 64) (3328 640 64) (3712 640 64)" + "id" "32148" + "plane" "(448 320 64) (448 1.52588e-05 64) (544 1.52588e-05 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -104873,9 +108308,9 @@ world } side { - "id" "55891" - "plane" "(3392 800 64) (3392 800 96) (3328 640 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32147" + "plane" "(544 320 64) (544 1.52588e-05 64) (544 1.52588e-05 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -104884,8 +108319,8 @@ world } side { - "id" "55890" - "plane" "(3712 1088 96) (3712 1088 64) (3712 640 64)" + "id" "32146" + "plane" "(448 1.52588e-05 64) (448 320 64) (448 320 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -104895,8 +108330,8 @@ world } side { - "id" "55889" - "plane" "(3712 1088 64) (3712 1088 96) (3392 800 96)" + "id" "32145" + "plane" "(544 1.52588e-05 64) (448 1.52588e-05 64) (448 1.52588e-05 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -104906,8 +108341,8 @@ world } side { - "id" "55888" - "plane" "(3712 640 96) (3712 640 64) (3328 640 64)" + "id" "32144" + "plane" "(448 320 64) (544 320 64) (544 320 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -104917,21 +108352,20 @@ world } editor { - "color" "213 106 0" - "groupid" "148044" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145294" + "id" "41805" side { - "id" "55441" - "plane" "(2112 -1472 256) (1856 -1472 256) (1856 -1344 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "32155" + "plane" "(896 -64 256) (896 320 256) (544 320 256)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -104939,9 +108373,9 @@ world } side { - "id" "55440" - "plane" "(2112 -1344 192) (1856 -1344 192) (1856 -1472 192)" - "material" "DEV/REFLECTIVITY_30B" + "id" "32154" + "plane" "(544 -64 320) (544 320 320) (960 320 320)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -104950,41 +108384,41 @@ world } side { - "id" "55439" - "plane" "(2112 -1472 192) (1856 -1472 192) (1856 -1472 256)" + "id" "32153" + "plane" "(544 -64 256) (544 -64 320) (960 -64 320)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55438" - "plane" "(1856 -1344 192) (2112 -1344 192) (2112 -1344 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "32152" + "plane" "(896 -64 256) (960 -64 320) (960 320 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0.707107 0 0.707107 80.6322] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55437" - "plane" "(1856 -1472 192) (1856 -1344 192) (1856 -1344 256)" + "id" "32151" + "plane" "(896 320 256) (960 320 320) (544 320 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55436" - "plane" "(2112 -1344 192) (2112 -1472 192) (2112 -1472 256)" + "id" "32150" + "plane" "(544 320 256) (544 320 320) (544 -64 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -104994,42 +108428,43 @@ world } editor { - "color" "0 137 234" + "color" "0 226 179" + "groupid" "18855" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145298" + "id" "41827" side { - "id" "55466" - "plane" "(2368 -960 256) (2368 -992 256) (2144 -1216 256)" + "id" "32188" + "plane" "(448 512 320) (960 512 320) (960 192 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55465" - "plane" "(2112 -1216 64) (2144 -1216 64) (2368 -992 64)" + "id" "32187" + "plane" "(448 192 64) (960 192 64) (960 512 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55464" - "plane" "(2368 -960 256) (2112 -1216 256) (2112 -1216 64)" + "id" "32186" + "plane" "(960 512 64) (960 192 64) (960 192 320)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105037,10 +108472,10 @@ world } side { - "id" "55463" - "plane" "(2368 -992 64) (2144 -1216 64) (2144 -1216 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "32185" + "plane" "(448 512 64) (960 512 64) (960 512 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105048,10 +108483,10 @@ world } side { - "id" "55462" - "plane" "(2368 -992 256) (2368 -960 256) (2368 -960 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "32184" + "plane" "(960 192 64) (448 192 64) (448 192 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105059,10 +108494,10 @@ world } side { - "id" "55461" - "plane" "(2144 -1216 64) (2112 -1216 64) (2112 -1216 256)" + "id" "32182" + "plane" "(448 192 64) (448 512 64) (448 512 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105070,41 +108505,41 @@ world } editor { - "color" "0 100 229" + "color" "0 108 237" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145317" + "id" "41856" side { - "id" "55478" - "plane" "(2556 -960 201.5) (2556 -956 201.5) (2560 -956 201.5)" + "id" "32232" + "plane" "(960 320 64) (1184 320 64) (1184 512 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55477" - "plane" "(2556 -956 95.5) (2556 -960 95.5) (2560 -960 95.5)" + "id" "32231" + "plane" "(1184 320 128) (1184 320 64) (960 320 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55476" - "plane" "(2556 -960 95.5) (2556 -956 95.5) (2556 -956 201.5)" - "material" "DEV/REFLECTIVITY_10B" + "id" "32230" + "plane" "(1184 512 96) (1184 512 64) (1184 320 64)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -105113,10 +108548,10 @@ world } side { - "id" "55475" - "plane" "(2560 -956 95.5) (2560 -960 95.5) (2560 -960 201.5)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" + "id" "32229" + "plane" "(960 512 96) (960 512 64) (1184 512 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105124,10 +108559,10 @@ world } side { - "id" "55474" - "plane" "(2556 -956 95.5) (2560 -956 95.5) (2560 -956 201.5)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 16] 0.25" + "id" "32228" + "plane" "(960 320 128) (960 320 64) (960 512 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105135,31 +108570,33 @@ world } side { - "id" "55473" - "plane" "(2560 -960 95.5) (2556 -960 95.5) (2556 -960 201.5)" - "material" "TOOLS/TOOLSNODRAW" + "id" "32227" + "plane" "(1184 320 128) (960 320 128) (960 512 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 139 168" + "color" "0 226 179" + "groupid" "41848" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145328" + "id" "41864" side { - "id" "55490" - "plane" "(2368 -960 256) (2560 -960 256) (2560 -992 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "32244" + "plane" "(960 -64 128) (960 -32 128) (1408 -32 128)" + "material" "RYAN_DEV/DEV_BROWN4" + "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105167,8 +108604,8 @@ world } side { - "id" "55489" - "plane" "(2368 -992 64) (2560 -992 64) (2560 -960 64)" + "id" "32243" + "plane" "(960 -32 64) (960 -64 64) (1408 -64 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -105178,8 +108615,8 @@ world } side { - "id" "55488" - "plane" "(2368 -960 256) (2368 -992 256) (2368 -992 64)" + "id" "32242" + "plane" "(960 -64 64) (960 -32 64) (960 -32 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -105189,9 +108626,9 @@ world } side { - "id" "55487" - "plane" "(2560 -960 64) (2560 -992 64) (2560 -992 256)" - "material" "DEV/REFLECTIVITY_50B" + "id" "32241" + "plane" "(1408 -32 64) (1408 -64 64) (1408 -64 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -105200,9 +108637,9 @@ world } side { - "id" "55486" - "plane" "(2560 -960 256) (2368 -960 256) (2368 -960 64)" - "material" "DEV/REFLECTIVITY_50B" + "id" "32240" + "plane" "(960 -32 64) (1408 -32 64) (1408 -32 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -105211,8 +108648,8 @@ world } side { - "id" "55485" - "plane" "(2560 -992 64) (2368 -992 64) (2368 -992 256)" + "id" "32239" + "plane" "(1408 -64 64) (960 -64 64) (960 -64 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -105222,42 +108659,416 @@ world } editor { - "color" "0 100 229" + "color" "0 119 112" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } + hidden + { + solid + { + "id" "38583" + side + { + "id" "30387" + "plane" "(1856 1024 384) (2944 1024 384) (2944 -192 384)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30386" + "plane" "(1856 -192 320) (2944 -192 320) (2944 1024 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30385" + "plane" "(2944 1024 320) (2944 -192 320) (2944 -192 384)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30384" + "plane" "(1856 1024 320) (2944 1024 320) (2944 1024 384)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30383" + "plane" "(2944 -192 320) (1856 -192 320) (1856 -192 384)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30382" + "plane" "(1856 -192 320) (1856 1024 320) (1856 1024 384)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 198" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "38604" + side + { + "id" "30441" + "plane" "(2944 512 320) (2736 512 320) (2736 960 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30440" + "plane" "(2944 960 256) (2736 960 256) (2736 512 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30439" + "plane" "(2736 960 256) (2944 960 256) (2944 960 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30438" + "plane" "(2944 512 256) (2736 512 256) (2736 512 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30437" + "plane" "(2736 512 256) (2736 960 256) (2736 960 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30436" + "plane" "(2944 960 256) (2944 512 256) (2944 512 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 198" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "38608" + side + { + "id" "30453" + "plane" "(2736 512 320) (2720 512 320) (2720 672 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30452" + "plane" "(2736 672 256) (2720 672 256) (2720 512 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30451" + "plane" "(2720 672 256) (2736 672 256) (2736 672 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30450" + "plane" "(2736 512 256) (2720 512 256) (2720 512 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30449" + "plane" "(2720 512 256) (2720 672 256) (2720 672 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30448" + "plane" "(2736 672 256) (2736 512 256) (2736 512 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 198" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "38201" + side + { + "id" "30181" + "plane" "(1456 -2256 64) (1472 -2256 64) (1472 -2256 144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30180" + "plane" "(1472 -2768 144) (1472 -2768 64) (1456 -2768 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30179" + "plane" "(1472 -2256 144) (1472 -2256 64) (1472 -2768 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30178" + "plane" "(1472 -2256 64) (1456 -2256 64) (1456 -2768 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30177" + "plane" "(1472 -2768 144) (1456 -2768 64) (1456 -2256 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 137 234" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "38203" + side + { + "id" "30191" + "plane" "(1456 -2224 64) (1472 -2224 64) (1472 -2256 144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30190" + "plane" "(1472 -2256 144) (1472 -2256 64) (1456 -2256 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30189" + "plane" "(1472 -2256 144) (1472 -2224 64) (1472 -2256 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30188" + "plane" "(1472 -2224 64) (1456 -2224 64) (1456 -2256 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30187" + "plane" "(1456 -2224 64) (1472 -2256 144) (1456 -2256 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 137 234" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } solid { - "id" "145330" + "id" "38209" side { - "id" "55502" - "plane" "(2528 -1216 256) (2528 -992 256) (2560 -992 256)" + "id" "30215" + "plane" "(1472 -1056 256) (1472 -1152 256) (1456 -1152 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55501" - "plane" "(2528 -992 64) (2528 -1216 64) (2560 -1216 64)" + "id" "30214" + "plane" "(1472 -1152 64) (1472 -1056 64) (1456 -1056 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55500" - "plane" "(2528 -992 64) (2528 -992 256) (2528 -1216 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "30213" + "plane" "(1456 -1056 256) (1456 -1152 256) (1456 -1152 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105265,10 +109076,10 @@ world } side { - "id" "55499" - "plane" "(2560 -992 256) (2560 -992 64) (2560 -1216 64)" + "id" "30212" + "plane" "(1472 -1152 256) (1472 -1056 256) (1472 -1056 64)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105276,9 +109087,9 @@ world } side { - "id" "55498" - "plane" "(2560 -992 64) (2560 -992 256) (2528 -992 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "30211" + "plane" "(1472 -1056 256) (1456 -1056 256) (1456 -1056 64)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -105287,8 +109098,8 @@ world } side { - "id" "55497" - "plane" "(2560 -1216 256) (2560 -1216 64) (2528 -1216 64)" + "id" "30210" + "plane" "(1456 -1152 256) (1472 -1152 256) (1472 -1152 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -105298,42 +109109,42 @@ world } editor { - "color" "0 100 229" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145344" + "id" "38213" side { - "id" "55514" - "plane" "(2528 -1248 256) (2528 -1216 256) (2752 -1216 256)" + "id" "30227" + "plane" "(1456 -1056 256) (1456 -896 256) (1472 -896 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55513" - "plane" "(2528 -1216 64) (2528 -1248 64) (2752 -1248 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "30226" + "plane" "(1456 -896 192) (1456 -1056 192) (1472 -1056 192)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55512" - "plane" "(2528 -1216 64) (2528 -1216 256) (2528 -1248 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "30225" + "plane" "(1456 -1056 192) (1456 -896 192) (1456 -896 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105341,10 +109152,10 @@ world } side { - "id" "55511" - "plane" "(2752 -1216 256) (2752 -1216 64) (2752 -1248 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "30224" + "plane" "(1472 -896 192) (1472 -1056 192) (1472 -1056 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105352,9 +109163,9 @@ world } side { - "id" "55510" - "plane" "(2752 -1216 64) (2752 -1216 256) (2528 -1216 256)" - "material" "DEV/REFLECTIVITY_50B" + "id" "30223" + "plane" "(1456 -896 192) (1472 -896 192) (1472 -896 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -105363,8 +109174,8 @@ world } side { - "id" "55509" - "plane" "(2752 -1248 256) (2752 -1248 64) (2528 -1248 64)" + "id" "30222" + "plane" "(1472 -1056 192) (1456 -1056 192) (1456 -1056 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -105374,42 +109185,42 @@ world } editor { - "color" "0 100 229" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145386" + "id" "38218" side { - "id" "55532" - "plane" "(2112 -1536 256) (2112 -1216 256) (2144 -1216 256)" + "id" "30251" + "plane" "(1136 -1056 256) (1136 -896 256) (1152 -896 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55531" - "plane" "(2112 -1216 64) (2112 -1536 64) (2144 -1568 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "30250" + "plane" "(1136 -896 192) (1136 -1056 192) (1152 -1056 192)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55530" - "plane" "(2112 -1536 64) (2112 -1216 64) (2112 -1216 256)" + "id" "30249" + "plane" "(1136 -1056 192) (1136 -896 192) (1136 -896 256)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105417,10 +109228,10 @@ world } side { - "id" "55529" - "plane" "(2144 -1216 64) (2144 -1568 64) (2144 -1568 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "30248" + "plane" "(1152 -896 192) (1152 -1056 192) (1152 -1056 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105428,8 +109239,8 @@ world } side { - "id" "55528" - "plane" "(2112 -1216 64) (2144 -1216 64) (2144 -1216 256)" + "id" "30247" + "plane" "(1136 -896 192) (1152 -896 192) (1152 -896 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -105439,10 +109250,10 @@ world } side { - "id" "55527" - "plane" "(2144 -1568 64) (2112 -1536 64) (2112 -1536 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "30246" + "plane" "(1152 -1056 192) (1136 -1056 192) (1136 -1056 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105450,42 +109261,42 @@ world } editor { - "color" "0 100 229" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145389" + "id" "38219" side { - "id" "55538" - "plane" "(2144 -1568 256) (2752 -1568 256) (2752 -1600 256)" + "id" "30257" + "plane" "(1152 -1056 256) (1152 -1248 256) (1136 -1248 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55537" - "plane" "(2144 -1568 64) (2176 -1600 64) (2752 -1600 64)" + "id" "30256" + "plane" "(1152 -1248 64) (1152 -1056 64) (1136 -1056 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55536" - "plane" "(2752 -1568 64) (2752 -1600 64) (2752 -1600 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "30255" + "plane" "(1136 -1056 256) (1136 -1248 256) (1136 -1248 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105493,10 +109304,10 @@ world } side { - "id" "55535" - "plane" "(2144 -1568 64) (2752 -1568 64) (2752 -1568 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "30254" + "plane" "(1152 -1248 256) (1152 -1056 256) (1152 -1056 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105504,8 +109315,8 @@ world } side { - "id" "55534" - "plane" "(2752 -1600 64) (2176 -1600 64) (2176 -1600 256)" + "id" "30253" + "plane" "(1152 -1056 256) (1136 -1056 256) (1136 -1056 64)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -105515,10 +109326,10 @@ world } side { - "id" "55533" - "plane" "(2176 -1600 64) (2144 -1568 64) (2144 -1568 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "30252" + "plane" "(1136 -1248 256) (1152 -1248 256) (1152 -1248 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105526,31 +109337,42 @@ world } editor { - "color" "0 100 229" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145390" + "id" "38251" side { - "id" "55549" - "plane" "(2096 -1200 256) (2096 -1552 256) (2144 -1504 256)" - "material" "DEV/REFLECTIVITY_30B" + "id" "30293" + "plane" "(1792 -800 256) (1792 -576 256) (2240 -576 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55548" - "plane" "(2096 -1552 256) (2096 -1200 256) (2144 -1248 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "30292" + "plane" "(1792 -576 64) (1792 -800 64) (2240 -800 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" "30291" + "plane" "(1792 -800 64) (1792 -576 64) (1792 -576 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105558,10 +109380,10 @@ world } side { - "id" "55547" - "plane" "(2144 -1248 256) (2144 -1504 256) (2144 -1504 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "30290" + "plane" "(2240 -576 64) (2240 -800 64) (2240 -800 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105569,9 +109391,9 @@ world } side { - "id" "55546" - "plane" "(2144 -1248 256) (2144 -1248 320) (2096 -1200 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "30289" + "plane" "(1792 -576 64) (2240 -576 64) (2240 -576 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -105580,9 +109402,9 @@ world } side { - "id" "55545" - "plane" "(2096 -1552 256) (2144 -1504 320) (2144 -1504 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "30288" + "plane" "(2240 -800 64) (1792 -800 64) (1792 -800 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -105591,42 +109413,360 @@ world } editor { - "color" "0 100 229" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } + hidden + { + solid + { + "id" "37812" + side + { + "id" "30015" + "plane" "(2808 480 104) (2720 480 104) (2720 512 112)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30014" + "plane" "(2720 480 104) (2808 480 104) (2808 512 104)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30013" + "plane" "(2808 512 104) (2808 480 104) (2808 512 112)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30012" + "plane" "(2720 512 104) (2808 512 104) (2808 512 112)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30011" + "plane" "(2720 512 112) (2720 480.003 104) (2720 512 104)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 151" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "37817" + side + { + "id" "30025" + "plane" "(2672 432 104) (2656 448 112) (2720 512 112)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30024" + "plane" "(2720 480 104) (2720 512 104) (2656 448 104)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30023" + "plane" "(2720 480 104) (2720 512 112) (2720 512 104)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30022" + "plane" "(2720 512 104) (2720 512 112) (2656 448 112)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30021" + "plane" "(2672 432 104) (2656 448 104) (2656 448 112)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 151" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "37831" + side + { + "id" "30054" + "plane" "(2640 400 112) (2656 448 112) (2672 432 104)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30053" + "plane" "(2661.33 400 104) (2672 432 104) (2656 448 104)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30052" + "plane" "(2656 448 104) (2672 432 104) (2656 448 112)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30051" + "plane" "(2640 400 104) (2656 448 104) (2656 448 112)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30050" + "plane" "(2640 400 112) (2661.34 400 104) (2640 400 104)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 151" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "37832" + side + { + "id" "30058" + "plane" "(2661.33 400 104) (2656 384 100) (2640 400 112)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30057" + "plane" "(2661.33 400 104) (2640 400 104) (2656 384 100)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30056" + "plane" "(2656 384 100) (2640 400 104) (2640 400 112)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30055" + "plane" "(2661.33 400 104) (2640 400 112) (2640 400 104)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 151" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "37834" + side + { + "id" "30066" + "plane" "(2640 400 112) (2656 384 100) (2632 376 98)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 5.32617] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30065" + "plane" "(2632 376 98) (2656 384 100) (2640 400 104)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 5.32617] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30064" + "plane" "(2640 400 112) (2632 376 98) (2640 400 104)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 5.32617] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30063" + "plane" "(2640 400 104) (2656 384 100) (2640 400 112)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 5.32617] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 151" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } solid { - "id" "145397" + "id" "36843" side { - "id" "55560" - "plane" "(2096 -1200 256) (2144 -1248 256) (2400 -992 256)" - "material" "DEV/REFLECTIVITY_30B" + "id" "29394" + "plane" "(1440 -896 256) (1440 -640 256) (1472 -640 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55559" - "plane" "(2352 -944 256) (2400 -992 320) (2144 -1248 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "29393" + "plane" "(1440 -640 64) (1440 -896 64) (1472 -896 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" "55558" - "plane" "(2144 -1248 256) (2144 -1248 320) (2400 -992 320)" + "id" "29392" + "plane" "(1440 -896 64) (1440 -640 64) (1440 -640 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105634,8 +109774,19 @@ world } side { - "id" "55557" - "plane" "(2400 -992 320) (2352 -944 256) (2400 -992 256)" + "id" "29391" + "plane" "(1472 -640 64) (1472 -896 64) (1472 -896 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29390" + "plane" "(1440 -640 64) (1472 -640 64) (1472 -640 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -105645,9 +109796,9 @@ world } side { - "id" "55556" - "plane" "(2144 -1248 320) (2144 -1248 256) (2096 -1200 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "29389" + "plane" "(1472 -896 64) (1440 -896 64) (1440 -896 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -105656,20 +109807,474 @@ world } editor { - "color" "0 100 229" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } + hidden + { + solid + { + "id" "37212" + side + { + "id" "29744" + "plane" "(2808 240 64) (2624 240 64) (2624 400 104)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29743" + "plane" "(2624 240 64) (2808 240 64) (2808 400 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29742" + "plane" "(2808 400 64) (2808 240 64) (2808 400 104)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29741" + "plane" "(2624 400 64) (2808 400 64) (2808 400 104)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29740" + "plane" "(2624 400 104) (2624 239.984 64) (2624 400 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 151" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "37222" + side + { + "id" "29765" + "plane" "(2544 240 64) (2576 272 72) (2624 272 72)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0.0625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29764" + "plane" "(2624 240.003 64) (2624 272 64) (2576 272 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0.0625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29763" + "plane" "(2624 240.003 64) (2624 272 72) (2624 272 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 -0.0625] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29762" + "plane" "(2624 272 64) (2624 272 72) (2576 272 72)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29761" + "plane" "(2544 240 64) (2576 272 64) (2576 272 72)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 -0.0625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 151" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "37226" + side + { + "id" "29775" + "plane" "(2576 272.003 72) (2608 304 80) (2624 304 80)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0.0625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29774" + "plane" "(2624 272.003 72) (2624 304 72) (2608 304 72)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0.0625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29773" + "plane" "(2624 272.003 72) (2624 304 80) (2624 304 72)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 -0.0625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29772" + "plane" "(2624 304 72) (2624 304 80) (2608 304 80)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29771" + "plane" "(2576 272.003 72) (2608 304 72) (2608 304 80)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 -0.0625] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 151" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "37230" + side + { + "id" "29785" + "plane" "(2576 320 72) (2576 272 72) (2544 240 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0.0615234] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29784" + "plane" "(2576 272 64) (2576 320 64) (2544 320 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0.0615234] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29783" + "plane" "(2576 272 72) (2576 272 64) (2544 240 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -0.0615234] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29782" + "plane" "(2576 272 72) (2576 320 72) (2576 320 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29781" + "plane" "(2576 320 64) (2576 320 72) (2544 320 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -0.0615234] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 151" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "37234" + side + { + "id" "29795" + "plane" "(2608 304 80) (2576 272 72) (2576 336 72)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0.0498047] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29794" + "plane" "(2608 336 72) (2576 336 72) (2576 272 72)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0.0498047] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29793" + "plane" "(2608 304 72) (2576 272 72) (2608 304 80)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -0.0498047] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29792" + "plane" "(2608 336 80) (2608 336 72) (2608 304 72)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29791" + "plane" "(2608 336 80) (2576 336 72) (2608 336 72)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -0.0498047] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 151" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "37252" + side + { + "id" "29809" + "plane" "(2608 304 80) (2608 336 80) (2624 336 88)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0.0498047] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29808" + "plane" "(2608 336 80) (2608 304 80) (2624 336 80)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0.0498047] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29807" + "plane" "(2624 336 88) (2608 336 80) (2624 336 80)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -0.0498047] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29806" + "plane" "(2624 336 80) (2608 304 80) (2624 336 88)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 151" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "37253" + side + { + "id" "29814" + "plane" "(2608 304 80) (2624 336 88) (2624 304 80)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0.0498047] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29813" + "plane" "(2624 304 80) (2624 336 80) (2608 304 80)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0.0498047] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29811" + "plane" "(2624 304 80) (2624 336 88) (2624 336 80)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29810" + "plane" "(2608 304 80) (2624 336 80) (2624 336 88)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 151" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } solid { - "id" "145399" + "id" "36082" side { - "id" "55570" - "plane" "(2528 -992 256) (2576 -944 256) (2352 -944 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "28681" + "plane" "(1664 -128 128) (1664 320 128) (1856 320 128)" + "material" "RYAN_DEV/DEV_BROWN4" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105677,21 +110282,21 @@ world } side { - "id" "55569" - "plane" "(2400 -992 320) (2352 -944 256) (2576 -944 256)" - "material" "DEV/REFLECTIVITY_30B" + "id" "28680" + "plane" "(1664 320 64) (1664 -128 64) (1856 -128 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55568" - "plane" "(2528 -992 320) (2528 -992 256) (2400 -992 256)" + "id" "28679" + "plane" "(1664 -128 64) (1664 320 64) (1664 320 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105699,8 +110304,19 @@ world } side { - "id" "55567" - "plane" "(2528 -992 256) (2528 -992 320) (2576 -944 256)" + "id" "28678" + "plane" "(1856 320 64) (1856 -128 64) (1856 -128 128)" + "material" "RYAN_DEV/BROWN2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28677" + "plane" "(1664 320 64) (1856 320 64) (1856 320 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -105710,8 +110326,8 @@ world } side { - "id" "55566" - "plane" "(2352 -944 256) (2400 -992 320) (2400 -992 256)" + "id" "28676" + "plane" "(1856 -128 64) (1664 -128 64) (1664 -128 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -105721,31 +110337,43 @@ world } editor { - "color" "0 100 229" + "color" "0 119 112" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145401" + "id" "36498" side { - "id" "55580" - "plane" "(2528 -1248 256) (2576 -1200 256) (2576 -944 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "29191" + "plane" "(1024 -1472 64) (1024 -1152 64) (1136 -1152 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" "55579" - "plane" "(2528 -992 320) (2576 -944 256) (2576 -1200 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "29190" + "plane" "(1024 -1152 0) (1024 -1472 0) (1136 -1248 0)" + "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" "29189" + "plane" "(1024 -1472 0) (1024 -1152 0) (1024 -1152 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105753,10 +110381,10 @@ world } side { - "id" "55578" - "plane" "(2528 -1248 320) (2528 -1248 256) (2528 -992 256)" + "id" "29188" + "plane" "(1136 -1152 0) (1136 -1248 0) (1136 -1248 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105764,10 +110392,10 @@ world } side { - "id" "55577" - "plane" "(2528 -1248 256) (2528 -1248 320) (2576 -1200 256)" + "id" "29187" + "plane" "(1024 -1152 0) (1136 -1152 0) (1136 -1152 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105775,10 +110403,10 @@ world } side { - "id" "55576" - "plane" "(2576 -944 256) (2528 -992 320) (2528 -992 256)" + "id" "29186" + "plane" "(1136 -1248 0) (1024 -1472 0) (1024 -1472 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105786,40 +110414,41 @@ world } editor { - "color" "0 100 229" + "color" "0 119 112" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145408" + "id" "34295" side { - "id" "55590" - "plane" "(3072 -1200 256) (2576 -1200 256) (2528 -1248 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "28028" + "plane" "(512 1280 384) (528 1296 384) (552 1272 384)" + "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" "55589" - "plane" "(2576 -1200 256) (3072 -1200 256) (3072 -1248 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "28027" + "plane" "(552 1272 64) (528 1296 64) (512 1280 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" "55588" - "plane" "(3072 -1248 256) (2528 -1248 256) (2528 -1248 320)" + "id" "28026" + "plane" "(512 1280 64) (528 1296 64) (528 1296 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -105829,10 +110458,10 @@ world } side { - "id" "55587" - "plane" "(3072 -1248 320) (3072 -1200 256) (3072 -1248 256)" + "id" "28025" + "plane" "(528 1296 64) (552 1272 64) (552 1272 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105840,9 +110469,20 @@ world } side { - "id" "55586" - "plane" "(2528 -1248 320) (2528 -1248 256) (2576 -1200 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "28024" + "plane" "(536 1256 64) (512 1280 64) (512 1280 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28023" + "plane" "(552 1272 64) (536 1256 64) (536 1256 384)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -105851,31 +110491,44 @@ world } editor { - "color" "0 100 229" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145412" + "id" "34297" side { - "id" "55600" - "plane" "(2160 -1616 256) (2208 -1568 256) (2144 -1504 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "28040" + "plane" "(512 1280 432) (528 1296 432) (560 1264 432)" + "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" "55599" - "plane" "(2096 -1552 256) (2144 -1504 320) (2208 -1568 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "28039" + "plane" "(552 1272 384) (528 1296 384) (512 1280 384)" + "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" "28038" + "plane" "(512 1280 384) (528 1296 384) (528 1296 432)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105883,10 +110536,10 @@ world } side { - "id" "55598" - "plane" "(2208 -1568 256) (2208 -1568 320) (2144 -1504 320)" + "id" "28037" + "plane" "(528 1296 384) (552 1272 384) (560 1264 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105894,10 +110547,10 @@ world } side { - "id" "55597" - "plane" "(2144 -1504 320) (2096 -1552 256) (2144 -1504 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "28036" + "plane" "(536 1256 384) (512 1280 384) (512 1280 432)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105905,9 +110558,9 @@ world } side { - "id" "55596" - "plane" "(2208 -1568 320) (2208 -1568 256) (2160 -1616 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "28035" + "plane" "(552 1272 384) (536 1256 384) (544 1248 432)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -105916,40 +110569,42 @@ world } editor { - "color" "0 100 229" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145414" + "id" "34301" side { - "id" "55610" - "plane" "(3072 -1568 256) (2208 -1568 256) (2160 -1616 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "28052" + "plane" "(624 1168 656) (640 1184 656) (664 1160 656)" + "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" "55609" - "plane" "(2208 -1568 320) (3072 -1568 320) (3072 -1616 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "28051" + "plane" "(560 1264 432) (528 1296 432) (512 1280 432)" + "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" "55608" - "plane" "(3072 -1568 320) (2208 -1568 320) (2208 -1568 256)" + "id" "28050" + "plane" "(512 1280 432) (528 1296 432) (640 1184 656)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -105959,10 +110614,10 @@ world } side { - "id" "55607" - "plane" "(2160 -1616 256) (2208 -1568 256) (2208 -1568 320)" + "id" "28049" + "plane" "(528 1296 432) (560 1264 432) (664 1160 656)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105970,10 +110625,21 @@ world } side { - "id" "55606" - "plane" "(3072 -1568 256) (3072 -1616 256) (3072 -1568 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "28048" + "plane" "(544 1248 432) (512 1280 432) (624 1168 656)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28047" + "plane" "(560 1264 432) (544 1248 432) (648 1144 656)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -105981,42 +110647,44 @@ world } editor { - "color" "0 100 229" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145440" + "id" "34312" side { - "id" "55622" - "plane" "(2560 -1216 96) (2560 -960 96) (3072 -960 96)" - "material" "DE_CBBLE/GRASSFLOOR01" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "28088" + "plane" "(664 1160 656) (688 1136 656) (672 1120 656)" + "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" "55621" - "plane" "(2560 -960 64) (2560 -1216 64) (3072 -1216 64)" + "id" "28087" + "plane" "(784 1008 432) (800 1024 432) (768 1056 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55620" - "plane" "(2560 -1216 64) (2560 -960 64) (2560 -960 96)" + "id" "28086" + "plane" "(800 1024 432) (784 1008 432) (672 1120 656)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106024,9 +110692,9 @@ world } side { - "id" "55619" - "plane" "(3072 -960 64) (3072 -1216 64) (3072 -1216 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "28085" + "plane" "(784 1008 432) (752 1040 432) (648 1144 656)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -106035,10 +110703,10 @@ world } side { - "id" "55618" - "plane" "(2560 -960 64) (3072 -960 64) (3072 -960 96)" + "id" "28084" + "plane" "(768 1056 432) (800 1024 432) (688 1136 656)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106046,10 +110714,10 @@ world } side { - "id" "55617" - "plane" "(3072 -1216 64) (2560 -1216 64) (2560 -1216 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "28083" + "plane" "(752 1040 432) (768 1056 432) (664 1160 656)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106057,42 +110725,44 @@ world } editor { - "color" "0 115 148" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145442" + "id" "34313" side { - "id" "55634" - "plane" "(2736 -912 96) (3072 -912 96) (3072 -960 96)" - "material" "DE_CBBLE/GRASSFLOOR01" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "28094" + "plane" "(832 1120 432) (864 1088 432) (784 1008 432)" + "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" "55633" - "plane" "(2688 -960 64) (3072 -960 64) (3072 -912 64)" + "id" "28093" + "plane" "(784 1008 384) (864 1088 384) (840 1112 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55632" - "plane" "(2736 -912 64) (2736 -912 96) (2688 -960 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "28092" + "plane" "(864 1088 384) (784 1008 384) (784 1008 432)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106100,9 +110770,9 @@ world } side { - "id" "55631" - "plane" "(3072 -960 64) (3072 -960 96) (3072 -912 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "28091" + "plane" "(784 1008 384) (760 1032 384) (752 1040 432)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -106111,10 +110781,10 @@ world } side { - "id" "55630" - "plane" "(3072 -912 64) (3072 -912 96) (2736 -912 96)" + "id" "28090" + "plane" "(840 1112 384) (864 1088 384) (864 1088 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106122,10 +110792,10 @@ world } side { - "id" "55629" - "plane" "(2688 -960 64) (2688 -960 96) (3072 -960 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "28089" + "plane" "(760 1032 384) (840 1112 384) (832 1120 432)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106133,53 +110803,44 @@ world } editor { - "color" "0 115 148" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145455" - side - { - "id" "55641" - "plane" "(2496 -960 96) (2496 -704 96) (2752 -704 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "34314" side { - "id" "55640" - "plane" "(2496 -704 64) (2496 -960 64) (2688 -960 64)" + "id" "28100" + "plane" "(776 1048 384) (800 1024 384) (784 1008 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55639" - "plane" "(2496 -960 64) (2496 -704 64) (2496 -704 96)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 -256] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "28099" + "plane" "(784 1008 64) (800 1024 64) (776 1048 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" "55638" - "plane" "(2752 -704 64) (2752 -896 64) (2752 -896 96)" + "id" "28098" + "plane" "(800 1024 64) (784 1008 64) (784 1008 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106187,10 +110848,10 @@ world } side { - "id" "55637" - "plane" "(2496 -704 64) (2752 -704 64) (2752 -704 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "28097" + "plane" "(784 1008 64) (760 1032 64) (760 1032 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106198,10 +110859,10 @@ world } side { - "id" "55636" - "plane" "(2688 -960 64) (2496 -960 64) (2496 -960 96)" + "id" "28096" + "plane" "(776 1048 64) (800 1024 64) (800 1024 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106209,10 +110870,10 @@ world } side { - "id" "55635" - "plane" "(2752 -896 64) (2688 -960 64) (2688 -960 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "28095" + "plane" "(760 1032 64) (776 1048 64) (776 1048 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106220,43 +110881,33 @@ world } editor { - "color" "0 115 148" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145631" - side - { - "id" "55667" - "plane" "(2240 -832 72) (2240 -640 72) (2480 -640 72)" - "material" "TEROUST/ARPEGGIO/CRETE/TILE_STREET" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "34331" side { - "id" "55666" - "plane" "(2240 -640 64) (2240 -832 64) (2368 -960 64)" + "id" "28111" + "plane" "(776 1048 432) (792 1064 432) (568 1288 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55665" - "plane" "(2240 -832 64) (2240 -640 64) (2240 -640 72)" + "id" "28110" + "plane" "(552 1272 432) (568 1288 432) (680 1176 656)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106264,20 +110915,9 @@ world } side { - "id" "55664" - "plane" "(2480 -640 64) (2480 -960 64) (2480 -960 72)" + "id" "28109" + "plane" "(792 1064 432) (776 1048 432) (664 1160 656)" "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" "55663" - "plane" "(2240 -640 64) (2480 -640 64) (2480 -640 72)" - "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -106286,10 +110926,10 @@ world } side { - "id" "55662" - "plane" "(2480 -960 64) (2368 -960 64) (2368 -960 72)" + "id" "28108" + "plane" "(680 1176 656) (568 1288 432) (792 1064 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106297,10 +110937,10 @@ world } side { - "id" "55661" - "plane" "(2368 -960 64) (2240 -832 64) (2240 -832 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "28107" + "plane" "(776 1048 432) (552 1272 432) (664 1160 656)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106308,42 +110948,43 @@ world } editor { - "color" "0 139 240" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145641" + "id" "34334" side { - "id" "55692" - "plane" "(2240 -832 72) (2208 -800 72) (2240 -800 72)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "28124" + "plane" "(840 1112 480) (864 1088 480) (784 1008 480)" + "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" "55691" - "plane" "(2208 -800 64) (2240 -832 64) (2240 -800 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "28122" + "plane" "(784 1008 432) (784 1008 480) (864 1088 480)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55690" - "plane" "(2240 -832 64) (2208 -800 64) (2208 -800 72)" - "material" "TOOLS/TOOLSNODRAW" + "id" "28121" + "plane" "(760 1032 480) (784 1008 480) (784 1008 432)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -106352,8 +110993,8 @@ world } side { - "id" "55689" - "plane" "(2240 -800 64) (2240 -832 64) (2240 -832 72)" + "id" "28120" + "plane" "(864 1088 432) (864 1088 480) (840 1112 480)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -106363,10 +111004,10 @@ world } side { - "id" "55688" - "plane" "(2208 -800 64) (2240 -800 64) (2240 -800 72)" + "id" "28119" + "plane" "(784 1008 432) (864 1088 432) (840 1112 480)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106374,43 +111015,44 @@ world } editor { - "color" "0 139 240" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "145710" + "id" "34344" side { - "id" "55693" - "plane" "(1952 -1024 64) (2208 -800 70) (2368 -960 70)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "28134" + "plane" "(512 1280 480) (588 1356 480) (612 1332 480)" + "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" "55694" - "plane" "(2208 -800 64) (1952 -1024 64) (2112 -1184 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "28133" + "plane" "(588 1356 432) (588 1356 480) (512 1280 480)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55696" - "plane" "(2368 -960 64) (2368 -960 70) (2208 -800 70)" + "id" "28132" + "plane" "(612 1332 480) (588 1356 480) (588 1356 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106418,10 +111060,10 @@ world } side { - "id" "55697" - "plane" "(1952 -1024 64) (2208 -800 64) (2208 -800 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "28131" + "plane" "(512 1280 432) (512 1280 480) (536 1256 480)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106429,8 +111071,8 @@ world } side { - "id" "55698" - "plane" "(2112 -1184 64) (2368 -960 70) (2368 -960 64)" + "id" "28130" + "plane" "(588 1356 432) (512 1280 432) (536 1256 480)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -106440,43 +111082,44 @@ world } editor { - "color" "0 160 161" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "140872" + "id" "34364" side { - "id" "54596" - "plane" "(2848 -544 224) (2848 -528 224) (3072 -528 224)" + "id" "28146" + "plane" "(816 1136 528) (864 1088 528) (768 992 528)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54595" - "plane" "(2848 -528 96) (2848 -544 96) (3072 -544 96)" + "id" "28145" + "plane" "(784 1008 480) (864 1088 480) (840 1112 480)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54594" - "plane" "(2848 -544 96) (2848 -528 96) (2848 -528 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "28144" + "plane" "(864 1088 480) (784 1008 480) (768 992 528)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106484,9 +111127,9 @@ world } side { - "id" "54593" - "plane" "(3072 -528 96) (3072 -544 96) (3072 -544 224)" - "material" "TOOLS/TOOLSNODRAW" + "id" "28143" + "plane" "(784 1008 480) (760 1032 480) (720 1040 528)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -106495,10 +111138,10 @@ world } side { - "id" "54592" - "plane" "(2848 -528 96) (3072 -528 96) (3072 -528 224)" - "material" "BRICK/INFWLLG" - "uaxis" "[1 0 0 0] 0.25" + "id" "28142" + "plane" "(840 1112 480) (864 1088 480) (864 1088 528)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106506,10 +111149,10 @@ world } side { - "id" "54591" - "plane" "(3072 -544 96) (2848 -544 96) (2848 -544 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "28141" + "plane" "(760 1032 480) (840 1112 480) (816 1136 528)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106517,20 +111160,22 @@ world } editor { - "color" "0 199 244" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "140876" + "id" "34369" side { - "id" "54608" - "plane" "(3072 -896 224) (3072 -912 224) (2848 -912 224)" + "id" "28158" + "plane" "(496 1264 528) (588 1356 528) (636 1308 528)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106538,10 +111183,10 @@ world } side { - "id" "54607" - "plane" "(3072 -912 96) (3072 -896 96) (2848 -896 96)" + "id" "28157" + "plane" "(612 1332 480) (588 1356 480) (512 1280 480)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106549,9 +111194,9 @@ world } side { - "id" "54606" - "plane" "(3072 -896 96) (3072 -912 96) (3072 -912 224)" - "material" "TOOLS/TOOLSNODRAW" + "id" "28156" + "plane" "(512 1280 480) (588 1356 480) (588 1356 528)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -106560,10 +111205,10 @@ world } side { - "id" "54605" - "plane" "(2848 -912 96) (2848 -896 96) (2848 -896 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "28155" + "plane" "(536 1256 480) (512 1280 480) (496 1264 528)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106571,10 +111216,10 @@ world } side { - "id" "54604" - "plane" "(3072 -912 96) (2848 -912 96) (2848 -912 224)" - "material" "BRICK/INFWLLG" - "uaxis" "[-1 0 0 0] 0.25" + "id" "28154" + "plane" "(588 1356 480) (612 1332 480) (636 1308 528)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106582,10 +111227,10 @@ world } side { - "id" "54603" - "plane" "(2848 -896 96) (3072 -896 96) (3072 -896 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "28153" + "plane" "(612 1332 480) (536 1256 480) (544 1216 528)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106593,42 +111238,44 @@ world } editor { - "color" "0 199 244" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "141378" + "id" "34374" side { - "id" "54812" - "plane" "(3072 -1600 256) (2752 -1600 256) (2752 -1216 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "28170" + "plane" "(748 1076 544) (804 1020 544) (768 984 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54811" - "plane" "(3072 -1216 64) (2752 -1216 64) (2752 -1600 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "28169" + "plane" "(768 984 528) (804 1020 528) (748 1076 528)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54810" - "plane" "(3072 -1600 64) (2752 -1600 64) (2752 -1600 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "28168" + "plane" "(804 1020 528) (768 984 528) (768 984 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106636,10 +111283,10 @@ world } side { - "id" "54809" - "plane" "(2752 -1216 64) (3072 -1216 64) (3072 -1216 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "28167" + "plane" "(768 984 528) (712 1040 528) (712 1040 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106647,9 +111294,9 @@ world } side { - "id" "54808" - "plane" "(2752 -1600 64) (2752 -1216 64) (2752 -1216 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "28166" + "plane" "(748 1076 528) (804 1020 528) (804 1020 544)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -106658,10 +111305,10 @@ world } side { - "id" "54807" - "plane" "(3072 -1216 64) (3072 -1600 64) (3072 -1600 256)" + "id" "28165" + "plane" "(712 1040 528) (748 1076 528) (748 1076 544)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106669,42 +111316,44 @@ world } editor { - "color" "0 137 234" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "141403" + "id" "34380" side { - "id" "54813" - "plane" "(2480 -704 112) (2480 -640 112) (2496 -640 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "28182" + "plane" "(688 1136 664) (748 1076 544) (712 1040 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54814" - "plane" "(2480 -640 64) (2480 -704 64) (2496 -704 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "28181" + "plane" "(652 1100 648) (712 1040 528) (748 1076 528)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54815" - "plane" "(2480 -704 64) (2480 -640 64) (2480 -640 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "28180" + "plane" "(748 1076 528) (712 1040 528) (712 1040 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106712,9 +111361,9 @@ world } side { - "id" "54816" - "plane" "(2496 -640 64) (2496 -704 64) (2496 -704 112)" - "material" "DEV/REFLECTIVITY_50B" + "id" "28179" + "plane" "(652 1100 664) (712 1040 544) (712 1040 528)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -106723,10 +111372,10 @@ world } side { - "id" "54817" - "plane" "(2480 -640 64) (2496 -640 64) (2496 -640 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "28178" + "plane" "(688 1136 648) (748 1076 528) (748 1076 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106734,10 +111383,10 @@ world } side { - "id" "54818" - "plane" "(2496 -704 64) (2480 -704 64) (2480 -704 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "28177" + "plane" "(652 1100 648) (688 1136 648) (688 1136 664)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106745,133 +111394,133 @@ world } editor { - "color" "0 133 142" - "visgroupid" "23" - "visgroupid" "24" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "141413" + "id" "34384" side { - "id" "54866" - "plane" "(2480 -704 116) (2480 -640 116) (2496 -640 116)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "id" "28200" + "plane" "(488 1264 544) (584 1360 544) (640 1304 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54865" - "plane" "(2478 -640 112) (2478 -706 112) (2498 -706 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "id" "28199" + "plane" "(640 1304 528) (584 1360 528) (488 1264 528)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54864" - "plane" "(2478 -706 112) (2478 -640 112) (2480 -640 116)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "28198" + "plane" "(488 1264 528) (584 1360 528) (584 1360 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54863" - "plane" "(2498 -640 112) (2498 -706 112) (2496 -704 116)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "28197" + "plane" "(584 1360 528) (640 1304 528) (640 1304 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54862" - "plane" "(2478 -640 112) (2498 -640 112) (2496 -640 116)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "28196" + "plane" "(544 1208 528) (488 1264 528) (488 1264 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54861" - "plane" "(2498 -706 112) (2478 -706 112) (2480 -704 116)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "28195" + "plane" "(640 1304 528) (544 1208 528) (544 1208 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 133 142" - "visgroupid" "23" - "visgroupid" "24" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "141430" + "id" "34385" side { - "id" "54878" - "plane" "(2752 -320 192) (2752 32 192) (2760 32 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "28206" + "plane" "(604 1148 664) (544 1208 544) (580 1244 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54877" - "plane" "(2752 32 96) (2752 -320 96) (2760 -320 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "28205" + "plane" "(640 1184 648) (580 1244 528) (544 1208 528)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54876" - "plane" "(2752 -320 96) (2752 32 96) (2752 32 192)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28204" + "plane" "(544 1208 528) (580 1244 528) (580 1244 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54875" - "plane" "(2760 32 96) (2760 -320 96) (2760 -320 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "28203" + "plane" "(640 1184 664) (580 1244 544) (580 1244 528)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106879,10 +111528,10 @@ world } side { - "id" "54874" - "plane" "(2752 32 96) (2760 32 96) (2760 32 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "28202" + "plane" "(604 1148 648) (544 1208 528) (544 1208 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -106890,195 +111539,66 @@ world } side { - "id" "54873" - "plane" "(2760 -320 96) (2752 -320 96) (2752 -320 192)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28201" + "plane" "(640 1184 648) (604 1148 648) (604 1148 664)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "141459" + "id" "34392" side { - "id" "54903" - "plane" "(1856 -192 96) (1856 320 96) (2752 320 96)" - "material" "DEV/DEV_BLENDMEASURE2" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "28218" + "plane" "(640 1184 664) (688 1136 664) (652 1100 664)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "4" - "startposition" "[1856 -192 96]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1" - "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0" - "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1" - "row11" "0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1" - "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - distances - { - "row0" "0 5 0 0 0 0 0 0 5 5 0 0 0 0 0 0 0" - "row1" "0 10 0 0 0 0 0 0 5 5 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 5" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 5 5" - "row5" "0 0 0 0 0 0 0 0 0 0 0 5 0 5 5 5 5" - "row6" "0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 5 5" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 10 5" - "row8" "0 0 0 0 5 0 0 0 0 0 0 0 0 0 5 0 5" - "row9" "0 0 0 0 10 0 0 0 0 0 0 0 0 0 5 0 0" - "row10" "0 0 0 0 5 5 0 0 0 0 0 0 0 0 0 0 5" - "row11" "0 0 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0" - "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5" - "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row9" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row10" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row11" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row12" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row13" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row14" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row15" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row16" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "251.5 239.25 190.25 60.75 0 0 11.75 143 214.75 176.25 67.75 0 0 0 0 0 66" - "row1" "249.75 223.5 169.25 24 0 0 0 130.75 216.5 200.75 90.5 0 0 25.75 0 41.5 158.75" - "row2" "235.75 207.75 151.75 24 0 0 0 99.25 202.5 237.5 197.25 41.5 48.5 111.5 122 155.25 216.5" - "row3" "225.25 165.75 120.25 20.5 6.5 0 0 20.5 155.25 202.5 153.5 17 0 99.25 151.75 204.25 241" - "row4" "206 130.75 48.5 0 0 0 0 7 76.5 136 99.25 0 0 116.75 207.75 241 251.5" - "row5" "214.75 125.5 29.25 0 22.25 0 7 28 99.25 111.5 66 3 55.5 199 239.25 251.5 255" - "row6" "223.5 151.75 55.5 90.5 148.25 143 90.5 157 195.5 158.75 64.25 43.25 132.5 227 255 255 255" - "row7" "218.25 129 60.75 153.5 255 230.5 81.75 146.5 158.75 81.75 21 24 118.5 206 244.5 253.25 255" - "row8" "193.75 87 67.75 234 255 249.75 71.75 66 101 85.25 25.75 66 127.25 181.5 220 237.5 253.25" - "row9" "171 48.5 97.5 255 249.75 227 98 36.25 48.5 62.5 10 57.25 83.5 136 174.5 206 241" - "row10" "148.25 15.25 81.75 234 249.75 211.25 31.5 62.5 71.25 22.25 0 17 57.25 106.25 141.25 167.5 216.5" - "row11" "150 8.25 97.5 197.25 253.25 178 67.75 139.5 122 90.5 60.75 97.5 136 169.25 171 172.75 214.75" - "row12" "164 36.25 129 209.5 220 169.25 144.75 181.5 190.25 181.5 171 193.75 221.75 234 223.5 220 241" - "row13" "153.5 46.75 146.5 220 242.75 214.75 209.5 227 237.5 237.5 235.75 241 251.5 253.25 249.75 244.5 253.25" - "row14" "153.5 94 172.75 237.5 253.25 241 235.75 248 248 255 253.25 253.25 255 255 255 255 255" - "row15" "195.5 151.75 218.25 246.25 255 253.25 249.75 253.25 255 255 255 255 255 255 255 255 255" - "row16" "228.75 216.5 244.5 255 255 255 253.25 255 255 255 255 255 255 255 255 255 255" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row8" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row9" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row10" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row11" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row12" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row13" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row14" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row15" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "54902" - "plane" "(1856 320 64) (1856 -192 64) (2752 -192 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "28217" + "plane" "(652 1100 648) (688 1136 648) (640 1184 648)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54901" - "plane" "(1856 320 64) (1856 320 96) (1856 -192 96)" + "id" "28216" + "plane" "(688 1136 648) (652 1100 648) (652 1100 664)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54900" - "plane" "(2752 320 64) (2752 320 96) (1856 320 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "28215" + "plane" "(652 1100 648) (604 1148 648) (604 1148 664)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107086,10 +111606,10 @@ world } side { - "id" "54899" - "plane" "(1856 -192 64) (1856 -192 96) (2752 -192 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "28214" + "plane" "(640 1184 648) (688 1136 648) (688 1136 664)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107097,54 +111617,44 @@ world } side { - "id" "54898" - "plane" "(2752 -192 64) (2752 -192 96) (2752 320 96)" + "id" "28213" + "plane" "(604 1148 648) (640 1184 648) (640 1184 664)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 217 190" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "141460" - side - { - "id" "54915" - "plane" "(2752 -320 224) (2752 -304 224) (2768 -304 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "34396" side { - "id" "54914" - "plane" "(2752 -304 192) (2752 -320 192) (2768 -320 192)" + "id" "28228" + "plane" "(760 1096 544) (1152 1488 544) (992 1648 544)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54913" - "plane" "(2752 -320 192) (2752 -304 192) (2752 -304 224)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "28227" + "plane" "(600 1256 544) (992 1648 544) (1072 1568 704)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107152,184 +111662,188 @@ world } side { - "id" "54912" - "plane" "(2768 -304 192) (2768 -320 192) (2768 -320 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28226" + "plane" "(1152 1488 544) (760 1096 544) (680 1176 704)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54911" - "plane" "(2752 -304 192) (2768 -304 192) (2768 -304 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28225" + "plane" "(1072 1568 704) (992 1648 544) (1152 1488 544)" + "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" "54910" - "plane" "(2768 -320 192) (2752 -320 192) (2752 -320 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28224" + "plane" "(760 1096 544) (600 1256 544) (680 1176 704)" + "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" "0 137 234" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "141464" + "id" "34448" side { - "id" "54927" - "plane" "(2752 16 224) (2752 32 224) (2768 32 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "28255" + "plane" "(624 1232 544) (600 1256 544) (584 1240 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54926" - "plane" "(2752 32 192) (2752 16 192) (2768 16 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "28254" + "plane" "(644 1180 664) (584 1240 544) (600 1256 544)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54925" - "plane" "(2752 16 192) (2752 32 192) (2752 32 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28253" + "plane" "(660 1196 664) (600 1256 544) (624 1232 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54924" - "plane" "(2768 32 192) (2768 16 192) (2768 16 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28252" + "plane" "(608 1216 544) (584 1240 544) (644 1180 664)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54923" - "plane" "(2752 32 192) (2768 32 192) (2768 32 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28251" + "plane" "(644 1180 664) (660 1196 664) (680 1176 664)" + "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" "54922" - "plane" "(2768 16 192) (2752 16 192) (2752 16 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28250" + "plane" "(624 1232 544) (608 1216 544) (664 1160 664)" + "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 137 234" - "visgroupshown" "1" - "visgroupautoshown" "1" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" } } solid { - "id" "141467" + "id" "34449" side { - "id" "54951" - "plane" "(3088 -320 192) (2760 -320 192) (2760 -312 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "28261" + "plane" "(744 1080 544) (760 1096 544) (736 1120 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54950" - "plane" "(3088 -312 96) (2760 -312 96) (2760 -320 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "28260" + "plane" "(700 1156 664) (760 1096 544) (744 1080 544)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54949" - "plane" "(3088 -320 96) (2760 -320 96) (2760 -320 192)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[-1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28259" + "plane" "(736 1120 544) (760 1096 544) (700 1156 664)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54948" - "plane" "(2760 -312 96) (3088 -312 96) (3088 -312 192)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[-1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28258" + "plane" "(684 1140 664) (744 1080 544) (720 1104 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54947" - "plane" "(2760 -320 96) (2760 -312 96) (2760 -312 192)" + "id" "28257" + "plane" "(680 1176 664) (700 1156 664) (684 1140 664)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54946" - "plane" "(3088 -312 96) (3088 -320 96) (3088 -320 192)" + "id" "28256" + "plane" "(720 1104 544) (736 1120 544) (680 1176 664)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107337,118 +111851,111 @@ world } editor { - "color" "0 137 234" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "141471" + "id" "34469" side { - "id" "54963" - "plane" "(3072 -320 224) (3072 -304 224) (3088 -304 224)" + "id" "28267" + "plane" "(644 1180 664) (660 1196 664) (680 1176 704)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "54962" - "plane" "(3072 -304 192) (3072 -320 192) (3088 -320 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54961" - "plane" "(3072 -320 192) (3072 -304 192) (3072 -304 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28266" + "plane" "(680 1176 704) (700 1156 664) (684 1140 664)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54960" - "plane" "(3088 -304 192) (3088 -320 192) (3088 -320 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28265" + "plane" "(680 1176 704) (660 1196 664) (700 1156 664)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54959" - "plane" "(3072 -304 192) (3088 -304 192) (3088 -304 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28263" + "plane" "(684 1140 664) (700 1156 664) (660 1196 664)" + "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" "54958" - "plane" "(3088 -320 192) (3072 -320 192) (3072 -320 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "28262" + "plane" "(644 1180 664) (680 1176 704) (684 1140 664)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "141602" + "id" "34486" side { - "id" "54975" - "plane" "(2752 -528 96) (2752 -320 96) (3072 -320 96)" - "material" "TEROUST/ARPEGGIO/CRETE/TILE_STREET" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "28285" + "plane" "(720 1224 708) (756 1260 708) (764 1252 708)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -40] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54974" - "plane" "(2752 -320 64) (2752 -528 64) (3072 -528 64)" + "id" "28284" + "plane" "(764 1252 696) (756 1260 696) (720 1224 696)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -40] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54973" - "plane" "(2752 -528 64) (2752 -320 64) (2752 -320 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "28283" + "plane" "(720 1224 696) (756 1260 696) (756 1260 708)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107456,10 +111963,10 @@ world } side { - "id" "54972" - "plane" "(3072 -320 64) (3072 -528 64) (3072 -528 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "28282" + "plane" "(756 1260 696) (764 1252 696) (764 1252 708)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107467,10 +111974,10 @@ world } side { - "id" "54971" - "plane" "(2752 -320 64) (3072 -320 64) (3072 -320 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "28281" + "plane" "(728 1216 696) (720 1224 696) (720 1224 708)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107478,9 +111985,9 @@ world } side { - "id" "54970" - "plane" "(3072 -528 64) (2752 -528 64) (2752 -528 96)" - "material" "DEV/GRAYGRID" + "id" "28280" + "plane" "(764 1252 696) (728 1216 696) (728 1216 708)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -107489,42 +111996,44 @@ world } editor { - "color" "0 251 136" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "142101" + "id" "34493" side { - "id" "55104" - "plane" "(-100 456 0) (-128 768 0) (-192 768 0)" + "id" "28297" + "plane" "(716 1228 712) (752 1264 712) (768 1248 712)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -41.9115] 0.25" - "vaxis" "[0 -1 0 -2.7832] 0.25" + "uaxis" "[0 -1 0 -40] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55105" - "plane" "(-128 768 64) (-100 456 64) (-192 448 64)" - "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" - "uaxis" "[0.992495 0.0863039 0.0866296 -182.597] 0.25" - "vaxis" "[0.0866296 -0.996241 0 83.7947] 0.25" + "id" "28296" + "plane" "(764 1252 708) (756 1260 708) (720 1224 708)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -40] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55106" - "plane" "(-192 448 0) (-192 768 0) (-192 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 2.7832] 0.25" + "id" "28295" + "plane" "(720 1224 708) (756 1260 708) (752 1264 712)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107532,10 +112041,10 @@ world } side { - "id" "55107" - "plane" "(-100 456 64) (-128 768 64) (-128 768 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 2.7832] 0.25" + "id" "28294" + "plane" "(756 1260 708) (764 1252 708) (768 1248 712)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107543,21 +112052,21 @@ world } side { - "id" "55108" - "plane" "(-192 448 0) (-192 448 64) (-100 456 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "28293" + "plane" "(728 1216 708) (720 1224 708) (716 1228 712)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55109" - "plane" "(-128 768 0) (-128 768 64) (-192 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -41.9115] 0.25" + "id" "28292" + "plane" "(732 1212 712) (768 1248 712) (764 1252 708)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107565,44 +112074,44 @@ world } editor { - "color" "220 220 220" - "groupid" "142100" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "142102" + "id" "34498" side { - "id" "55110" - "plane" "(-8 476 0) (-96 784 0) (-128 768 0)" + "id" "28309" + "plane" "(600 1256 544) (992 1648 544) (1152 1488 544)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -41.9115] 0.25" - "vaxis" "[0 -1 0 -2.7832] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55111" - "plane" "(-96 784 64) (-8 476 64) (-100 456 64)" - "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" - "uaxis" "[0.954873 0.207581 0.21243 -451.061] 0.25" - "vaxis" "[0.21243 -0.977176 0 99.3413] 0.25" + "id" "28308" + "plane" "(760 1096 64) (1152 1488 64) (992 1648 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55112" - "plane" "(-100 456 0) (-128 768 0) (-128 768 64)" + "id" "28307" + "plane" "(600 1256 64) (992 1648 64) (992 1648 544)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 2.7832] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107610,10 +112119,10 @@ world } side { - "id" "55113" - "plane" "(-8 476 64) (-96 784 64) (-96 784 0)" + "id" "28306" + "plane" "(1152 1488 64) (760 1096 64) (760 1096 544)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 2.7832] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107621,21 +112130,21 @@ world } side { - "id" "55114" - "plane" "(-100 456 0) (-100 456 64) (-8 476 64)" + "id" "28305" + "plane" "(992 1648 64) (1152 1488 64) (1152 1488 544)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55115" - "plane" "(-96 784 0) (-96 784 64) (-128 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -41.9115] 0.25" + "id" "28304" + "plane" "(760 1096 64) (600 1256 64) (600 1256 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107643,44 +112152,44 @@ world } editor { - "color" "220 220 220" - "groupid" "142100" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "142103" + "id" "34532" side { - "id" "55116" - "plane" "(80 504 0) (-32 816 0) (-96 784 0)" + "id" "28327" + "plane" "(624 1232 432) (672 1184 432) (656 1168 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -41.9115] 0.25" - "vaxis" "[0 -1 0 -2.7832] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55117" - "plane" "(-32 816 64) (80 504 64) (-8 476 64)" - "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" - "uaxis" "[0.908067 0.288931 0.303204 -630.686] 0.25" - "vaxis" "[0.303204 -0.952926 0 56.0731] 0.25" + "id" "28326" + "plane" "(672 1184 192) (624 1232 192) (608 1216 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55118" - "plane" "(-8 476 0) (-96 784 0) (-96 784 64)" + "id" "28325" + "plane" "(624 1232 192) (672 1184 192) (672 1184 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 2.7832] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107688,10 +112197,10 @@ world } side { - "id" "55119" - "plane" "(80 504 64) (-32 816 64) (-32 816 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 2.7832] 0.25" + "id" "28324" + "plane" "(656 1168 192) (608 1216 192) (608 1216 432)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107699,21 +112208,21 @@ world } side { - "id" "55120" - "plane" "(-8 476 0) (-8 476 64) (80 504 64)" + "id" "28323" + "plane" "(608 1216 192) (624 1232 192) (624 1232 432)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55121" - "plane" "(-32 816 0) (-32 816 64) (-96 784 64)" + "id" "28322" + "plane" "(672 1184 192) (656 1168 192) (656 1168 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -41.9115] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107721,44 +112230,44 @@ world } editor { - "color" "220 220 220" - "groupid" "142100" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "142104" + "id" "34534" side { - "id" "55122" - "plane" "(164 552 0) (0 832 0) (-32 816 0)" + "id" "28339" + "plane" "(552 1272 432) (568 1288 432) (624 1232 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -41.9115] 0.25" - "vaxis" "[0 -1 0 -2.7832] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55123" - "plane" "(0 832 64) (164 552 64) (80 504 64)" - "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" - "uaxis" "[0.753846 0.430769 0.496139 -916.673] 0.25" - "vaxis" "[0.496139 -0.868243 0 847.614] 0.25" + "id" "28338" + "plane" "(624 1232 64) (568 1288 64) (552 1272 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" "55124" - "plane" "(80 504 0) (-32 816 0) (-32 816 64)" + "id" "28337" + "plane" "(552 1272 64) (568 1288 64) (568 1288 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 2.7832] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107766,10 +112275,10 @@ world } side { - "id" "55125" - "plane" "(164 552 64) (0 832 64) (0 832 0)" + "id" "28336" + "plane" "(568 1288 64) (624 1232 64) (624 1232 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 2.7832] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107777,21 +112286,21 @@ world } side { - "id" "55126" - "plane" "(80 504 0) (80 504 64) (164 552 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "28335" + "plane" "(608 1216 64) (552 1272 64) (552 1272 432)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55127" - "plane" "(0 832 0) (0 832 64) (-32 816 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -41.9115] 0.25" + "id" "28334" + "plane" "(624 1232 64) (608 1216 64) (608 1216 432)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107799,44 +112308,44 @@ world } editor { - "color" "220 220 220" - "groupid" "142100" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "142105" + "id" "34539" side { - "id" "55128" - "plane" "(240 608 0) (64 864 0) (0 832 0)" + "id" "28345" + "plane" "(672 1184 432) (704 1152 432) (688 1136 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -41.9115] 0.25" - "vaxis" "[0 -1 0 -2.7832] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55129" - "plane" "(64 864 64) (240 608 64) (164 552 64)" - "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" - "uaxis" "[0.648115 0.477558 0.593199 -975.471] 0.25" - "vaxis" "[0.593199 -0.805056 0 644.425] 0.25" + "id" "28344" + "plane" "(704 1152 64) (672 1184 64) (656 1168 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" "55130" - "plane" "(164 552 0) (0 832 0) (0 832 64)" + "id" "28343" + "plane" "(672 1184 64) (704 1152 64) (704 1152 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 2.7832] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107844,10 +112353,10 @@ world } side { - "id" "55131" - "plane" "(240 608 64) (64 864 64) (64 864 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 2.7832] 0.25" + "id" "28342" + "plane" "(688 1136 64) (656 1168 64) (656 1168 432)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107855,21 +112364,21 @@ world } side { - "id" "55132" - "plane" "(164 552 0) (164 552 64) (240 608 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "28341" + "plane" "(656 1168 64) (672 1184 64) (672 1184 432)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55133" - "plane" "(64 864 0) (64 864 64) (0 832 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -41.9115] 0.25" + "id" "28340" + "plane" "(704 1152 64) (688 1136 64) (688 1136 432)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107877,44 +112386,44 @@ world } editor { - "color" "220 220 220" - "groupid" "142100" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "142106" + "id" "34548" side { - "id" "55134" - "plane" "(320 672 0) (128 896 0) (64 864 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -41.9115] 0.25" - "vaxis" "[0 -1 0 -2.7832] 0.25" + "id" "28357" + "plane" "(704 1152 112) (768 1088 112) (752 1072 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55135" - "plane" "(128 896 64) (320 672 64) (240 608 64)" - "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" - "uaxis" "[0.609756 0.487805 0.624695 -971.629] 0.25" - "vaxis" "[0.624695 -0.780869 0 555.366] 0.25" + "id" "28356" + "plane" "(768 1088 64) (704 1152 64) (688 1136 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" "55136" - "plane" "(240 608 0) (64 864 0) (64 864 64)" + "id" "28355" + "plane" "(704 1152 64) (768 1088 64) (768 1088 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 2.7832] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107922,10 +112431,10 @@ world } side { - "id" "55137" - "plane" "(320 672 64) (128 896 64) (128 896 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 2.7832] 0.25" + "id" "28354" + "plane" "(752 1072 64) (688 1136 64) (688 1136 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107933,21 +112442,21 @@ world } side { - "id" "55138" - "plane" "(240 608 0) (240 608 64) (320 672 64)" + "id" "28353" + "plane" "(688 1136 64) (704 1152 64) (704 1152 112)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55139" - "plane" "(128 896 0) (128 896 64) (64 864 64)" + "id" "28352" + "plane" "(768 1088 64) (752 1072 64) (752 1072 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -41.9115] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -107955,592 +112464,645 @@ world } editor { - "color" "220 220 220" - "groupid" "142100" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143056" + "id" "34549" side { - "id" "55163" - "plane" "(-192 452 70) (-100 456 70) (-100 452 70)" - "material" "CONCRETE/ROADPARKINGLOT" - "uaxis" "[1 0 0 -921] 0.25" - "vaxis" "[0 -1 0 158] 0.25" + "id" "28363" + "plane" "(768 1088 432) (792 1064 432) (776 1048 432)" + "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" "55162" - "plane" "(-100 456 64) (-192 452 64) (-100 452 64)" + "id" "28362" + "plane" "(776 1048 64) (792 1064 64) (768 1088 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55161" - "plane" "(-192 452 70) (-192 452 64) (-100 456 64)" + "id" "28361" + "plane" "(792 1064 64) (776 1048 64) (776 1048 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55160" - "plane" "(-100 456 70) (-100 456 64) (-100 452 64)" + "id" "28360" + "plane" "(768 1088 64) (792 1064 64) (792 1064 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55158" - "plane" "(-100 452 70) (-100 452 64) (-192 452 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "28359" + "plane" "(776 1048 64) (752 1072 64) (752 1072 432)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28358" + "plane" "(752 1072 64) (768 1088 64) (768 1088 432)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143060" + "id" "34551" side { - "id" "55175" - "plane" "(-8.00001 476 70) (0 452 70) (-100 452 70)" - "material" "CONCRETE/ROADPARKINGLOT" - "uaxis" "[1 0 0 -921] 0.25" - "vaxis" "[0 -1 0 158] 0.25" + "id" "28375" + "plane" "(704 1152 240) (768 1088 240) (752 1072 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55174" - "plane" "(0 452 64) (-8.00001 476 64) (-100 456 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "id" "28374" + "plane" "(768 1088 192) (704 1152 192) (688 1136 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55173" - "plane" "(-100 456 70) (-100 452 70) (-100 452 64)" + "id" "28373" + "plane" "(704 1152 192) (768 1088 192) (768 1088 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55172" - "plane" "(0 452 70) (-8.00001 476 70) (-8.00001 476 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "28372" + "plane" "(752 1072 192) (688 1136 192) (688 1136 240)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55171" - "plane" "(-8.00001 476 70) (-100 456 70) (-100 456 64)" + "id" "28371" + "plane" "(688 1136 192) (704 1152 192) (704 1152 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55170" - "plane" "(-100 452 70) (0 452 70) (0 452 64)" + "id" "28370" + "plane" "(768 1088 192) (752 1072 192) (752 1072 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143064" + "id" "34552" side { - "id" "55187" - "plane" "(80 448 70) (0 452 70) (-8 476 70)" - "material" "CONCRETE/ROADPARKINGLOT" - "uaxis" "[1 0 0 -921] 0.25" - "vaxis" "[0 -1 0 158] 0.25" + "id" "28387" + "plane" "(704 1152 432) (768 1088 432) (752 1072 432)" + "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" "55186" - "plane" "(80 504 64) (-8 476 64) (0 452 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "id" "28386" + "plane" "(768 1088 320) (704 1152 320) (688 1136 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55185" - "plane" "(0 452 70) (0 452 64) (-8 476 64)" + "id" "28385" + "plane" "(704 1152 320) (768 1088 320) (768 1088 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55184" - "plane" "(80 504 70) (80 504 64) (80 448 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "28384" + "plane" "(752 1072 320) (688 1136 320) (688 1136 432)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55183" - "plane" "(-8 476 70) (-8 476 64) (80 504 64)" + "id" "28383" + "plane" "(688 1136 320) (704 1152 320) (704 1152 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55182" - "plane" "(80 448 70) (80 448 64) (0 452 64)" + "id" "28382" + "plane" "(768 1088 320) (752 1072 320) (752 1072 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143066" + "id" "34555" side { - "id" "55199" - "plane" "(128 448 70) (80 448 70) (80 504 70)" - "material" "CONCRETE/ROADPARKINGLOT" - "uaxis" "[1 0 0 -921] 0.25" - "vaxis" "[0 -1 0 158] 0.25" + "id" "28399" + "plane" "(704 1152 192) (768 1088 192) (760 1080 192)" + "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" "55198" - "plane" "(164 552 64) (80 504 64) (80 448 64)" + "id" "28398" + "plane" "(768 1088 112) (704 1152 112) (696 1144 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55197" - "plane" "(80 448 70) (80 448 64) (80 504 64)" + "id" "28397" + "plane" "(704 1152 112) (768 1088 112) (768 1088 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55196" - "plane" "(164 552 70) (164 552 64) (128 448 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "28396" + "plane" "(760 1080 112) (696 1144 112) (696 1144 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55195" - "plane" "(80 504 70) (80 504 64) (164 552 64)" + "id" "28395" + "plane" "(696 1144 112) (704 1152 112) (704 1152 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55194" - "plane" "(128 448 70) (128 448 64) (80 448 64)" + "id" "28394" + "plane" "(768 1088 112) (760 1080 112) (760 1080 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143068" + "id" "34562" side { - "id" "55211" - "plane" "(128 448 70) (164 552 70) (240 608 70)" - "material" "CONCRETE/ROADPARKINGLOT" - "uaxis" "[1 0 0 -921] 0.25" - "vaxis" "[0 -1 0 158] 0.25" + "id" "28411" + "plane" "(704 1152 320) (768 1088 320) (760 1080 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" "55210" - "plane" "(164 552 64) (128 448 64) (384 640 64)" + "id" "28410" + "plane" "(768 1088 240) (704 1152 240) (696 1144 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55209" - "plane" "(128 448 64) (164 552 64) (164 552 70)" + "id" "28409" + "plane" "(704 1152 240) (768 1088 240) (768 1088 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55208" - "plane" "(240 608 64) (384 640 64) (384 640 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "28408" + "plane" "(760 1080 240) (696 1144 240) (696 1144 320)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55207" - "plane" "(164 552 64) (240 608 64) (240 608 70)" + "id" "28407" + "plane" "(696 1144 240) (704 1152 240) (704 1152 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55206" - "plane" "(384 640 64) (128 448 64) (128 448 70)" + "id" "28406" + "plane" "(768 1088 240) (760 1080 240) (760 1080 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143071" + "id" "34563" side { - "id" "55223" - "plane" "(240 608 70) (320 672 70) (384 640 70)" - "material" "CONCRETE/ROADPARKINGLOT" - "uaxis" "[1 0 0 -921] 0.25" - "vaxis" "[0 -1 0 158] 0.25" + "id" "28423" + "plane" "(688 1136 112) (752 1072 112) (744 1064 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55222" - "plane" "(384 640 64) (320 672 64) (240 608 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 48] 0.25" + "id" "28422" + "plane" "(752 1072 104) (688 1136 104) (680 1128 104)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55221" - "plane" "(240 608 64) (240 608 70) (384 640 70)" + "id" "28421" + "plane" "(688 1136 104) (752 1072 104) (752 1072 112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55220" - "plane" "(384 640 64) (384 640 70) (320 672 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "28420" + "plane" "(744 1064 104) (680 1128 104) (680 1128 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55219" - "plane" "(320 672 64) (320 672 70) (240 608 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "28419" + "plane" "(680 1128 104) (688 1136 104) (688 1136 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28418" + "plane" "(752 1072 104) (744 1064 104) (744 1064 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143073" + "id" "34566" side { - "id" "55233" - "plane" "(384 736 70) (384 640 70) (320 672 70)" - "material" "CONCRETE/ROADPARKINGLOT" - "uaxis" "[1 0 0 -921] 0.25" - "vaxis" "[0 -1 0 158] 0.25" + "id" "28435" + "plane" "(688 1136 240) (752 1072 240) (744 1064 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55232" - "plane" "(384 736 64) (320 672 64) (384 640 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 48] 0.25" + "id" "28434" + "plane" "(752 1072 232) (688 1136 232) (680 1128 232)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55231" - "plane" "(320 672 70) (384 640 70) (384 640 64)" + "id" "28433" + "plane" "(688 1136 232) (752 1072 232) (752 1072 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55230" - "plane" "(384 640 70) (384 736 70) (384 736 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "28432" + "plane" "(744 1064 232) (680 1128 232) (680 1128 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55229" - "plane" "(384 736 70) (320 672 70) (320 672 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "28431" + "plane" "(680 1128 232) (688 1136 232) (688 1136 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28430" + "plane" "(752 1072 232) (744 1064 232) (744 1064 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143079" + "id" "34567" side { - "id" "55243" - "plane" "(0 448 70) (0 452 70) (80 448 70)" - "material" "CONCRETE/ROADPARKINGLOT" - "uaxis" "[1 0 0 -921] 0.25" - "vaxis" "[0 -1 0 158] 0.25" + "id" "28447" + "plane" "(568 1288 64) (792 1064 64) (760 1032 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55242" - "plane" "(0 448 64) (80 448 64) (0 452 64)" + "id" "28446" + "plane" "(792 1064 56) (568 1288 56) (536 1256 56)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 48] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55241" - "plane" "(0 452 70) (0 452 64) (80 448 64)" + "id" "28445" + "plane" "(568 1288 56) (792 1064 56) (792 1064 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55240" - "plane" "(0 448 70) (0 448 64) (0 452 64)" + "id" "28444" + "plane" "(760 1032 56) (536 1256 56) (536 1256 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55239" - "plane" "(80 448 70) (80 448 64) (0 448 64)" + "id" "28443" + "plane" "(536 1256 56) (568 1288 56) (568 1288 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28442" + "plane" "(792 1064 56) (760 1032 56) (760 1032 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" + "color" "217 230 0" + "groupid" "61486" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143095" + "id" "33768" side { - "id" "55255" - "plane" "(592 944 70) (736 1088 70) (784 1040 70)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "27696" + "plane" "(0 -2752 80) (0 -2720 80) (128 -2720 80)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -108549,62 +113111,62 @@ world } side { - "id" "55254" - "plane" "(736 1088 64) (592 944 64) (640 896 64)" + "id" "27695" + "plane" "(0 -2720 0) (0 -2752 0) (128 -2752 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55253" - "plane" "(592 944 64) (592 944 70) (640 896 70)" + "id" "27694" + "plane" "(0 -2752 0) (0 -2720 0) (0 -2720 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55252" - "plane" "(784 1040 64) (784 1040 70) (736 1088 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "27693" + "plane" "(128 -2720 0) (128 -2752 0) (128 -2752 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55251" - "plane" "(736 1088 64) (736 1088 70) (592 944 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "27692" + "plane" "(0 -2720 0) (128 -2720 0) (128 -2720 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55250" - "plane" "(640 896 64) (640 896 70) (784 1040 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "27691" + "plane" "(128 -2752 0) (0 -2752 0) (0 -2752 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" + "color" "0 252 129" "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" @@ -108612,12 +113174,12 @@ world } solid { - "id" "143098" + "id" "33785" side { - "id" "55267" - "plane" "(608 928 70) (448 768 70) (432 784 70)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "27720" + "plane" "(-576 -2752 160) (-576 -2432 216) (-480 -2432 216)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -108626,478 +113188,483 @@ world } side { - "id" "55266" - "plane" "(592 944 64) (432 784 64) (448 768 64)" + "id" "27719" + "plane" "(-576 -2432 0) (-576 -2752 0) (-480 -2752 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55265" - "plane" "(448 768 70) (448 768 64) (432 784 64)" + "id" "27718" + "plane" "(-576 -2432 216) (-576 -2752 160) (-576 -2752 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55264" - "plane" "(592 944 70) (592 944 64) (608 928 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "27717" + "plane" "(-480 -2432 0) (-480 -2752 0) (-480 -2752 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55263" - "plane" "(432 784 70) (432 784 64) (592 944 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "27716" + "plane" "(-576 -2432 0) (-480 -2432 0) (-480 -2432 216)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55262" - "plane" "(608 928 70) (608 928 64) (448 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "27715" + "plane" "(-480 -2752 0) (-576 -2752 0) (-576 -2752 160)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 252 129" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143495" + "id" "33790" side { - "id" "55279" - "plane" "(2752 -136 224) (2752 -120 224) (2768 -120 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "27732" + "plane" "(-384 -2752 160) (-384 -2432 216) (-352 -2432 216)" + "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" "55278" - "plane" "(2752 -120 192) (2752 -136 192) (2768 -136 192)" + "id" "27731" + "plane" "(-384 -2432 0) (-384 -2752 0) (-352 -2752 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55277" - "plane" "(2752 -136 192) (2752 -120 192) (2752 -120 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27730" + "plane" "(-384 -2432 216) (-384 -2752 160) (-384 -2752 0)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55276" - "plane" "(2768 -120 192) (2768 -136 192) (2768 -136 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27729" + "plane" "(-352 -2432 0) (-352 -2752 0) (-352 -2752 160)" + "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" "55275" - "plane" "(2752 -120 192) (2768 -120 192) (2768 -120 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27728" + "plane" "(-384 -2432 0) (-352 -2432 0) (-352 -2432 216)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55274" - "plane" "(2768 -136 192) (2752 -136 192) (2752 -136 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27727" + "plane" "(-352 -2752 0) (-384 -2752 0) (-384 -2752 160)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 252 129" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143496" + "id" "33791" side { - "id" "55291" - "plane" "(2752 -176 224) (2752 -160 224) (2768 -160 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "27744" + "plane" "(-480 -2752 160) (-480 -2432 216) (-384 -2432 216)" + "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" "55290" - "plane" "(2752 -160 192) (2752 -176 192) (2768 -176 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "27743" + "plane" "(-480 -2432 128) (-480 -2752 128) (-384 -2752 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55289" - "plane" "(2752 -176 192) (2752 -160 192) (2752 -160 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27742" + "plane" "(-480 -2432 216) (-480 -2752 160) (-480 -2752 128)" + "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" "55288" - "plane" "(2768 -160 192) (2768 -176 192) (2768 -176 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27741" + "plane" "(-384 -2432 128) (-384 -2752 128) (-384 -2752 160)" + "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" "55287" - "plane" "(2752 -160 192) (2768 -160 192) (2768 -160 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27740" + "plane" "(-480 -2432 128) (-384 -2432 128) (-384 -2432 216)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55286" - "plane" "(2768 -176 192) (2752 -176 192) (2752 -176 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27739" + "plane" "(-384 -2752 128) (-480 -2752 128) (-480 -2752 160)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 252 129" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143527" + "id" "33794" side { - "id" "55327" - "plane" "(2752 64 224) (2768 64 224) (2768 48 224)" + "id" "27756" + "plane" "(-480 -2752 32) (-480 -2432 32) (-384 -2432 32)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 -4] 0.25" - "vaxis" "[1 0 0 12] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55326" - "plane" "(2752 48 192) (2768 48 192) (2768 64 192)" + "id" "27755" + "plane" "(-480 -2432 0) (-480 -2752 0) (-384 -2752 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -4] 0.25" - "vaxis" "[1 0 0 -20] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55325" - "plane" "(2752 64 192) (2752 64 224) (2752 48 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27754" + "plane" "(-480 -2752 0) (-480 -2432 0) (-480 -2432 32)" + "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" "55324" - "plane" "(2768 48 192) (2768 48 224) (2768 64 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27753" + "plane" "(-384 -2432 0) (-384 -2752 0) (-384 -2752 32)" + "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" "55323" - "plane" "(2768 64 192) (2768 64 224) (2752 64 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27752" + "plane" "(-480 -2432 0) (-384 -2432 0) (-384 -2432 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55322" - "plane" "(2752 48 192) (2752 48 224) (2768 48 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27751" + "plane" "(-384 -2752 0) (-480 -2752 0) (-480 -2752 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 252 129" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143540" + "id" "33796" side { - "id" "55339" - "plane" "(2896 -320 224) (2896 -304 224) (2912 -304 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "27768" + "plane" "(-480 -2736 128) (-480 -2448 128) (-384 -2448 128)" + "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" "55338" - "plane" "(2896 -304 192) (2896 -320 192) (2912 -320 192)" + "id" "27767" + "plane" "(-480 -2448 32) (-480 -2736 32) (-384 -2736 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55337" - "plane" "(2896 -320 192) (2896 -304 192) (2896 -304 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27766" + "plane" "(-480 -2736 32) (-480 -2448 32) (-480 -2448 128)" + "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" "55336" - "plane" "(2912 -304 192) (2912 -320 192) (2912 -320 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27765" + "plane" "(-384 -2448 32) (-384 -2736 32) (-384 -2736 128)" + "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" "55335" - "plane" "(2896 -304 192) (2912 -304 192) (2912 -304 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27764" + "plane" "(-480 -2448 32) (-384 -2448 32) (-384 -2448 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55334" - "plane" "(2912 -320 192) (2896 -320 192) (2896 -320 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27763" + "plane" "(-384 -2736 32) (-480 -2736 32) (-480 -2736 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 146 131" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143541" + "id" "33804" side { - "id" "55351" - "plane" "(2928 -320 224) (2928 -304 224) (2944 -304 224)" + "id" "27780" + "plane" "(-576 -2752 168) (-576 -2432 224) (-352 -2432 224)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55350" - "plane" "(2928 -304 192) (2928 -320 192) (2944 -320 192)" + "id" "27779" + "plane" "(-576 -2432 216) (-576 -2752 160) (-352 -2752 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55349" - "plane" "(2928 -320 192) (2928 -304 192) (2928 -304 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27778" + "plane" "(-576 -2752 160) (-576 -2432 216) (-576 -2432 224)" + "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" "55348" - "plane" "(2944 -304 192) (2944 -320 192) (2944 -320 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[0 1 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27777" + "plane" "(-352 -2432 216) (-352 -2752 160) (-352 -2752 168)" + "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" "55347" - "plane" "(2928 -304 192) (2944 -304 192) (2944 -304 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27776" + "plane" "(-576 -2432 216) (-352 -2432 216) (-352 -2432 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55346" - "plane" "(2944 -320 192) (2928 -320 192) (2928 -320 224)" - "material" "TEROUST/ARPEGGIO/CHURCH/SMALLBRICK_BROWNISH" - "uaxis" "[1 0 0 50] 0.188" - "vaxis" "[0 0 -1 297] 0.188" + "id" "27775" + "plane" "(-352 -2752 160) (-576 -2752 160) (-576 -2752 168)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 162 123" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143638" + "id" "33865" side { - "id" "55357" - "plane" "(2736 -544 224) (2736 -528 224) (2760 -528 224)" + "id" "27902" + "plane" "(-352 -2496 256) (-352 -2432 256) (0 -2432 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55356" - "plane" "(2736 -528 96) (2736 -544 96) (2760 -544 96)" + "id" "27901" + "plane" "(-352 -2432 0) (-352 -2496 0) (0 -2496 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55355" - "plane" "(2736 -544 96) (2736 -528 96) (2736 -528 224)" - "material" "BRICK/INFWLLG" - "uaxis" "[0 -1 0 0] 0.25" + "id" "27900" + "plane" "(-352 -2496 0) (-352 -2432 0) (-352 -2432 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109105,10 +113672,10 @@ world } side { - "id" "55354" - "plane" "(2760 -544 96) (2736 -544 96) (2736 -544 224)" - "material" "BRICK/INFWLLG" - "uaxis" "[1 0 0 0] 0.25" + "id" "27899" + "plane" "(0 -2432 0) (0 -2496 0) (0 -2496 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109116,9 +113683,9 @@ world } side { - "id" "55353" - "plane" "(2736 -528 96) (2760 -528 96) (2760 -528 224)" - "material" "BRICK/INFWLLG" + "id" "27898" + "plane" "(-352 -2432 0) (0 -2432 0) (0 -2432 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -109127,10 +113694,10 @@ world } side { - "id" "55352" - "plane" "(2760 -528 96) (2760 -544 96) (2760 -544 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "27897" + "plane" "(0 -2496 0) (-352 -2496 0) (-352 -2496 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109138,42 +113705,43 @@ world } editor { - "color" "0 199 244" + "color" "0 252 129" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143639" + "id" "33866" side { - "id" "55363" - "plane" "(2760 -528 224) (2848 -528 224) (2848 -544 224)" + "id" "27914" + "plane" "(-352 -2688 256) (-352 -2624 256) (0 -2624 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55362" - "plane" "(2760 -544 96) (2848 -544 96) (2848 -528 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27913" + "plane" "(-352 -2624 176) (-352 -2688 176) (0 -2688 176)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55361" - "plane" "(2848 -528 96) (2848 -544 96) (2848 -544 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "27912" + "plane" "(-352 -2688 176) (-352 -2624 176) (-352 -2624 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109181,10 +113749,10 @@ world } side { - "id" "55360" - "plane" "(2848 -544 96) (2760 -544 96) (2760 -544 224)" + "id" "27911" + "plane" "(0 -2624 176) (0 -2688 176) (0 -2688 256)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109192,9 +113760,9 @@ world } side { - "id" "55359" - "plane" "(2760 -528 96) (2848 -528 96) (2848 -528 224)" - "material" "BRICK/INFWLLG" + "id" "27910" + "plane" "(-352 -2624 176) (0 -2624 176) (0 -2624 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -109203,10 +113771,10 @@ world } side { - "id" "55358" - "plane" "(2760 -544 96) (2760 -528 96) (2760 -528 224)" + "id" "27909" + "plane" "(0 -2688 176) (-352 -2688 176) (-352 -2688 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109214,19 +113782,20 @@ world } editor { - "color" "0 199 244" + "color" "0 252 129" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143642" + "id" "33868" side { - "id" "55369" - "plane" "(2736 -912 224) (2736 -896 224) (2760 -896 224)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27926" + "plane" "(-16 -2688 64) (-16 -2624 64) (0 -2624 64)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -109235,8 +113804,8 @@ world } side { - "id" "55368" - "plane" "(2736 -896 96) (2736 -912 96) (2760 -912 96)" + "id" "27925" + "plane" "(-16 -2624 -16) (-16 -2688 -16) (0 -2688 -16)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -109246,9 +113815,9 @@ world } side { - "id" "55367" - "plane" "(2736 -912 96) (2736 -896 96) (2736 -896 224)" - "material" "BRICK/INFWLLG" + "id" "27924" + "plane" "(-16 -2688 -16) (-16 -2624 -16) (-16 -2624 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -109257,10 +113826,10 @@ world } side { - "id" "55366" - "plane" "(2736 -896 96) (2760 -896 96) (2760 -896 224)" - "material" "BRICK/INFWLLG" - "uaxis" "[1 0 0 0] 0.25" + "id" "27923" + "plane" "(0 -2624 -16) (0 -2688 -16) (0 -2688 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109268,9 +113837,9 @@ world } side { - "id" "55365" - "plane" "(2760 -912 96) (2736 -912 96) (2736 -912 224)" - "material" "BRICK/INFWLLG" + "id" "27922" + "plane" "(-16 -2624 -16) (0 -2624 -16) (0 -2624 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -109279,10 +113848,10 @@ world } side { - "id" "55364" - "plane" "(2760 -896 96) (2760 -912 96) (2760 -912 224)" + "id" "27921" + "plane" "(0 -2688 -16) (-16 -2688 -16) (-16 -2688 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109290,18 +113859,19 @@ world } editor { - "color" "0 199 244" + "color" "0 252 129" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143643" + "id" "33870" side { - "id" "55375" - "plane" "(2760 -896 224) (2848 -896 224) (2848 -912 224)" + "id" "27938" + "plane" "(-32 -2688 176) (-32 -2624 176) (-16 -2624 176)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -109311,8 +113881,8 @@ world } side { - "id" "55374" - "plane" "(2760 -912 96) (2848 -912 96) (2848 -896 96)" + "id" "27937" + "plane" "(-32 -2624 64) (-32 -2688 64) (-16 -2688 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -109322,8 +113892,8 @@ world } side { - "id" "55373" - "plane" "(2848 -896 96) (2848 -912 96) (2848 -912 224)" + "id" "27936" + "plane" "(-32 -2688 64) (-32 -2624 64) (-32 -2624 176)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -109333,10 +113903,10 @@ world } side { - "id" "55372" - "plane" "(2760 -896 96) (2848 -896 96) (2848 -896 224)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "27935" + "plane" "(-16 -2624 64) (-16 -2688 64) (-16 -2688 176)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109344,9 +113914,9 @@ world } side { - "id" "55371" - "plane" "(2848 -912 96) (2760 -912 96) (2760 -912 224)" - "material" "BRICK/INFWLLG" + "id" "27934" + "plane" "(-32 -2624 64) (-16 -2624 64) (-16 -2624 176)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -109355,10 +113925,10 @@ world } side { - "id" "55370" - "plane" "(2760 -912 96) (2760 -896 96) (2760 -896 224)" + "id" "27933" + "plane" "(-16 -2688 64) (-32 -2688 64) (-32 -2688 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109366,20 +113936,21 @@ world } editor { - "color" "0 199 244" + "color" "0 134 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143650" + "id" "33877" side { - "id" "55387" - "plane" "(-4144 -5184 5713.33) (-4144 2112 5713.33) (4176 2112 5713.33)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" + "id" "27950" + "plane" "(-32 -2624 256) (-32 -2592 256) (0 -2592 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109387,76 +113958,76 @@ world } side { - "id" "55386" - "plane" "(-4144 2112 5542.67) (-4144 2112 5713.33) (-4144 -5184 5713.33)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27949" + "plane" "(-32 -2592 0) (-32 -2624 0) (0 -2624 0)" + "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" "55385" - "plane" "(4176 -5184 5542.67) (4176 -5184 5713.33) (4176 2112 5713.33)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "27948" + "plane" "(-32 -2624 0) (-32 -2592 0) (-32 -2592 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55384" - "plane" "(4176 2112 5542.67) (4176 2112 5713.33) (-4144 2112 5713.33)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27947" + "plane" "(0 -2592 0) (0 -2624 0) (0 -2624 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55383" - "plane" "(-4144 -5184 5542.67) (-4144 -5184 5713.33) (4176 -5184 5713.33)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27946" + "plane" "(-32 -2592 0) (0 -2592 0) (0 -2592 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55382" - "plane" "(-4144 2112 5542.67) (-4144 -5184 5542.67) (4176 -5184 5542.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "27945" + "plane" "(0 -2624 0) (-32 -2624 0) (-32 -2624 256)" + "material" "DEV/REFLECTIVITY_30B" + "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" "143662" + "color" "0 252 129" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143652" + "id" "33880" side { - "id" "55393" - "plane" "(-4144 2112 -1454.67) (-4144 -5184 -1454.67) (4176 -5184 -1454.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" + "id" "27962" + "plane" "(-32 -2592 96) (-32 -2496 96) (0 -2496 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109464,241 +114035,241 @@ world } side { - "id" "55392" - "plane" "(-4144 -5184 -1284) (-4144 -5184 -1454.67) (-4144 2112 -1454.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27961" + "plane" "(-32 -2496 0) (-32 -2592 0) (0 -2592 0)" + "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" "55391" - "plane" "(4176 2112 -1284) (4176 2112 -1454.67) (4176 -5184 -1454.67)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "27960" + "plane" "(-32 -2592 0) (-32 -2496 0) (-32 -2496 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55390" - "plane" "(-4144 2112 -1284) (-4144 2112 -1454.67) (4176 2112 -1454.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27959" + "plane" "(0 -2496 0) (0 -2592 0) (0 -2592 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55389" - "plane" "(4176 -5184 -1284) (4176 -5184 -1454.67) (-4144 -5184 -1454.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27958" + "plane" "(-32 -2496 0) (0 -2496 0) (0 -2496 96)" + "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" "55388" - "plane" "(-4144 -5184 -1284) (-4144 2112 -1284) (4176 2112 -1284)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "27957" + "plane" "(0 -2592 0) (-32 -2592 0) (-32 -2592 96)" + "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 220 220" - "groupid" "143662" + "color" "0 252 129" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143654" + "id" "33883" side { - "id" "55399" - "plane" "(-4144 -5184 5542.67) (-4144 -5184 -1284) (-4144 2112 -1284)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27974" + "plane" "(-32 -2592 240) (-32 -2496 240) (0 -2496 240)" + "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" "55398" - "plane" "(-4144 2112 5542.67) (-4144 2112 -1284) (-4080 2112 -1284)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27973" + "plane" "(-32 -2496 176) (-32 -2592 176) (0 -2592 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55397" - "plane" "(-4080 -5184 -1284) (-4144 -5184 -1284) (-4144 -5184 5542.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27972" + "plane" "(-32 -2592 176) (-32 -2496 176) (-32 -2496 240)" + "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" "55396" - "plane" "(-4080 -5184 5542.67) (-4144 -5184 5542.67) (-4144 2112 5542.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "27971" + "plane" "(0 -2496 176) (0 -2592 176) (0 -2592 240)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55395" - "plane" "(-4080 2112 -1284) (-4144 2112 -1284) (-4144 -5184 -1284)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "27970" + "plane" "(-32 -2496 176) (0 -2496 176) (0 -2496 240)" + "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" "55394" - "plane" "(-4080 2112 5542.67) (-4080 2112 -1284) (-4080 -5184 -1284)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27969" + "plane" "(0 -2592 176) (-32 -2592 176) (-32 -2592 240)" + "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 220 220" - "groupid" "143662" + "color" "0 252 129" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143656" + "id" "33885" side { - "id" "55405" - "plane" "(4176 2112 5542.67) (4176 2112 -1284) (4176 -5184 -1284)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27986" + "plane" "(-32 -2592 176) (-32 -2496 176) (-16 -2496 176)" + "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" "55404" - "plane" "(4112 2112 -1284) (4176 2112 -1284) (4176 2112 5542.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27985" + "plane" "(-32 -2496 96) (-32 -2592 96) (-16 -2592 96)" + "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" "55403" - "plane" "(4176 -5184 5542.67) (4176 -5184 -1284) (4112 -5184 -1284)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27984" + "plane" "(-32 -2592 96) (-32 -2496 96) (-32 -2496 176)" + "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" "55402" - "plane" "(4112 2112 5542.67) (4176 2112 5542.67) (4176 -5184 5542.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "27983" + "plane" "(-16 -2496 96) (-16 -2592 96) (-16 -2592 176)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55401" - "plane" "(4112 -5184 -1284) (4176 -5184 -1284) (4176 2112 -1284)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "27982" + "plane" "(-32 -2496 96) (-16 -2496 96) (-16 -2496 176)" + "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" "55400" - "plane" "(4112 -5184 5542.67) (4112 -5184 -1284) (4112 2112 -1284)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27981" + "plane" "(-16 -2592 96) (-32 -2592 96) (-32 -2592 176)" + "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 220 220" - "groupid" "143662" + "color" "0 134 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143658" + "id" "33970" side { - "id" "55411" - "plane" "(-4080 2112 -1284) (4112 2112 -1284) (4112 2112 5542.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27998" + "plane" "(-352 -2624 256) (-352 -2496 256) (-320 -2496 256)" + "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" "55410" - "plane" "(-4080 2048 5542.67) (-4080 2112 5542.67) (4112 2112 5542.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" + "id" "27997" + "plane" "(-352 -2496 176) (-352 -2624 176) (-320 -2624 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109706,76 +114277,76 @@ world } side { - "id" "55409" - "plane" "(4112 2112 -1284) (-4080 2112 -1284) (-4080 2048 -1284)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "27996" + "plane" "(-352 -2624 176) (-352 -2496 176) (-352 -2496 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55408" - "plane" "(-4080 2048 -1284) (-4080 2112 -1284) (-4080 2112 5542.67)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "27995" + "plane" "(-320 -2496 176) (-320 -2624 176) (-320 -2624 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55407" - "plane" "(4112 2112 5542.67) (4112 2112 -1284) (4112 2048 -1284)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27994" + "plane" "(-352 -2496 176) (-320 -2496 176) (-320 -2496 256)" + "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" "55406" - "plane" "(4112 2048 -1284) (-4080 2048 -1284) (-4080 2048 5542.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27993" + "plane" "(-320 -2624 176) (-352 -2624 176) (-352 -2624 256)" + "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 220 220" - "groupid" "143662" + "color" "0 252 129" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "143660" + "id" "33452" side { - "id" "55417" - "plane" "(4112 -5184 -1284) (-4080 -5184 -1284) (-4080 -5184 5542.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27679" + "plane" "(-352 -2752 256) (-352 -2688 256) (0 -2688 256)" + "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" "55416" - "plane" "(4112 -5184 5542.67) (-4080 -5184 5542.67) (-4080 -5120 5542.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" + "id" "27680" + "plane" "(-352 -2688 0) (-352 -2752 0) (0 -2752 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109783,63 +114354,63 @@ world } side { - "id" "55415" - "plane" "(-4080 -5120 -1284) (-4080 -5184 -1284) (4112 -5184 -1284)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "27681" + "plane" "(-352 -2752 0) (-352 -2688 0) (-352 -2688 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55414" - "plane" "(-4080 -5184 5542.67) (-4080 -5184 -1284) (-4080 -5120 -1284)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "27682" + "plane" "(0 -2688 0) (0 -2752 0) (0 -2752 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55413" - "plane" "(4112 -5120 -1284) (4112 -5184 -1284) (4112 -5184 5542.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27683" + "plane" "(-352 -2688 0) (0 -2688 0) (0 -2688 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "55412" - "plane" "(-4080 -5120 -1284) (4112 -5120 -1284) (4112 -5120 5542.67)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 112] 0.25" + "id" "27684" + "plane" "(0 -2752 0) (-352 -2752 0) (-352 -2752 256)" + "material" "DEV/REFLECTIVITY_50B" + "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" "143662" + "color" "0 252 129" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "137445" + "id" "30219" side { - "id" "54403" - "plane" "(2816 -912 384) (2816 -896 384) (3072 -896 384)" + "id" "24228" + "plane" "(-64 832 192) (-32 848 192) (-16 824 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -109849,9 +114420,9 @@ world } side { - "id" "54402" - "plane" "(2816 -896 224) (2816 -912 224) (3072 -912 224)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24227" + "plane" "(-48 808 176) (-16 824 184) (-32 848 184)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -109860,10 +114431,10 @@ world } side { - "id" "54401" - "plane" "(2816 -912 224) (2816 -896 224) (2816 -896 384)" + "id" "24226" + "plane" "(-64 832 176) (-32 848 184) (-32 848 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109871,10 +114442,10 @@ world } side { - "id" "54400" - "plane" "(3072 -896 224) (3072 -912 224) (3072 -912 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "24225" + "plane" "(-48 808 192) (-16 824 192) (-16 824 184)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109882,10 +114453,10 @@ world } side { - "id" "54399" - "plane" "(2816 -896 224) (3072 -896 224) (3072 -896 384)" + "id" "24224" + "plane" "(-48 808 176) (-64 832 176) (-64 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109893,10 +114464,10 @@ world } side { - "id" "54398" - "plane" "(3072 -912 224) (2816 -912 224) (2816 -912 384)" - "material" "BRICK/INFWLLG" - "uaxis" "[1 0 0 0] 0.25" + "id" "24223" + "plane" "(-32 848 184) (-16 824 184) (-16 824 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109904,18 +114475,19 @@ world } editor { - "color" "0 199 244" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "137451" + "id" "30220" side { - "id" "54415" - "plane" "(2816 -544 384) (2816 -528 384) (3072 -528 384)" + "id" "24234" + "plane" "(16 840 192) (-16 824 192) (-32 847.99 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -109925,9 +114497,9 @@ world } side { - "id" "54414" - "plane" "(2816 -528 224) (2816 -544 224) (3072 -544 224)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24233" + "plane" "(0 864 176) (-32 848 184) (-16 824 184)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -109936,10 +114508,10 @@ world } side { - "id" "54413" - "plane" "(2816 -544 224) (2816 -528 224) (2816 -528 384)" + "id" "24232" + "plane" "(0 864 192) (-32 848 192) (-32 848 184)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109947,10 +114519,10 @@ world } side { - "id" "54412" - "plane" "(3072 -528 224) (3072 -544 224) (3072 -544 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "24231" + "plane" "(16 840 176) (-16 824 184) (-16 824 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109958,10 +114530,10 @@ world } side { - "id" "54411" - "plane" "(2816 -528 224) (3072 -528 224) (3072 -528 384)" - "material" "BRICK/INFWLLG" - "uaxis" "[1 0 0 0] 0.25" + "id" "24230" + "plane" "(0 864 176) (16 840 176) (16 840 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109969,10 +114541,10 @@ world } side { - "id" "54410" - "plane" "(3072 -544 224) (2816 -544 224) (2816 -544 384)" + "id" "24229" + "plane" "(-16 824 184) (-32 848 184) (-32 848 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109980,18 +114552,19 @@ world } editor { - "color" "0 199 244" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "137499" + "id" "30224" side { - "id" "54512" - "plane" "(2796 -916 384) (2796 -524 384) (2800 -528 384)" + "id" "24288" + "plane" "(-64 832 384) (0 864 384) (16 840 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -110001,19 +114574,19 @@ world } side { - "id" "54511" - "plane" "(2800 -528 376) (2800 -912 376) (2800 -912 384)" + "id" "24287" + "plane" "(-48 808 352) (16 840 352) (0 864 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54510" - "plane" "(2796 -524 380) (2800 -528 376) (2800 -528 384)" + "id" "24286" + "plane" "(0 864 384) (-64 832 384) (-64 832 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -110023,9 +114596,9 @@ world } side { - "id" "54509" - "plane" "(2796 -916 380) (2796 -916 384) (2800 -912 384)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24285" + "plane" "(-48 808 384) (16 840 384) (16 840 352)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110034,64 +114607,65 @@ world } side { - "id" "54508" - "plane" "(2796 -916 380) (2800 -912 376) (2800 -528 376)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0.707107 0 -0.707107 -66.957] 0.125" + "id" "24284" + "plane" "(-64 832 384) (-48 808 384) (-48 808 352)" + "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" "54507" - "plane" "(2796 -916 380) (2796 -524 380) (2796 -524 384)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "24283" + "plane" "(16 840 384) (0 864 384) (0 864 352)" + "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" "0 199 244" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "137508" + "id" "30225" side { - "id" "54530" - "plane" "(2796 -916 384) (2800 -912 384) (3072 -912 384)" + "id" "24294" + "plane" "(48 856 384) (32 880 384) (96 912 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54529" - "plane" "(3072 -912 384) (2800 -912 384) (2800 -912 376)" + "id" "24293" + "plane" "(32 880 352) (48 856 352) (112 888 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54528" - "plane" "(2800 -912 376) (2800 -912 384) (2796 -916 384)" + "id" "24292" + "plane" "(96 912 352) (96 912 384) (32 880 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110099,30 +114673,30 @@ world } side { - "id" "54527" - "plane" "(3072 -912 376) (2800 -912 376) (2796 -916 380)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0.707107 -0.707107 195.283] 0.125" + "id" "24291" + "plane" "(48 856 352) (48 856 384) (112 888 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54526" - "plane" "(2796 -916 380) (2796 -916 384) (3072 -916 384)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "24290" + "plane" "(32 880 352) (32 880 384) (48 856 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" "54525" - "plane" "(3072 -916 384) (3072 -912 384) (3072 -912 376)" + "id" "24289" + "plane" "(112 888 352) (112 888 384) (96 912 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -110132,42 +114706,43 @@ world } editor { - "color" "0 199 244" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "137509" + "id" "30226" side { - "id" "54542" - "plane" "(3072 -524 384) (3072 -528 384) (2800 -528 384)" + "id" "24300" + "plane" "(32 880 384) (48 856 384) (16 840 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54541" - "plane" "(3072 -528 376) (2800 -528 376) (2800 -528 384)" + "id" "24299" + "plane" "(48 856 256) (32 880 256) (0 864 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54540" - "plane" "(2796 -524 380) (2796 -524 384) (2800 -528 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "24298" + "plane" "(48 856 256) (48 856 384) (32 880 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110175,32 +114750,32 @@ world } side { - "id" "54539" - "plane" "(3072 -524 380) (2796 -524 380) (2800 -528 376)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 -0.707107 -0.707107 -14.5854] 0.125" + "id" "24297" + "plane" "(32 880 256) (32 880 384) (0 864 384)" + "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" "54538" - "plane" "(3072 -524 380) (3072 -524 384) (2796 -524 384)" - "material" "BUILDINGS/TRIM21" - "uaxis" "[-1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "24296" + "plane" "(16 840 256) (16 840 384) (48 856 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54537" - "plane" "(3072 -524 380) (3072 -528 376) (3072 -528 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "24295" + "plane" "(0 864 256) (0 864 384) (16 840 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110208,18 +114783,19 @@ world } editor { - "color" "0 199 244" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "137557" + "id" "30227" side { - "id" "54543" - "plane" "(2732 -912 201.5) (2736 -912 201.5) (2736 -916 201.5)" + "id" "24306" + "plane" "(16 840 352) (-16 824 352) (-32 847.99 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -110229,9 +114805,9 @@ world } side { - "id" "54544" - "plane" "(2732 -916 95.5) (2736 -916 95.5) (2736 -912 95.5)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24305" + "plane" "(0 864 336) (-32 848 344) (-16 824 344)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -110240,10 +114816,10 @@ world } side { - "id" "54545" - "plane" "(2732 -912 201.5) (2732 -916 201.5) (2732 -916 95.5)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" + "id" "24304" + "plane" "(0 864 352) (-32 848 352) (-32 848 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110251,10 +114827,10 @@ world } side { - "id" "54546" - "plane" "(2736 -912 95.5) (2736 -916 95.5) (2736 -916 201.5)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "24303" + "plane" "(16 840 336) (-16 824 344) (-16 824 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110262,10 +114838,10 @@ world } side { - "id" "54547" - "plane" "(2736 -912 201.5) (2732 -912 201.5) (2732 -912 95.5)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" + "id" "24302" + "plane" "(0 864 336) (16 840 336) (16 840 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110273,10 +114849,10 @@ world } side { - "id" "54548" - "plane" "(2736 -916 95.5) (2732 -916 95.5) (2732 -916 201.5)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" + "id" "24301" + "plane" "(-16 824 344) (-32 848 344) (-32 848 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110284,42 +114860,43 @@ world } editor { - "color" "0 139 168" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "137558" + "id" "30228" side { - "id" "54560" - "plane" "(2688 -956 201.5) (2692 -956 201.5) (2692 -960 201.5)" + "id" "24312" + "plane" "(-64 832 352) (-32 848 352) (-16 824 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54559" - "plane" "(2688 -960 95.5) (2692 -960 95.5) (2692 -956 95.5)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "id" "24311" + "plane" "(-48 808 336) (-16 824 344) (-32 848 344)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54558" - "plane" "(2688 -956 201.5) (2688 -960 201.5) (2688 -960 95.5)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" + "id" "24310" + "plane" "(-64 832 336) (-32 848 344) (-32 848 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110327,10 +114904,10 @@ world } side { - "id" "54557" - "plane" "(2692 -956 95.5) (2692 -960 95.5) (2692 -960 201.5)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" + "id" "24309" + "plane" "(-48 808 352) (-16 824 352) (-16 824 344)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110338,10 +114915,10 @@ world } side { - "id" "54556" - "plane" "(2692 -956 201.5) (2688 -956 201.5) (2688 -956 95.5)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" + "id" "24308" + "plane" "(-48 808 336) (-64 832 336) (-64 832 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110349,10 +114926,10 @@ world } side { - "id" "54555" - "plane" "(2692 -960 95.5) (2688 -960 95.5) (2688 -960 201.5)" + "id" "24307" + "plane" "(-32 848 344) (-16 824 344) (-16 824 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110360,42 +114937,43 @@ world } editor { - "color" "0 139 168" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "137758" + "id" "30229" side { - "id" "54572" - "plane" "(2848 -896 224) (2832 -896 224) (2832 -768 224)" + "id" "24318" + "plane" "(112 888 352) (80 872 352) (64 895.99 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54571" - "plane" "(2832 -896 96) (2848 -896 96) (2848 -768 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "24317" + "plane" "(96 912 336) (64 896 344) (80 872 344)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54570" - "plane" "(2848 -896 96) (2832 -896 96) (2832 -896 224)" + "id" "24316" + "plane" "(96 912 352) (64 896 352) (64 896 344)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110403,10 +114981,10 @@ world } side { - "id" "54569" - "plane" "(2832 -768 96) (2848 -768 96) (2848 -768 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "24315" + "plane" "(112 888 336) (80 872 344) (80 872 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110414,9 +114992,9 @@ world } side { - "id" "54568" - "plane" "(2832 -896 96) (2832 -768 96) (2832 -768 224)" - "material" "DEV/REFLECTIVITY_50B" + "id" "24314" + "plane" "(96 912 336) (112 888 336) (112 888 352)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110425,8 +115003,8 @@ world } side { - "id" "54567" - "plane" "(2848 -768 96) (2848 -896 96) (2848 -896 224)" + "id" "24313" + "plane" "(80 872 344) (64 896 344) (64 896 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -110436,42 +115014,43 @@ world } editor { - "color" "0 199 244" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "137764" + "id" "30230" side { - "id" "54584" - "plane" "(2848 -672 224) (2832 -672 224) (2832 -544 224)" + "id" "24324" + "plane" "(32 880 352) (64 896 352) (80 872 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54583" - "plane" "(2832 -672 96) (2848 -672 96) (2848 -544 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "24323" + "plane" "(48 856 336) (80 872 344) (64 896 344)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54582" - "plane" "(2848 -672 96) (2832 -672 96) (2832 -672 224)" + "id" "24322" + "plane" "(32 880 336) (64 896 344) (64 896 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110479,10 +115058,10 @@ world } side { - "id" "54581" - "plane" "(2832 -544 96) (2848 -544 96) (2848 -544 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "24321" + "plane" "(48 856 352) (80 872 352) (80 872 344)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110490,9 +115069,9 @@ world } side { - "id" "54580" - "plane" "(2832 -672 96) (2832 -544 96) (2832 -544 224)" - "material" "DEV/REFLECTIVITY_50B" + "id" "24320" + "plane" "(48 856 336) (32 880 336) (32 880 352)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110501,8 +115080,8 @@ world } side { - "id" "54579" - "plane" "(2848 -544 96) (2848 -672 96) (2848 -672 224)" + "id" "24319" + "plane" "(64 896 344) (80 872 344) (80 872 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -110512,42 +115091,43 @@ world } editor { - "color" "0 199 244" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135021" + "id" "30231" side { - "id" "53573" - "plane" "(2816 -768 124) (2816 -772 128) (2756 -772 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "24330" + "plane" "(112 920 384) (128 896 384) (112 888 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" "53572" - "plane" "(2752 -768 96) (2756 -772 96) (2816 -772 96)" + "id" "24329" + "plane" "(128 896 256) (112 920 256) (96 912 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53571" - "plane" "(2816 -768 96) (2816 -768 124) (2752 -768 124)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "24328" + "plane" "(128 896 256) (128 896 384) (112 920 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110555,10 +115135,10 @@ world } side { - "id" "53570" - "plane" "(2756 -772 96) (2756 -772 128) (2816 -772 128)" + "id" "24327" + "plane" "(112 920 256) (112 920 384) (96 912 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110566,10 +115146,10 @@ world } side { - "id" "53569" - "plane" "(2752 -768 96) (2752 -768 124) (2756 -772 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "24326" + "plane" "(112 888 256) (112 888 384) (128 896 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110577,10 +115157,10 @@ world } side { - "id" "53568" - "plane" "(2816 -772 96) (2816 -772 128) (2816 -768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "24325" + "plane" "(96 912 256) (96 912 384) (112 888 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110588,18 +115168,19 @@ world } editor { - "color" "0 137 234" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135054" + "id" "30232" side { - "id" "53574" - "plane" "(2756 -772 128) (2760 -772 128) (2760 -896 128)" + "id" "24342" + "plane" "(112 920 256) (128 896 256) (-48 808 256)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -110609,21 +115190,21 @@ world } side { - "id" "53575" - "plane" "(2756 -896 96) (2760 -896 96) (2760 -772 96)" + "id" "24341" + "plane" "(128 896 240) (112 920 240) (-64 832 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53576" - "plane" "(2756 -772 128) (2756 -896 128) (2756 -896 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "24340" + "plane" "(128 896 240) (128 896 256) (112 920 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110631,10 +115212,10 @@ world } side { - "id" "53577" - "plane" "(2760 -772 96) (2760 -896 96) (2760 -896 128)" + "id" "24339" + "plane" "(112 920 240) (112 920 256) (-64 832 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110642,9 +115223,9 @@ world } side { - "id" "53578" - "plane" "(2760 -772 128) (2756 -772 128) (2756 -772 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24338" + "plane" "(-48 808 240) (-48 808 256) (128 896 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110653,10 +115234,10 @@ world } side { - "id" "53579" - "plane" "(2760 -896 96) (2756 -896 96) (2756 -896 128)" + "id" "24337" + "plane" "(-64 832 240) (-64 832 256) (-48 808 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110664,19 +115245,20 @@ world } editor { - "color" "0 161 190" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135055" + "id" "30243" side { - "id" "53591" - "plane" "(2760 -772 128) (2816 -772 128) (2816 -776 128)" - "material" "DEV/REFLECTIVITY_30B" + "id" "37338" + "plane" "(-128 832 400) (128 960 400) (128 864 400)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -110685,10 +115267,10 @@ world } side { - "id" "53590" - "plane" "(2760 -776 96) (2816 -776 96) (2816 -772 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "37337" + "plane" "(-128 752 384) (128 880 384) (128 960 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110696,8 +115278,8 @@ world } side { - "id" "53589" - "plane" "(2760 -772 128) (2760 -776 128) (2760 -776 96)" + "id" "37336" + "plane" "(-128 832 384) (-128 832 400) (-128 736 400)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -110707,9 +115289,9 @@ world } side { - "id" "53588" - "plane" "(2816 -772 96) (2816 -776 96) (2816 -776 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "37335" + "plane" "(128 880 384) (128 864 400) (128 960 400)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110718,10 +115300,10 @@ world } side { - "id" "53587" - "plane" "(2816 -772 128) (2760 -772 128) (2760 -772 96)" + "id" "37334" + "plane" "(128 960 384) (128 960 400) (-128 832 400)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110729,10 +115311,10 @@ world } side { - "id" "53586" - "plane" "(2816 -776 96) (2760 -776 96) (2760 -776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "37333" + "plane" "(-128 752 384) (-128 736 400) (128 864 400)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110740,18 +115322,19 @@ world } editor { - "color" "0 161 190" + "color" "0 250 115" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135057" + "id" "30245" side { - "id" "53603" - "plane" "(2756 -772 224) (2760 -772 224) (2760 -776 224)" + "id" "37343" + "plane" "(-128 752 400) (128 880 400) (128 1008 400)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -110761,20 +115344,9 @@ world } side { - "id" "53602" - "plane" "(2756 -776 128) (2760 -776 128) (2760 -772 128)" + "id" "37342" + "plane" "(-128 880 400) (-128 880 528) (-128 752 400)" "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" "53601" - "plane" "(2756 -772 224) (2756 -776 224) (2756 -776 128)" - "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110783,9 +115355,9 @@ world } side { - "id" "53600" - "plane" "(2760 -772 128) (2760 -776 128) (2760 -776 224)" - "material" "DEV/REFLECTIVITY_10B" + "id" "37341" + "plane" "(128 1008 400) (128 880 400) (128 1008 528)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110794,9 +115366,9 @@ world } side { - "id" "53599" - "plane" "(2760 -772 224) (2756 -772 224) (2756 -772 128)" - "material" "DEV/REFLECTIVITY_10B" + "id" "37340" + "plane" "(-128 880 400) (128 1008 400) (128 1008 528)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110805,9 +115377,9 @@ world } side { - "id" "53598" - "plane" "(2760 -776 128) (2756 -776 128) (2756 -776 224)" - "material" "DEV/REFLECTIVITY_10B" + "id" "37339" + "plane" "(128 880 400) (-128 752 400) (-128 880 528)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110816,20 +115388,21 @@ world } editor { - "color" "0 161 190" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135061" + "id" "30247" side { - "id" "53615" - "plane" "(2796 -772 224) (2800 -772 224) (2800 -776 224)" + "id" "24388" + "plane" "(-384 784 192) (-384 832 192) (-288 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110837,10 +115410,10 @@ world } side { - "id" "53614" - "plane" "(2796 -776 128) (2800 -776 128) (2800 -772 128)" + "id" "24387" + "plane" "(-384 832 96) (-384 784 96) (-288 784 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -110848,9 +115421,9 @@ world } side { - "id" "53613" - "plane" "(2796 -772 224) (2796 -776 224) (2796 -776 128)" - "material" "DEV/REFLECTIVITY_10B" + "id" "24386" + "plane" "(-384 784 96) (-384 832 96) (-384 832 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110859,8 +115432,8 @@ world } side { - "id" "53612" - "plane" "(2800 -772 128) (2800 -776 128) (2800 -776 224)" + "id" "24385" + "plane" "(-288 832 96) (-288 784 96) (-288 784 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -110870,9 +115443,9 @@ world } side { - "id" "53611" - "plane" "(2800 -772 224) (2796 -772 224) (2796 -772 128)" - "material" "DEV/REFLECTIVITY_10B" + "id" "24384" + "plane" "(-384 832 96) (-288 832 96) (-288 832 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110881,8 +115454,8 @@ world } side { - "id" "53610" - "plane" "(2800 -776 128) (2796 -776 128) (2796 -776 224)" + "id" "24383" + "plane" "(-288 784 96) (-384 784 96) (-384 784 192)" "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -110892,41 +115465,42 @@ world } editor { - "color" "0 161 190" + "color" "0 195 204" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135062" + "id" "30255" side { - "id" "53627" - "plane" "(2756 -892 224) (2760 -892 224) (2760 -896 224)" + "id" "24400" + "plane" "(-224 784 192) (-224 832 192) (-128 832 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53626" - "plane" "(2756 -896 128) (2760 -896 128) (2760 -892 128)" + "id" "24399" + "plane" "(-224 832 96) (-224 784 96) (-128 784 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53625" - "plane" "(2756 -892 224) (2756 -896 224) (2756 -896 128)" - "material" "DEV/REFLECTIVITY_10B" + "id" "24398" + "plane" "(-224 784 96) (-224 832 96) (-224 832 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110935,9 +115509,9 @@ world } side { - "id" "53624" - "plane" "(2760 -892 128) (2760 -896 128) (2760 -896 224)" - "material" "DEV/REFLECTIVITY_10B" + "id" "24397" + "plane" "(-128 832 96) (-128 784 96) (-128 784 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110946,9 +115520,9 @@ world } side { - "id" "53623" - "plane" "(2760 -892 224) (2756 -892 224) (2756 -892 128)" - "material" "DEV/REFLECTIVITY_10B" + "id" "24396" + "plane" "(-224 832 96) (-128 832 96) (-128 832 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110957,9 +115531,9 @@ world } side { - "id" "53622" - "plane" "(2760 -896 128) (2756 -896 128) (2756 -896 224)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24395" + "plane" "(-128 784 96) (-224 784 96) (-224 784 192)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -110968,53 +115542,54 @@ world } editor { - "color" "0 161 190" + "color" "0 195 204" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135063" + "id" "30256" side { - "id" "53639" - "plane" "(2758 -776 224) (2760 -776 224) (2760 -892 224)" + "id" "24418" + "plane" "(-224 784 352) (-224 832 352) (-128 832 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53638" - "plane" "(2758 -892 128) (2760 -892 128) (2760 -776 128)" + "id" "24417" + "plane" "(-224 832 256) (-224 784 256) (-128 784 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53637" - "plane" "(2758 -776 224) (2758 -892 224) (2758 -892 128)" - "material" "GLASS/URBAN_GLASS_03" - "uaxis" "[0 1 0 329] 30" - "vaxis" "[0 0 -1 184] 30" + "id" "24416" + "plane" "(-224 784 256) (-224 832 256) (-224 832 352)" + "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" "53636" - "plane" "(2760 -776 128) (2760 -892 128) (2760 -892 224)" + "id" "24415" + "plane" "(-128 832 256) (-128 784 256) (-128 784 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111022,8 +115597,8 @@ world } side { - "id" "53635" - "plane" "(2760 -776 224) (2758 -776 224) (2758 -776 128)" + "id" "24414" + "plane" "(-224 832 256) (-128 832 256) (-128 832 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -111033,9 +115608,9 @@ world } side { - "id" "53634" - "plane" "(2760 -892 128) (2758 -892 128) (2758 -892 224)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24413" + "plane" "(-128 784 256) (-224 784 256) (-224 784 352)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -111044,42 +115619,43 @@ world } editor { - "color" "0 161 190" + "color" "0 195 204" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135065" + "id" "30257" side { - "id" "53651" - "plane" "(2760 -774 224) (2796 -774 224) (2796 -776 224)" + "id" "24424" + "plane" "(-384 784 352) (-384 832 352) (-288 832 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -8] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53650" - "plane" "(2760 -776 128) (2796 -776 128) (2796 -774 128)" + "id" "24423" + "plane" "(-384 832 256) (-384 784 256) (-288 784 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -8] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53649" - "plane" "(2760 -774 224) (2760 -776 224) (2760 -776 128)" + "id" "24422" + "plane" "(-384 784 256) (-384 832 256) (-384 832 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 8] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111087,10 +115663,10 @@ world } side { - "id" "53648" - "plane" "(2796 -774 128) (2796 -776 128) (2796 -776 224)" + "id" "24421" + "plane" "(-288 832 256) (-288 784 256) (-288 784 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 8] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111098,21 +115674,21 @@ world } side { - "id" "53647" - "plane" "(2796 -774 224) (2760 -774 224) (2760 -774 128)" - "material" "GLASS/URBAN_GLASS_03" - "uaxis" "[1 0 0 329] 30" - "vaxis" "[0 0 -1 184] 30" + "id" "24420" + "plane" "(-384 832 256) (-288 832 256) (-288 832 352)" + "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" "53646" - "plane" "(2796 -776 128) (2760 -776 128) (2760 -776 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -8] 0.25" + "id" "24419" + "plane" "(-288 784 256) (-384 784 256) (-384 784 352)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111120,42 +115696,43 @@ world } editor { - "color" "0 161 190" + "color" "0 195 204" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135094" + "id" "30258" side { - "id" "53675" - "plane" "(2752 -768 96) (2752 -896 96) (2756 -896 96)" + "id" "24436" + "plane" "(-544 784 352) (-544 832 352) (-448 832 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53674" - "plane" "(2752 -896 104) (2752 -896 96) (2752 -768 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24435" + "plane" "(-544 832 256) (-544 784 256) (-448 784 256)" + "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" "53673" - "plane" "(2756 -772 104) (2756 -772 96) (2756 -896 96)" + "id" "24434" + "plane" "(-544 784 256) (-544 832 256) (-544 832 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111163,10 +115740,10 @@ world } side { - "id" "53672" - "plane" "(2756 -896 104) (2756 -896 96) (2752 -896 96)" + "id" "24433" + "plane" "(-448 832 256) (-448 784 256) (-448 784 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111174,8 +115751,8 @@ world } side { - "id" "53671" - "plane" "(2752 -768 104) (2752 -768 96) (2756 -772 96)" + "id" "24432" + "plane" "(-544 832 256) (-448 832 256) (-448 832 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -111185,53 +115762,54 @@ world } side { - "id" "53670" - "plane" "(2752 -896 104) (2752 -768 104) (2756 -772 104)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24431" + "plane" "(-448 784 256) (-544 784 256) (-544 784 352)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 195 204" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135095" + "id" "30284" side { - "id" "53681" - "plane" "(2752 -896 124) (2752 -768 124) (2756 -772 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24466" + "plane" "(-56 820 192) (-64 832 192) (0 864 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53680" - "plane" "(2752 -768 120) (2752 -768 124) (2752 -896 124)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24465" + "plane" "(-64 832 96) (-56 820 96) (8 852 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53679" - "plane" "(2756 -896 120) (2756 -896 128) (2756 -772 128)" + "id" "24464" + "plane" "(-56 820 96) (-64 832 96) (-64 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111239,10 +115817,10 @@ world } side { - "id" "53678" - "plane" "(2752 -896 120) (2752 -896 124) (2756 -896 128)" + "id" "24463" + "plane" "(-64 832 96) (-0 864 96) (-0 864 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111250,9 +115828,9 @@ world } side { - "id" "53677" - "plane" "(2756 -772 128) (2752 -768 124) (2752 -768 120)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24462" + "plane" "(8 852 96) (-56 820 96) (-56 820 192)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -111261,53 +115839,54 @@ world } side { - "id" "53676" - "plane" "(2752 -768 120) (2752 -896 120) (2756 -896 120)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "24461" + "plane" "(0 864 96) (8 852 96) (8 852 192)" + "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" "0 137 234" + "color" "0 195 204" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135098" + "id" "30296" side { - "id" "53687" - "plane" "(2752 -768 104) (2752 -768 120) (2752 -776 120)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24478" + "plane" "(32 880 192) (96 912 192) (104 900 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53686" - "plane" "(2756 -772 104) (2756 -780 104) (2756 -780 120)" + "id" "24477" + "plane" "(40 868 96) (104 900 96) (96 912 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53685" - "plane" "(2752 -768 104) (2756 -772 104) (2756 -772 120)" + "id" "24476" + "plane" "(96 912 96) (104 900 96) (104 900 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111315,32 +115894,32 @@ world } side { - "id" "53684" - "plane" "(2752 -768 120) (2756 -772 120) (2756 -780 120)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "24475" + "plane" "(32 880 96) (96 912 96) (96 912 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53683" - "plane" "(2752 -776 104) (2756 -780 104) (2756 -772 104)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24474" + "plane" "(104 900 96) (40 868 96) (40 868 192)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53682" - "plane" "(2756 -780 104) (2752 -776 104) (2752 -776 120)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "24473" + "plane" "(40 868 96) (32 880 96) (32 880 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111348,42 +115927,43 @@ world } editor { - "color" "0 137 234" + "color" "0 195 204" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135099" + "id" "30297" side { - "id" "53693" - "plane" "(2752 -896 104) (2752 -888 104) (2752 -888 120)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24496" + "plane" "(32 880 352) (96 912 352) (104 900 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53692" - "plane" "(2756 -896 104) (2756 -896 120) (2756 -884 120)" + "id" "24495" + "plane" "(40 868 256) (104 900 256) (96 912 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53691" - "plane" "(2756 -896 104) (2752 -896 104) (2752 -896 120)" + "id" "24494" + "plane" "(96 912 256) (104 900 256) (104 900 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111391,32 +115971,32 @@ world } side { - "id" "53690" - "plane" "(2752 -888 120) (2756 -884 120) (2756 -896 120)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "24493" + "plane" "(32 880 256) (96 912 256) (96 912 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53689" - "plane" "(2752 -896 104) (2756 -896 104) (2756 -884 104)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24492" + "plane" "(104 900 256) (40 868 256) (40 868 352)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53688" - "plane" "(2752 -888 104) (2756 -884 104) (2756 -884 120)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "24491" + "plane" "(40 868 256) (32 880 256) (32 880 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111424,42 +116004,43 @@ world } editor { - "color" "0 137 234" + "color" "0 195 204" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135101" + "id" "30298" side { - "id" "53705" - "plane" "(2752 -828 104) (2752 -828 120) (2752 -836 120)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24502" + "plane" "(-56 820 352) (-64 832 352) (0 864 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53704" - "plane" "(2756 -840 120) (2756 -824 120) (2756 -824 104)" + "id" "24501" + "plane" "(-64 832 256) (-56 820 256) (8 852 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53703" - "plane" "(2752 -836 104) (2752 -836 120) (2756 -840 120)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 16] 0.25" + "id" "24500" + "plane" "(-56 820 256) (-64 832 256) (-64 832 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111467,32 +116048,32 @@ world } side { - "id" "53702" - "plane" "(2756 -824 120) (2756 -840 120) (2752 -836 120)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "id" "24499" + "plane" "(-64 832 256) (0 864 256) (0 864 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53701" - "plane" "(2756 -840 104) (2756 -824 104) (2752 -828 104)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24498" + "plane" "(8 852 256) (-56 820 256) (-56 820 352)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53700" - "plane" "(2756 -824 104) (2756 -824 120) (2752 -828 120)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "24497" + "plane" "(0 864 256) (8 852 256) (8 852 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111500,53 +116081,54 @@ world } editor { - "color" "0 137 234" + "color" "0 195 204" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135111" + "id" "30299" side { - "id" "53722" - "plane" "(2756 -828 104) (2756 -824 108) (2756 -780 108)" + "id" "24514" + "plane" "(-544 784 192) (-544 832 192) (-448 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53721" - "plane" "(2756 -828 104) (2752 -828 104) (2756 -824 108)" + "id" "24513" + "plane" "(-544 832 64) (-544 784 64) (-448 784 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53720" - "plane" "(2752 -828 104) (2756 -828 104) (2756 -776 104)" + "id" "24512" + "plane" "(-544 784 64) (-544 832 64) (-544 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53719" - "plane" "(2756 -776 104) (2756 -780 108) (2752 -776 104)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "24511" + "plane" "(-448 832 64) (-448 784 64) (-448 784 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111554,172 +116136,219 @@ world } side { - "id" "53718" - "plane" "(2752 -776 104) (2756 -780 108) (2756 -824 108)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24510" + "plane" "(-544 832 64) (-448 832 64) (-448 832 192)" + "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" "24509" + "plane" "(-448 784 64) (-544 784 64) (-544 784 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 195 204" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135113" + "id" "30301" side { - "id" "53732" - "plane" "(2756 -776 120) (2756 -780 116) (2756 -824 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "24526" + "plane" "(-544 768 64) (-544 784 64) (-448 784 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53731" - "plane" "(2756 -776 120) (2752 -776 120) (2756 -780 116)" + "id" "24525" + "plane" "(-544 784 0) (-544 768 0) (-448 768 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53730" - "plane" "(2752 -776 120) (2756 -776 120) (2756 -828 120)" + "id" "24524" + "plane" "(-544 768 0) (-544 784 0) (-544 784 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53729" - "plane" "(2756 -828 120) (2756 -824 116) (2752 -828 120)" - "material" "DEV/REFLECTIVITY_50B" + "id" "24523" + "plane" "(-448 784 0) (-448 768 0) (-448 768 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" "24522" + "plane" "(-544 784 0) (-448 784 0) (-448 784 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53728" - "plane" "(2752 -828 120) (2756 -824 116) (2756 -780 116)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "24521" + "plane" "(-448 768 0) (-544 768 0) (-544 768 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 137 234" + "color" "0 211 200" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135117" + "id" "30309" side { - "id" "53747" - "plane" "(2756 -836 120) (2756 -840 116) (2756 -884 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "24538" + "plane" "(-56 804 256) (24 844 256) (28 840 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53746" - "plane" "(2756 -836 120) (2752 -836 120) (2756 -840 116)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24537" + "plane" "(-52 800 248) (28 840 248) (24 844 248)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53745" - "plane" "(2752 -836 120) (2756 -836 120) (2756 -888 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "id" "24536" + "plane" "(-56 804 248) (-56 804 256) (-52 800 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53744" - "plane" "(2756 -888 120) (2756 -884 116) (2752 -888 120)" - "material" "DEV/REFLECTIVITY_50B" + "id" "24535" + "plane" "(28 840 248) (28 840 256) (24 844 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24534" + "plane" "(24 844 248) (24 844 256) (-56 804 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53743" - "plane" "(2752 -888 120) (2756 -884 116) (2756 -840 116)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "24533" + "plane" "(-52 800 248) (-52 800 256) (28 840 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 226 207" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135118" + "id" "30311" side { - "id" "53752" - "plane" "(2756 -888 104) (2756 -884 108) (2756 -840 108)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24550" + "plane" "(40 852 256) (120 892 256) (124 888 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53751" - "plane" "(2756 -888 104) (2752 -888 104) (2756 -884 108)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24549" + "plane" "(44 848 248) (124 888 248) (120 892 248)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24548" + "plane" "(40 852 248) (40 852 256) (44 848 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111727,20 +116356,20 @@ world } side { - "id" "53750" - "plane" "(2752 -888 104) (2756 -888 104) (2756 -836 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "24547" + "plane" "(124 888 248) (124 888 256) (120 892 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53749" - "plane" "(2756 -836 104) (2756 -840 108) (2752 -836 104)" - "material" "DEV/REFLECTIVITY_50B" + "id" "24546" + "plane" "(120 892 248) (120 892 256) (40 852 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -111749,10 +116378,10 @@ world } side { - "id" "53748" - "plane" "(2752 -836 104) (2756 -840 108) (2756 -884 108)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 16] 0.25" + "id" "24545" + "plane" "(44 848 248) (44 848 256) (124 888 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111760,18 +116389,19 @@ world } editor { - "color" "0 137 234" + "color" "0 226 207" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135162" + "id" "30312" side { - "id" "53958" - "plane" "(2756 -544 128) (2756 -668 128) (2752 -672 124)" + "id" "24568" + "plane" "(40 852 96) (120 892 96) (124 888 96)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -111781,20 +116411,20 @@ world } side { - "id" "53957" - "plane" "(2752 -544 120) (2752 -544 124) (2752 -672 124)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24567" + "plane" "(44 848 88) (124 888 88) (120 892 88)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53956" - "plane" "(2756 -668 120) (2756 -668 128) (2756 -544 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24566" + "plane" "(40 852 88) (40 852 96) (44 848 96)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -111803,10 +116433,10 @@ world } side { - "id" "53955" - "plane" "(2756 -544 120) (2756 -544 128) (2752 -544 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "24565" + "plane" "(124 888 88) (124 888 96) (120 892 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111814,8 +116444,8 @@ world } side { - "id" "53954" - "plane" "(2752 -672 120) (2752 -672 124) (2756 -668 128)" + "id" "24564" + "plane" "(120 892 88) (120 892 96) (40 852 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -111825,118 +116455,131 @@ world } side { - "id" "53953" - "plane" "(2756 -668 120) (2756 -544 120) (2752 -544 120)" + "id" "24563" + "plane" "(44 848 88) (44 848 96) (124 888 96)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 226 207" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135163" + "id" "30313" side { - "id" "53963" - "plane" "(2756 -552 120) (2756 -556 116) (2756 -600 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "24574" + "plane" "(-56 804 96) (24 844 96) (28 840 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53962" - "plane" "(2756 -600 116) (2752 -604 120) (2756 -604 120)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24573" + "plane" "(-52 800 88) (28 840 88) (24 844 88)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53961" - "plane" "(2752 -552 120) (2756 -552 120) (2756 -604 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "id" "24572" + "plane" "(-56 804 88) (-56 804 96) (-52 800 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53960" - "plane" "(2752 -552 120) (2756 -556 116) (2756 -552 120)" - "material" "DEV/REFLECTIVITY_50B" + "id" "24571" + "plane" "(28 840 88) (28 840 96) (24 844 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24570" + "plane" "(24 844 88) (24 844 96) (-56 804 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53959" - "plane" "(2752 -604 120) (2756 -600 116) (2756 -556 116)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "24569" + "plane" "(-52 800 88) (-52 800 96) (28 840 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 226 207" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135164" + "id" "30316" side { - "id" "53969" - "plane" "(2752 -544 120) (2752 -552 120) (2752 -552 104)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24586" + "plane" "(-152 848 560) (-152 896 560) (-128 896 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53968" - "plane" "(2756 -556 104) (2756 -556 120) (2756 -544 120)" + "id" "24585" + "plane" "(-152 896 496) (-152 848 496) (-128 848 496)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53967" - "plane" "(2756 -544 120) (2752 -544 120) (2752 -544 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "24584" + "plane" "(-152 848 496) (-152 896 496) (-152 896 560)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111944,30 +116587,30 @@ world } side { - "id" "53966" - "plane" "(2752 -544 120) (2756 -544 120) (2756 -556 120)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24583" + "plane" "(-128 896 496) (-128 848 496) (-128 848 560)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53965" - "plane" "(2752 -552 104) (2756 -556 104) (2756 -544 104)" + "id" "24582" + "plane" "(-152 896 496) (-128 896 496) (-128 896 560)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53964" - "plane" "(2752 -552 120) (2756 -556 120) (2756 -556 104)" + "id" "24581" + "plane" "(-128 848 496) (-152 848 496) (-152 848 560)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -111977,51 +116620,41 @@ world } editor { - "color" "0 137 234" + "color" "0 209 218" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135165" - side - { - "id" "53974" - "plane" "(2756 -604 104) (2756 -600 108) (2756 -556 108)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "30329" side { - "id" "53973" - "plane" "(2756 -556 108) (2752 -552 104) (2756 -552 104)" + "id" "24587" + "plane" "(-116 836 400) (-120 828 400) (-116 820 400)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53972" - "plane" "(2752 -604 104) (2756 -604 104) (2756 -552 104)" + "id" "24588" + "plane" "(-108 840 528) (-100 836 528) (-96 828 528)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53971" - "plane" "(2752 -604 104) (2756 -600 108) (2756 -604 104)" + "id" "24589" + "plane" "(-108 840 400) (-100 836 400) (-100 836 528)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -112031,31 +116664,21 @@ world } side { - "id" "53970" - "plane" "(2752 -552 104) (2756 -556 108) (2756 -600 108)" + "id" "24590" + "plane" "(-100 836 400) (-96 828 400) (-96 828 528)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "0 137 234" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "135166" side { - "id" "53980" - "plane" "(2752 -604 104) (2752 -604 120) (2752 -612 120)" + "id" "24591" + "plane" "(-96 828 400) (-100 820 400) (-100 820 528)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112063,10 +116686,10 @@ world } side { - "id" "53979" - "plane" "(2756 -600 104) (2756 -616 104) (2756 -616 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" + "id" "24592" + "plane" "(-100 820 400) (-108 816 400) (-108 816 528)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112074,10 +116697,10 @@ world } side { - "id" "53978" - "plane" "(2756 -600 104) (2756 -600 120) (2752 -604 120)" + "id" "24593" + "plane" "(-108 816 400) (-116 820 400) (-116 820 528)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112085,30 +116708,30 @@ world } side { - "id" "53977" - "plane" "(2752 -612 120) (2752 -604 120) (2756 -600 120)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -16] 0.25" + "id" "24594" + "plane" "(-116 820 400) (-120 828 400) (-120 828 528)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53976" - "plane" "(2752 -604 104) (2752 -612 104) (2756 -616 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -16] 0.25" + "id" "24595" + "plane" "(-120 828 400) (-116 836 400) (-116 836 528)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53975" - "plane" "(2752 -612 104) (2752 -612 120) (2756 -616 120)" + "id" "24596" + "plane" "(-116 836 400) (-108 840 400) (-108 840 528)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -112118,107 +116741,120 @@ world } editor { - "color" "0 137 234" + "color" "0 181 122" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135167" + "id" "30363" side { - "id" "53985" - "plane" "(2756 -612 120) (2756 -616 116) (2756 -660 116)" + "id" "24620" + "plane" "(-120 756 400) (-120 884 400) (-128 880 400)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53984" - "plane" "(2756 -660 116) (2752 -664 120) (2756 -664 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "24619" + "plane" "(-120 884 400) (-120 756 400) (-120 756 408)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53983" - "plane" "(2752 -612 120) (2756 -612 120) (2756 -664 120)" + "id" "24618" + "plane" "(-120 884 400) (-120 884 536) (-128 880 536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53982" - "plane" "(2752 -612 120) (2756 -616 116) (2756 -612 120)" + "id" "24617" + "plane" "(-120 756 400) (-128 752 400) (-128 752 408)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53981" - "plane" "(2752 -664 120) (2756 -660 116) (2756 -616 116)" + "id" "24616" + "plane" "(-120 756 408) (-128 752 408) (-128 880 536)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24615" + "plane" "(-128 752 400) (-128 880 400) (-128 880 536)" + "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" "0 137 234" + "color" "0 209 218" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135168" + "id" "30364" side { - "id" "53991" - "plane" "(2756 -544 128) (2760 -544 128) (2760 -668 128)" - "material" "DEV/REFLECTIVITY_30B" + "id" "24626" + "plane" "(-136 752 400) (-128 752 400) (-128 880 400)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53990" - "plane" "(2756 -668 96) (2760 -668 96) (2760 -544 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24625" + "plane" "(-136 752 400) (-136 880 400) (-136 880 536)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53989" - "plane" "(2756 -668 96) (2756 -544 96) (2756 -544 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "24624" + "plane" "(-136 880 400) (-128 880 400) (-128 880 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112226,10 +116862,10 @@ world } side { - "id" "53988" - "plane" "(2760 -668 128) (2760 -544 128) (2760 -544 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "24623" + "plane" "(-136 752 400) (-136 752 408) (-128 752 408)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112237,9 +116873,9 @@ world } side { - "id" "53987" - "plane" "(2760 -668 96) (2756 -668 96) (2756 -668 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24622" + "plane" "(-136 752 408) (-136 880 536) (-128 880 536)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -112248,10 +116884,10 @@ world } side { - "id" "53986" - "plane" "(2760 -544 128) (2756 -544 128) (2756 -544 96)" + "id" "24621" + "plane" "(-128 880 400) (-128 752 400) (-128 752 408)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112259,42 +116895,43 @@ world } editor { - "color" "0 161 190" + "color" "0 209 218" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135169" + "id" "31054" side { - "id" "53997" - "plane" "(2752 -664 104) (2752 -664 120) (2752 -672 120)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25333" + "plane" "(-768 -128 160) (-768 -96 160) (-736 -96 160)" + "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" "53996" - "plane" "(2756 -668 120) (2756 -660 120) (2756 -660 104)" + "id" "25334" + "plane" "(-768 -96 0) (-768 -128 0) (-736 -128 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53995" - "plane" "(2752 -672 120) (2756 -668 120) (2756 -668 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "25335" + "plane" "(-768 -128 0) (-768 -96 0) (-768 -96 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112302,30 +116939,30 @@ world } side { - "id" "53994" - "plane" "(2752 -664 120) (2756 -660 120) (2756 -668 120)" + "id" "25336" + "plane" "(-736 -96 0) (-736 -128 0) (-736 -128 160)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53993" - "plane" "(2752 -672 104) (2756 -668 104) (2756 -660 104)" + "id" "25337" + "plane" "(-768 -96 0) (-736 -96 0) (-736 -96 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "53992" - "plane" "(2756 -660 120) (2752 -664 120) (2752 -664 104)" + "id" "25338" + "plane" "(-736 -128 0) (-768 -128 0) (-768 -128 160)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -112335,18 +116972,19 @@ world } editor { - "color" "0 137 234" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135170" + "id" "31065" side { - "id" "54003" - "plane" "(2756 -668 96) (2756 -544 96) (2752 -544 96)" + "id" "25350" + "plane" "(-848 -144 176) (-848 -96 176) (-592 -96 176)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -112356,19 +116994,19 @@ world } side { - "id" "54002" - "plane" "(2752 -672 104) (2752 -672 96) (2752 -544 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25349" + "plane" "(-848 -96 144) (-848 -128 144) (-592 -128 144)" + "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" "54001" - "plane" "(2756 -544 104) (2756 -544 96) (2756 -668 96)" + "id" "25348" + "plane" "(-848 -128 144) (-848 -96 144) (-848 -96 176)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -112378,10 +117016,10 @@ world } side { - "id" "54000" - "plane" "(2752 -544 104) (2752 -544 96) (2756 -544 96)" + "id" "25347" + "plane" "(-592 -96 144) (-592 -128 144) (-592 -144 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112389,8 +117027,8 @@ world } side { - "id" "53999" - "plane" "(2756 -668 104) (2756 -668 96) (2752 -672 96)" + "id" "25346" + "plane" "(-848 -96 144) (-592 -96 144) (-592 -96 176)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -112400,42 +117038,54 @@ world } side { - "id" "53998" - "plane" "(2756 -544 104) (2756 -668 104) (2752 -672 104)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25345" + "plane" "(-592 -128 144) (-848 -128 144) (-848 -144 176)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135171" + "id" "31069" side { - "id" "54008" - "plane" "(2756 -664 104) (2756 -660 108) (2756 -616 108)" + "id" "25362" + "plane" "(-848 -128 240) (-848 -96 240) (-592 -96 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54007" - "plane" "(2756 -616 108) (2752 -612 104) (2756 -612 104)" + "id" "25361" + "plane" "(-848 -96 176) (-848 -128 176) (-592 -128 176)" "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" "25360" + "plane" "(-848 -128 176) (-848 -96 176) (-848 -96 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112443,20 +117093,20 @@ world } side { - "id" "54006" - "plane" "(2752 -664 104) (2756 -664 104) (2756 -612 104)" + "id" "25359" + "plane" "(-592 -96 176) (-592 -128 176) (-592 -128 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54005" - "plane" "(2752 -664 104) (2756 -660 108) (2756 -664 104)" - "material" "DEV/REFLECTIVITY_50B" + "id" "25358" + "plane" "(-848 -96 176) (-592 -96 176) (-592 -96 240)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -112465,10 +117115,10 @@ world } side { - "id" "54004" - "plane" "(2752 -612 104) (2756 -616 108) (2756 -660 108)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "25357" + "plane" "(-592 -128 176) (-848 -128 176) (-848 -128 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112476,42 +117126,43 @@ world } editor { - "color" "0 137 234" + "color" "0 125 210" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135172" + "id" "31073" side { - "id" "54014" - "plane" "(2752 -672 124) (2756 -668 128) (2816 -668 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "25374" + "plane" "(-848 -144 240) (-848 -128 240) (-816 -128 240)" + "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" "54013" - "plane" "(2816 -672 96) (2816 -668 96) (2756 -668 96)" + "id" "25373" + "plane" "(-848 -128 192) (-848 -144 192) (-816 -144 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54012" - "plane" "(2752 -672 96) (2752 -672 124) (2816 -672 124)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "25372" + "plane" "(-848 -144 192) (-848 -128 192) (-848 -128 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112519,10 +117170,10 @@ world } side { - "id" "54011" - "plane" "(2816 -668 96) (2816 -668 128) (2756 -668 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "25371" + "plane" "(-816 -128 192) (-816 -144 192) (-816 -144 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112530,10 +117181,10 @@ world } side { - "id" "54010" - "plane" "(2756 -668 96) (2756 -668 128) (2752 -672 124)" + "id" "25370" + "plane" "(-848 -128 192) (-816 -128 192) (-816 -128 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112541,10 +117192,10 @@ world } side { - "id" "54009" - "plane" "(2816 -672 96) (2816 -672 124) (2816 -668 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "25369" + "plane" "(-816 -144 192) (-848 -144 192) (-848 -144 240)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112552,42 +117203,43 @@ world } editor { - "color" "0 137 234" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135173" + "id" "31076" side { - "id" "54020" - "plane" "(2756 -664 224) (2760 -664 224) (2760 -668 224)" + "id" "25386" + "plane" "(-624 -144 240) (-624 -128 240) (-592 -128 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54019" - "plane" "(2756 -668 128) (2760 -668 128) (2760 -664 128)" + "id" "25385" + "plane" "(-624 -128 192) (-624 -144 192) (-592 -144 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54018" - "plane" "(2756 -668 128) (2756 -664 128) (2756 -664 224)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "25384" + "plane" "(-624 -144 192) (-624 -128 192) (-624 -128 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112595,10 +117247,10 @@ world } side { - "id" "54017" - "plane" "(2760 -668 224) (2760 -664 224) (2760 -664 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "25383" + "plane" "(-592 -128 192) (-592 -144 192) (-592 -144 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112606,9 +117258,9 @@ world } side { - "id" "54016" - "plane" "(2760 -668 128) (2756 -668 128) (2756 -668 224)" - "material" "DEV/REFLECTIVITY_10B" + "id" "25382" + "plane" "(-624 -128 192) (-592 -128 192) (-592 -128 240)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -112617,9 +117269,9 @@ world } side { - "id" "54015" - "plane" "(2760 -664 224) (2756 -664 224) (2756 -664 128)" - "material" "DEV/REFLECTIVITY_10B" + "id" "25381" + "plane" "(-592 -144 192) (-624 -144 192) (-624 -144 240)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -112628,42 +117280,43 @@ world } editor { - "color" "0 161 190" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135174" + "id" "31077" side { - "id" "54026" - "plane" "(2760 -664 224) (2796 -664 224) (2796 -666 224)" + "id" "25398" + "plane" "(-672 -144 240) (-672 -128 240) (-624 -128 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -8] 0.25" - "vaxis" "[0 1 0 -8] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54025" - "plane" "(2760 -666 128) (2796 -666 128) (2796 -664 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -8] 0.25" - "vaxis" "[0 1 0 -8] 0.25" + "id" "25397" + "plane" "(-672 -128 216) (-672 -144 216) (-624 -144 200)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54024" - "plane" "(2760 -666 128) (2760 -664 128) (2760 -664 224)" + "id" "25396" + "plane" "(-672 -144 216) (-672 -128 216) (-672 -128 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 8] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112671,10 +117324,10 @@ world } side { - "id" "54023" - "plane" "(2796 -666 224) (2796 -664 224) (2796 -664 128)" + "id" "25395" + "plane" "(-624 -128 200) (-624 -144 200) (-624 -144 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 8] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112682,21 +117335,21 @@ world } side { - "id" "54022" - "plane" "(2796 -666 128) (2760 -666 128) (2760 -666 224)" - "material" "GLASS/URBAN_GLASS_03" - "uaxis" "[1 0 0 329] 30" - "vaxis" "[0 0 -1 184] 30" + "id" "25394" + "plane" "(-624 -128 240) (-672 -128 240) (-672 -128 216)" + "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" "54021" - "plane" "(2796 -664 224) (2760 -664 224) (2760 -664 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -8] 0.25" + "id" "25393" + "plane" "(-624 -144 200) (-672 -144 216) (-672 -144 240)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112704,42 +117357,43 @@ world } editor { - "color" "0 161 190" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135175" + "id" "31079" side { - "id" "54032" - "plane" "(2796 -664 224) (2800 -664 224) (2800 -668 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "25410" + "plane" "(-720 -144 240) (-720 -128 240) (-672 -128 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54031" - "plane" "(2796 -668 128) (2800 -668 128) (2800 -664 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "25409" + "plane" "(-720 -128 220) (-720 -144 220) (-672 -144 216)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54030" - "plane" "(2796 -668 128) (2796 -664 128) (2796 -664 224)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "25408" + "plane" "(-720 -144 220) (-720 -128 220) (-720 -128 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112747,10 +117401,10 @@ world } side { - "id" "54029" - "plane" "(2800 -668 224) (2800 -664 224) (2800 -664 128)" + "id" "25407" + "plane" "(-672 -128 216) (-672 -144 216) (-672 -144 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112758,9 +117412,9 @@ world } side { - "id" "54028" - "plane" "(2800 -668 128) (2796 -668 128) (2796 -668 224)" - "material" "DEV/REFLECTIVITY_10B" + "id" "25406" + "plane" "(-672 -128 240) (-720 -128 240) (-720 -128 220)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -112769,9 +117423,9 @@ world } side { - "id" "54027" - "plane" "(2800 -664 224) (2796 -664 224) (2796 -664 128)" - "material" "DEV/REFLECTIVITY_10B" + "id" "25405" + "plane" "(-672 -144 216) (-720 -144 220) (-720 -144 240)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -112780,53 +117434,54 @@ world } editor { - "color" "0 161 190" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135176" + "id" "31080" side { - "id" "54038" - "plane" "(2758 -548 224) (2760 -548 224) (2760 -664 224)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25422" + "plane" "(-768 -144 240) (-768 -128 240) (-720 -128 240)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54037" - "plane" "(2758 -664 128) (2760 -664 128) (2760 -548 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25421" + "plane" "(-768 -128 216) (-768 -144 216) (-720 -144 220)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54036" - "plane" "(2758 -664 128) (2758 -548 128) (2758 -548 224)" - "material" "GLASS/URBAN_GLASS_03" - "uaxis" "[0 -1 0 329] 30" - "vaxis" "[0 0 -1 184] 30" + "id" "25420" + "plane" "(-768 -144 216) (-768 -128 216) (-768 -128 240)" + "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" "54035" - "plane" "(2760 -664 224) (2760 -548 224) (2760 -548 128)" + "id" "25419" + "plane" "(-720 -128 220) (-720 -144 220) (-720 -144 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112834,8 +117489,8 @@ world } side { - "id" "54034" - "plane" "(2760 -664 128) (2758 -664 128) (2758 -664 224)" + "id" "25418" + "plane" "(-768 -128 216) (-720 -128 220) (-720 -128 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -112845,9 +117500,9 @@ world } side { - "id" "54033" - "plane" "(2760 -548 224) (2758 -548 224) (2758 -548 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25417" + "plane" "(-768 -144 240) (-720 -144 240) (-720 -144 220)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -112856,42 +117511,43 @@ world } editor { - "color" "0 161 190" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135178" + "id" "31081" side { - "id" "54050" - "plane" "(2756 -544 224) (2760 -544 224) (2760 -548 224)" + "id" "25434" + "plane" "(-816 -144 240) (-816 -128 240) (-768 -128 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54049" - "plane" "(2756 -548 128) (2760 -548 128) (2760 -544 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25433" + "plane" "(-816 -128 200) (-816 -144 200) (-768 -144 216)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54048" - "plane" "(2756 -548 128) (2756 -544 128) (2756 -544 224)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "25432" + "plane" "(-816 -144 200) (-816 -128 200) (-816 -128 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112899,10 +117555,10 @@ world } side { - "id" "54047" - "plane" "(2760 -548 224) (2760 -544 224) (2760 -544 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "25431" + "plane" "(-768 -128 216) (-768 -144 216) (-768 -144 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -112910,9 +117566,9 @@ world } side { - "id" "54046" - "plane" "(2760 -548 128) (2756 -548 128) (2756 -548 224)" - "material" "DEV/REFLECTIVITY_10B" + "id" "25430" + "plane" "(-816 -128 200) (-768 -128 216) (-768 -128 240)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -112921,9 +117577,9 @@ world } side { - "id" "54045" - "plane" "(2760 -544 224) (2756 -544 224) (2756 -544 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25429" + "plane" "(-816 -144 240) (-768 -144 240) (-768 -144 216)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -112932,18 +117588,19 @@ world } editor { - "color" "0 161 190" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135213" + "id" "31096" side { - "id" "54062" - "plane" "(2800 -664 272) (2832 -664 272) (2832 -680 272)" + "id" "25446" + "plane" "(-848 -144 304) (-848 -96 304) (-752 -96 304)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -112953,8 +117610,8 @@ world } side { - "id" "54061" - "plane" "(2800 -680 96) (2832 -680 96) (2832 -664 96)" + "id" "25445" + "plane" "(-848 -96 240) (-848 -144 240) (-752 -144 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -112964,9 +117621,9 @@ world } side { - "id" "54060" - "plane" "(2800 -664 272) (2800 -680 272) (2800 -680 96)" - "material" "BRICK/INFWLLG" + "id" "25444" + "plane" "(-848 -144 240) (-848 -96 240) (-848 -96 304)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -112975,9 +117632,9 @@ world } side { - "id" "54059" - "plane" "(2832 -664 96) (2832 -680 96) (2832 -680 272)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25443" + "plane" "(-752 -96 240) (-752 -144 240) (-752 -144 304)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -112986,9 +117643,9 @@ world } side { - "id" "54058" - "plane" "(2832 -664 272) (2800 -664 272) (2800 -664 96)" - "material" "DEV/REFLECTIVITY_50B" + "id" "25442" + "plane" "(-848 -96 240) (-752 -96 240) (-752 -96 304)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -112997,9 +117654,9 @@ world } side { - "id" "54057" - "plane" "(2832 -680 96) (2800 -680 96) (2800 -680 272)" - "material" "BRICK/INFWLLG" + "id" "25441" + "plane" "(-752 -144 240) (-848 -144 240) (-848 -144 304)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113008,18 +117665,19 @@ world } editor { - "color" "0 199 244" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135218" + "id" "31103" side { - "id" "54074" - "plane" "(2800 -760 272) (2832 -760 272) (2832 -776 272)" + "id" "25458" + "plane" "(-864 -144 304) (-864 -96 304) (-848 -96 304)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -113029,8 +117687,8 @@ world } side { - "id" "54073" - "plane" "(2800 -776 96) (2832 -776 96) (2832 -760 96)" + "id" "25457" + "plane" "(-864 -96 0) (-864 -144 0) (-848 -144 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -113040,31 +117698,31 @@ world } side { - "id" "54072" - "plane" "(2800 -760 272) (2800 -776 272) (2800 -776 96)" - "material" "BRICK/INFWLLG" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25456" + "plane" "(-864 -144 0) (-864 -96 0) (-864 -96 304)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54071" - "plane" "(2832 -760 96) (2832 -776 96) (2832 -776 272)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25455" + "plane" "(-848 -96 0) (-848 -144 0) (-848 -144 304)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54070" - "plane" "(2832 -760 272) (2800 -760 272) (2800 -760 96)" - "material" "BRICK/INFWLLG" + "id" "25454" + "plane" "(-864 -96 0) (-848 -96 0) (-848 -96 304)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113073,29 +117731,30 @@ world } side { - "id" "54069" - "plane" "(2832 -776 96) (2800 -776 96) (2800 -776 272)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25453" + "plane" "(-848 -144 0) (-864 -144 0) (-864 -144 304)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 244" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135219" + "id" "31117" side { - "id" "54086" - "plane" "(2816 -680 272) (2832 -680 272) (2832 -760 272)" + "id" "25470" + "plane" "(-592 -144 304) (-592 64 304) (-576 64 304)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -113105,9 +117764,9 @@ world } side { - "id" "54085" - "plane" "(2816 -760 212) (2832 -760 212) (2832 -680 212)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25469" + "plane" "(-592 64 0) (-592 -144 0) (-576 -144 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -113116,20 +117775,20 @@ world } side { - "id" "54084" - "plane" "(2816 -680 272) (2816 -760 272) (2816 -760 212)" - "material" "BRICK/INFWLLG" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25468" + "plane" "(-592 -144 0) (-592 64 0) (-592 64 304)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54083" - "plane" "(2832 -680 212) (2832 -760 212) (2832 -760 272)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25467" + "plane" "(-576 64 0) (-576 -144 0) (-576 -144 304)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113138,9 +117797,9 @@ world } side { - "id" "54082" - "plane" "(2832 -680 272) (2816 -680 272) (2816 -680 212)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25466" + "plane" "(-592 64 0) (-576 64 0) (-576 64 304)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113149,53 +117808,54 @@ world } side { - "id" "54081" - "plane" "(2832 -760 212) (2816 -760 212) (2816 -760 272)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25465" + "plane" "(-576 -144 0) (-592 -144 0) (-592 -144 304)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 244" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135316" + "id" "31122" side { - "id" "54122" - "plane" "(2760 -664 128) (2816 -664 128) (2816 -668 128)" + "id" "25482" + "plane" "(-848 -144 192) (-848 -128 192) (-592 -128 192)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54121" - "plane" "(2760 -668 96) (2816 -668 96) (2816 -664 96)" + "id" "25481" + "plane" "(-848 -128 176) (-848 -144 176) (-592 -144 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54120" - "plane" "(2760 -664 128) (2760 -668 128) (2760 -668 96)" + "id" "25480" + "plane" "(-848 -144 176) (-848 -128 176) (-848 -128 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113203,10 +117863,10 @@ world } side { - "id" "54119" - "plane" "(2816 -664 96) (2816 -668 96) (2816 -668 128)" + "id" "25479" + "plane" "(-592 -128 176) (-592 -144 176) (-592 -144 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113214,10 +117874,10 @@ world } side { - "id" "54118" - "plane" "(2816 -664 128) (2760 -664 128) (2760 -664 96)" + "id" "25478" + "plane" "(-848 -128 176) (-592 -128 176) (-592 -128 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113225,10 +117885,10 @@ world } side { - "id" "54117" - "plane" "(2816 -668 96) (2760 -668 96) (2760 -668 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "id" "25477" + "plane" "(-592 -144 176) (-848 -144 176) (-848 -144 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113236,18 +117896,19 @@ world } editor { - "color" "0 161 190" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135410" + "id" "31125" side { - "id" "54134" - "plane" "(2752 -776 228) (2816 -776 228) (2816 -896 228)" + "id" "25494" + "plane" "(-848 -128 160) (-848 -96 160) (-832 -96 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -113257,9 +117918,9 @@ world } side { - "id" "54133" - "plane" "(2752 -896 224) (2816 -896 224) (2816 -776 224)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25493" + "plane" "(-848 -96 0) (-848 -128 0) (-832 -128 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -113268,9 +117929,9 @@ world } side { - "id" "54132" - "plane" "(2752 -776 228) (2752 -896 228) (2752 -896 224)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25492" + "plane" "(-848 -128 0) (-848 -96 0) (-848 -96 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113279,9 +117940,9 @@ world } side { - "id" "54131" - "plane" "(2816 -776 224) (2816 -896 224) (2816 -896 228)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25491" + "plane" "(-832 -96 0) (-832 -128 0) (-832 -128 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113290,8 +117951,8 @@ world } side { - "id" "54130" - "plane" "(2816 -776 228) (2752 -776 228) (2752 -776 224)" + "id" "25490" + "plane" "(-848 -96 0) (-832 -96 0) (-832 -96 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -113301,9 +117962,9 @@ world } side { - "id" "54129" - "plane" "(2816 -896 224) (2752 -896 224) (2752 -896 228)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25489" + "plane" "(-832 -128 0) (-848 -128 0) (-848 -128 160)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113312,30 +117973,31 @@ world } editor { - "color" "0 199 244" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135434" + "id" "31128" side { - "id" "54182" - "plane" "(2752 -768 228) (2800 -768 228) (2800 -776 228)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25506" + "plane" "(-832 -128 32) (-832 -96 32) (-768 -96 32)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54181" - "plane" "(2752 -776 224) (2800 -776 224) (2800 -768 224)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25505" + "plane" "(-832 -96 0) (-832 -128 0) (-768 -128 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -113344,9 +118006,9 @@ world } side { - "id" "54180" - "plane" "(2752 -768 228) (2752 -776 228) (2752 -776 224)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25504" + "plane" "(-832 -128 0) (-832 -96 0) (-832 -96 32)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113355,10 +118017,10 @@ world } side { - "id" "54179" - "plane" "(2800 -768 224) (2800 -776 224) (2800 -776 228)" + "id" "25503" + "plane" "(-768 -96 0) (-768 -128 0) (-768 -128 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113366,9 +118028,9 @@ world } side { - "id" "54178" - "plane" "(2800 -768 228) (2752 -768 228) (2752 -768 224)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25502" + "plane" "(-832 -96 0) (-768 -96 0) (-768 -96 32)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113377,8 +118039,8 @@ world } side { - "id" "54177" - "plane" "(2800 -776 224) (2752 -776 224) (2752 -776 228)" + "id" "25501" + "plane" "(-768 -128 0) (-832 -128 0) (-832 -128 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -113388,18 +118050,19 @@ world } editor { - "color" "0 199 244" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135436" + "id" "31148" side { - "id" "54194" - "plane" "(2752 -664 228) (2800 -664 228) (2800 -672 228)" + "id" "25554" + "plane" "(-832 -128 144) (-832 -96 144) (-816 -96 144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -113409,8 +118072,8 @@ world } side { - "id" "54193" - "plane" "(2752 -672 224) (2800 -672 224) (2800 -664 224)" + "id" "25553" + "plane" "(-832 -96 112) (-832 -128 112) (-816 -128 128)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -113420,9 +118083,9 @@ world } side { - "id" "54192" - "plane" "(2752 -664 228) (2752 -672 228) (2752 -672 224)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25552" + "plane" "(-832 -128 112) (-832 -96 112) (-832 -96 144)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113431,10 +118094,10 @@ world } side { - "id" "54191" - "plane" "(2800 -664 224) (2800 -672 224) (2800 -672 228)" + "id" "25551" + "plane" "(-832 -96 112) (-816 -96 128) (-816 -96 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113442,9 +118105,9 @@ world } side { - "id" "54190" - "plane" "(2800 -664 228) (2752 -664 228) (2752 -664 224)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25550" + "plane" "(-832 -128 144) (-816 -128 144) (-816 -128 128)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113453,10 +118116,10 @@ world } side { - "id" "54189" - "plane" "(2800 -672 224) (2752 -672 224) (2752 -672 228)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "25549" + "plane" "(-816 -96 128) (-816 -128 128) (-816 -128 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113464,29 +118127,30 @@ world } editor { - "color" "0 199 244" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135437" + "id" "31149" side { - "id" "54206" - "plane" "(2752 -544 228) (2816 -544 228) (2816 -664 228)" + "id" "25560" + "plane" "(-816 -96 144) (-800 -96 144) (-800 -128 144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54205" - "plane" "(2752 -664 224) (2816 -664 224) (2816 -544 224)" + "id" "25559" + "plane" "(-816 -128 128) (-800 -128 132) (-800 -96 132)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -113496,10 +118160,10 @@ world } side { - "id" "54204" - "plane" "(2752 -544 228) (2752 -664 228) (2752 -664 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "25558" + "plane" "(-816 -96 128) (-800 -96 132) (-800 -96 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113507,10 +118171,10 @@ world } side { - "id" "54203" - "plane" "(2816 -544 224) (2816 -664 224) (2816 -664 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "id" "25557" + "plane" "(-816 -128 144) (-800 -128 144) (-800 -128 132)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113518,10 +118182,10 @@ world } side { - "id" "54202" - "plane" "(2816 -544 228) (2752 -544 228) (2752 -544 224)" + "id" "25556" + "plane" "(-816 -128 128) (-816 -96 128) (-816 -96 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113529,10 +118193,10 @@ world } side { - "id" "54201" - "plane" "(2816 -664 224) (2752 -664 224) (2752 -664 228)" + "id" "25555" + "plane" "(-800 -96 132) (-800 -128 132) (-800 -128 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113540,64 +118204,43 @@ world } editor { - "color" "0 199 244" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135591" - side - { - "id" "54287" - "plane" "(2752 -672 228) (2800 -672 228) (2800 -664 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 48] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "31150" side { - "id" "54286" - "plane" "(2752 -664 228) (2800 -664 228) (2800 -664 270.667)" + "id" "25566" + "plane" "(-784 -96 144) (-768 -96 144) (-768 -128 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "54285" - "plane" "(2800 -672 228) (2752 -672 228) (2760 -672 244)" - "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54284" - "plane" "(2752 -672 228) (2752 -664 228) (2760 -664 244)" + "id" "25565" + "plane" "(-768 -128 112) (-768 -96 112) (-784 -96 128)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54283" - "plane" "(2760 -664 244) (2772 -664 256) (2772 -672 256)" + "id" "25564" + "plane" "(-768 -96 112) (-768 -128 112) (-768 -128 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113605,30 +118248,30 @@ world } side { - "id" "54282" - "plane" "(2772 -664 256) (2792 -664 268) (2792 -672 268)" + "id" "25563" + "plane" "(-768 -96 144) (-784 -96 144) (-784 -96 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54281" - "plane" "(2792 -664 268) (2800 -664 270.666) (2800 -672 270.666)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25562" + "plane" "(-768 -128 112) (-784 -128 128) (-784 -128 144)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54280" - "plane" "(2800 -664 228) (2800 -672 228) (2800 -672 270.667)" + "id" "25561" + "plane" "(-784 -128 128) (-784 -96 128) (-784 -96 144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -113638,53 +118281,54 @@ world } editor { - "color" "0 199 244" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135592" + "id" "31151" side { - "id" "54295" - "plane" "(2752 -776 228) (2800 -776 228) (2800 -768 228)" + "id" "25572" + "plane" "(-784 -128 144) (-800 -128 144) (-800 -96 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54294" - "plane" "(2752 -768 228) (2800 -768 228) (2800 -768 270.667)" + "id" "25571" + "plane" "(-784 -96 128) (-800 -96 132) (-800 -128 132)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54293" - "plane" "(2800 -776 228) (2752 -776 228) (2760 -776 244)" + "id" "25570" + "plane" "(-784 -96 144) (-800 -96 144) (-800 -96 132)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54292" - "plane" "(2752 -776 228) (2752 -768 228) (2760 -768 244)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "25569" + "plane" "(-784 -128 128) (-800 -128 132) (-800 -128 144)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113692,8 +118336,8 @@ world } side { - "id" "54291" - "plane" "(2760 -768 244) (2772 -768 256) (2772 -776 256)" + "id" "25568" + "plane" "(-800 -128 132) (-800 -96 132) (-800 -96 144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -113703,30 +118347,8 @@ world } side { - "id" "54290" - "plane" "(2772 -768 256) (2792 -768 268) (2792 -776 268)" - "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" "54289" - "plane" "(2792 -768 268) (2800 -768 270.666) (2800 -776 270.666)" - "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" "54288" - "plane" "(2800 -768 228) (2800 -776 228) (2800 -776 270.667)" + "id" "25567" + "plane" "(-784 -96 128) (-784 -128 128) (-784 -128 144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -113736,19 +118358,20 @@ world } editor { - "color" "0 199 244" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135607" + "id" "31157" side { - "id" "54319" - "plane" "(2800 -776 288) (2816 -776 288) (2816 -912 288)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25584" + "plane" "(-736 -128 72) (-736 -96 72) (-592 -96 72)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -113757,9 +118380,9 @@ world } side { - "id" "54318" - "plane" "(2800 -912 256) (2816 -912 256) (2816 -776 256)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25583" + "plane" "(-736 -96 0) (-736 -128 0) (-592 -128 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -113768,9 +118391,9 @@ world } side { - "id" "54317" - "plane" "(2800 -776 288) (2800 -912 288) (2800 -912 256)" - "material" "BRICK/INFWLLG" + "id" "25582" + "plane" "(-736 -128 0) (-736 -96 0) (-736 -96 72)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113779,8 +118402,8 @@ world } side { - "id" "54316" - "plane" "(2816 -776 256) (2816 -912 256) (2816 -912 288)" + "id" "25581" + "plane" "(-592 -96 0) (-592 -128 0) (-592 -128 72)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -113790,8 +118413,8 @@ world } side { - "id" "54315" - "plane" "(2816 -776 288) (2800 -776 288) (2800 -776 256)" + "id" "25580" + "plane" "(-736 -96 0) (-592 -96 0) (-592 -96 72)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -113801,9 +118424,9 @@ world } side { - "id" "54314" - "plane" "(2816 -912 256) (2800 -912 256) (2800 -912 288)" - "material" "BRICK/INFWLLG" + "id" "25579" + "plane" "(-592 -128 0) (-736 -128 0) (-736 -128 72)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113812,29 +118435,30 @@ world } editor { - "color" "0 199 244" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135613" + "id" "31162" side { - "id" "54331" - "plane" "(2800 -528 288) (2816 -528 288) (2816 -664 288)" + "id" "25596" + "plane" "(-736 -128 144) (-736 -96 144) (-592 -96 144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54330" - "plane" "(2800 -664 256) (2816 -664 256) (2816 -528 256)" + "id" "25595" + "plane" "(-736 -96 128) (-736 -128 128) (-592 -128 128)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -113844,42 +118468,42 @@ world } side { - "id" "54329" - "plane" "(2800 -528 288) (2800 -664 288) (2800 -664 256)" - "material" "BRICK/INFWLLG" + "id" "25594" + "plane" "(-736 -128 128) (-736 -96 128) (-736 -96 144)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54328" - "plane" "(2816 -528 256) (2816 -664 256) (2816 -664 288)" + "id" "25593" + "plane" "(-592 -96 128) (-592 -128 128) (-592 -128 144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54327" - "plane" "(2816 -528 288) (2800 -528 288) (2800 -528 256)" - "material" "BRICK/INFWLLG" + "id" "25592" + "plane" "(-736 -96 128) (-592 -96 128) (-592 -96 144)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54326" - "plane" "(2816 -664 256) (2800 -664 256) (2800 -664 288)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25591" + "plane" "(-592 -128 128) (-736 -128 128) (-736 -128 144)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113888,20 +118512,21 @@ world } editor { - "color" "0 199 244" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135619" + "id" "31165" side { - "id" "54343" - "plane" "(2800 -664 288) (2816 -664 288) (2816 -776 288)" + "id" "25608" + "plane" "(-680 -128 128) (-680 -96 128) (-664 -96 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113909,10 +118534,10 @@ world } side { - "id" "54342" - "plane" "(2800 -776 272) (2816 -776 272) (2816 -664 272)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "25607" + "plane" "(-680 -96 72) (-680 -128 72) (-664 -128 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -113920,9 +118545,9 @@ world } side { - "id" "54341" - "plane" "(2800 -664 288) (2800 -776 288) (2800 -776 272)" - "material" "BRICK/INFWLLG" + "id" "25606" + "plane" "(-680 -128 72) (-680 -96 72) (-680 -96 128)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113931,9 +118556,9 @@ world } side { - "id" "54340" - "plane" "(2816 -664 272) (2816 -776 272) (2816 -776 288)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25605" + "plane" "(-664 -96 72) (-664 -128 72) (-664 -128 128)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113942,20 +118567,20 @@ world } side { - "id" "54339" - "plane" "(2816 -664 288) (2800 -664 288) (2800 -664 272)" + "id" "25604" + "plane" "(-680 -96 72) (-664 -96 72) (-664 -96 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54338" - "plane" "(2816 -776 272) (2800 -776 272) (2800 -776 288)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25603" + "plane" "(-664 -128 72) (-680 -128 72) (-680 -128 128)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -113964,18 +118589,19 @@ world } editor { - "color" "0 199 244" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135622" + "id" "31168" side { - "id" "54355" - "plane" "(2800 -528 384) (2816 -528 384) (2816 -912 384)" + "id" "25620" + "plane" "(-608 -128 128) (-608 -96 128) (-592 -96 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -113985,9 +118611,9 @@ world } side { - "id" "54354" - "plane" "(2800 -912 288) (2816 -912 288) (2816 -528 288)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25619" + "plane" "(-608 -96 72) (-608 -128 72) (-592 -128 72)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -113996,9 +118622,9 @@ world } side { - "id" "54353" - "plane" "(2800 -528 384) (2800 -912 384) (2800 -912 288)" - "material" "BRICK/INFWLLG" + "id" "25618" + "plane" "(-608 -128 72) (-608 -96 72) (-608 -96 128)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -114007,31 +118633,31 @@ world } side { - "id" "54352" - "plane" "(2816 -528 288) (2816 -912 288) (2816 -912 384)" + "id" "25617" + "plane" "(-592 -96 72) (-592 -128 72) (-592 -128 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54351" - "plane" "(2816 -528 384) (2800 -528 384) (2800 -528 288)" - "material" "BRICK/INFWLLG" + "id" "25616" + "plane" "(-608 -96 72) (-592 -96 72) (-592 -96 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54350" - "plane" "(2816 -912 288) (2800 -912 288) (2800 -912 384)" - "material" "BRICK/INFWLLG" + "id" "25615" + "plane" "(-592 -128 72) (-608 -128 72) (-608 -128 128)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -114040,20 +118666,21 @@ world } editor { - "color" "0 199 244" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135625" + "id" "31170" side { - "id" "54367" - "plane" "(2752 -768 96) (2752 -672 96) (2832 -672 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" + "id" "25632" + "plane" "(-736 -120 128) (-736 -96 128) (-608 -96 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114061,8 +118688,8 @@ world } side { - "id" "54366" - "plane" "(2752 -672 64) (2752 -768 64) (2832 -768 64)" + "id" "25631" + "plane" "(-736 -96 72) (-736 -120 72) (-608 -120 72)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -114072,42 +118699,42 @@ world } side { - "id" "54365" - "plane" "(2752 -768 64) (2752 -672 64) (2752 -672 96)" - "material" "DEV/REFLECTIVITY_50B" + "id" "25630" + "plane" "(-736 -120 72) (-736 -96 72) (-736 -96 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54364" - "plane" "(2832 -672 64) (2832 -768 64) (2832 -768 96)" + "id" "25629" + "plane" "(-608 -96 72) (-608 -120 72) (-608 -120 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54363" - "plane" "(2752 -672 64) (2832 -672 64) (2832 -672 96)" + "id" "25628" + "plane" "(-736 -96 72) (-608 -96 72) (-608 -96 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54362" - "plane" "(2832 -768 64) (2752 -768 64) (2752 -768 96)" - "material" "DEV/GRAYGRID" + "id" "25627" + "plane" "(-608 -120 72) (-736 -120 72) (-736 -120 128)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -114116,18 +118743,19 @@ world } editor { - "color" "0 251 136" + "color" "0 187 236" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135627" + "id" "31176" side { - "id" "54379" - "plane" "(2816 -680 212) (2832 -680 212) (2832 -688 212)" + "id" "25644" + "plane" "(-832 -120 144) (-832 -96 144) (-768 -96 144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -114137,8 +118765,8 @@ world } side { - "id" "54378" - "plane" "(2816 -688 96) (2832 -688 96) (2832 -680 96)" + "id" "25643" + "plane" "(-832 -96 32) (-832 -120 32) (-768 -120 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -114148,42 +118776,42 @@ world } side { - "id" "54377" - "plane" "(2816 -680 212) (2816 -688 212) (2816 -688 96)" - "material" "BRICK/INFWLLG" + "id" "25642" + "plane" "(-832 -120 32) (-832 -96 32) (-832 -96 144)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54376" - "plane" "(2832 -680 96) (2832 -688 96) (2832 -688 212)" + "id" "25641" + "plane" "(-768 -96 32) (-768 -120 32) (-768 -120 144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54375" - "plane" "(2832 -680 212) (2816 -680 212) (2816 -680 96)" - "material" "DEV/REFLECTIVITY_50B" + "id" "25640" + "plane" "(-832 -96 32) (-768 -96 32) (-768 -96 144)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54374" - "plane" "(2832 -688 96) (2816 -688 96) (2816 -688 212)" - "material" "DEV/REFLECTIVITY_50B" + "id" "25639" + "plane" "(-768 -120 32) (-832 -120 32) (-832 -120 144)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -114192,41 +118820,42 @@ world } editor { - "color" "0 199 244" + "color" "0 187 236" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "135633" + "id" "31180" side { - "id" "54391" - "plane" "(2816 -752 212) (2832 -752 212) (2832 -760 212)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25656" + "plane" "(-864 -144 320) (-864 -128 320) (-576 -128 320)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54390" - "plane" "(2816 -760 96) (2832 -760 96) (2832 -752 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25655" + "plane" "(-864 -128 304) (-864 -144 304) (-576 -144 304)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "54389" - "plane" "(2816 -752 212) (2816 -760 212) (2816 -760 96)" - "material" "BRICK/INFWLLG" + "id" "25654" + "plane" "(-864 -144 304) (-864 -128 304) (-864 -128 320)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -114235,10 +118864,10 @@ world } side { - "id" "54388" - "plane" "(2832 -752 96) (2832 -760 96) (2832 -760 212)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "id" "25653" + "plane" "(-576 -128 304) (-576 -144 304) (-576 -144 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114246,9 +118875,9 @@ world } side { - "id" "54387" - "plane" "(2832 -752 212) (2816 -752 212) (2816 -752 96)" - "material" "DEV/REFLECTIVITY_50B" + "id" "25652" + "plane" "(-864 -128 304) (-576 -128 304) (-576 -128 320)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -114257,8 +118886,8 @@ world } side { - "id" "54386" - "plane" "(2832 -760 96) (2816 -760 96) (2816 -760 212)" + "id" "25651" + "plane" "(-576 -144 304) (-864 -144 304) (-864 -144 320)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -114268,18 +118897,19 @@ world } editor { - "color" "0 199 244" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "122285" + "id" "31191" side { - "id" "50771" - "plane" "(1216 -896 48) (1216 -1152 48) (1232 -1152 48)" + "id" "25668" + "plane" "(-688 -144 304) (-688 -96 304) (-592 -96 304)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -114289,9 +118919,20 @@ world } side { - "id" "50770" - "plane" "(1216 -1152 48) (1216 -896 48) (1216 -896 56)" + "id" "25667" + "plane" "(-688 -96 240) (-688 -144 240) (-592 -144 240)" "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" "25666" + "plane" "(-688 -144 240) (-688 -96 240) (-688 -96 304)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -114300,10 +118941,10 @@ world } side { - "id" "50769" - "plane" "(1216 -896 48) (1232 -896 48) (1216 -896 56)" + "id" "25665" + "plane" "(-592 -96 240) (-592 -144 240) (-592 -144 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114311,8 +118952,8 @@ world } side { - "id" "50768" - "plane" "(1232 -1152 48) (1216 -1152 48) (1216 -1152 56)" + "id" "25664" + "plane" "(-688 -96 240) (-592 -96 240) (-592 -96 304)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -114322,10 +118963,10 @@ world } side { - "id" "50767" - "plane" "(1232 -896 48) (1232 -1152 48) (1216 -1152 56)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "25663" + "plane" "(-592 -144 240) (-688 -144 240) (-688 -144 304)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114333,41 +118974,41 @@ world } editor { - "color" "0 170 227" - "visgroupid" "23" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "122356" + "id" "31192" side { - "id" "50791" - "plane" "(896 -1152 56) (1136 -1152 56) (1136 -1136 56)" + "id" "25680" + "plane" "(-752 -128 304) (-752 -96 304) (-688 -96 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50790" - "plane" "(1136 -1152 56) (896 -1152 56) (896 -1152 64)" + "id" "25679" + "plane" "(-752 -96 240) (-752 -128 240) (-688 -128 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50789" - "plane" "(896 -1152 56) (896 -1136 56) (896 -1152 64)" + "id" "25678" + "plane" "(-752 -128 240) (-752 -96 240) (-752 -96 304)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" @@ -114377,8 +119018,8 @@ world } side { - "id" "50788" - "plane" "(1136 -1136 56) (1136 -1152 56) (1136 -1152 64)" + "id" "25677" + "plane" "(-688 -96 240) (-688 -128 240) (-688 -128 304)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 32] 0.25" @@ -114388,10 +119029,21 @@ world } side { - "id" "50787" - "plane" "(896 -1136 56) (1136 -1136 56) (1136 -1152 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "25676" + "plane" "(-752 -96 240) (-688 -96 240) (-688 -96 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25675" + "plane" "(-688 -128 240) (-752 -128 240) (-752 -128 304)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114399,42 +119051,43 @@ world } editor { - "color" "0 170 227" + "color" "0 187 236" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "122366" + "id" "31195" side { - "id" "50803" - "plane" "(896 -896 56) (1152 -896 56) (1152 -1152 56)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "25692" + "plane" "(-848 -144 336) (-848 -128 336) (-592 -128 336)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50802" - "plane" "(896 -1152 32) (1152 -1152 32) (1152 -896 32)" + "id" "25691" + "plane" "(-848 -128 320) (-848 -144 320) (-592 -144 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50801" - "plane" "(1152 -896 32) (1152 -1152 32) (1152 -1152 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "25690" + "plane" "(-848 -144 320) (-848 -128 320) (-848 -128 336)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114442,10 +119095,10 @@ world } side { - "id" "50800" - "plane" "(1152 -1152 32) (896 -1152 32) (896 -1152 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "25689" + "plane" "(-592 -128 320) (-592 -144 320) (-592 -144 336)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114453,9 +119106,9 @@ world } side { - "id" "50799" - "plane" "(896 -896 32) (1152 -896 32) (1152 -896 56)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25688" + "plane" "(-848 -128 320) (-592 -128 320) (-592 -128 336)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -114464,54 +119117,54 @@ world } side { - "id" "50798" - "plane" "(896 -1152 32) (896 -896 32) (896 -896 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "25687" + "plane" "(-592 -144 320) (-848 -144 320) (-848 -144 336)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 221 166" - "visgroupid" "23" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "122441" + "id" "31198" side { - "id" "50809" - "plane" "(1472 -896 56) (1472 -1152 56) (1344 -1152 56)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "25704" + "plane" "(-832 -144 352) (-832 -128 352) (-608 -128 352)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50808" - "plane" "(1344 -1152 32) (1472 -1152 32) (1472 -896 32)" + "id" "25703" + "plane" "(-832 -128 336) (-832 -144 336) (-608 -144 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50807" - "plane" "(1472 -896 32) (1472 -1152 32) (1472 -1152 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "25702" + "plane" "(-832 -144 336) (-832 -128 336) (-832 -128 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114519,10 +119172,10 @@ world } side { - "id" "50806" - "plane" "(1472 -1152 32) (1344 -1152 32) (1344 -1152 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "25701" + "plane" "(-608 -128 336) (-608 -144 336) (-608 -144 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114530,10 +119183,10 @@ world } side { - "id" "50805" - "plane" "(1344 -1152 32) (1344 -896 32) (1344 -896 56)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 0] 0.25" + "id" "25700" + "plane" "(-832 -128 336) (-608 -128 336) (-608 -128 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114541,9 +119194,9 @@ world } side { - "id" "50804" - "plane" "(1344 -896 32) (1472 -896 32) (1472 -896 56)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "25699" + "plane" "(-608 -144 336) (-832 -144 336) (-832 -144 352)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -114552,43 +119205,43 @@ world } editor { - "color" "0 221 166" - "visgroupid" "23" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "122447" + "id" "31201" side { - "id" "50825" - "plane" "(1344 -1152 48) (1344 -896 48) (1328 -896 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "25716" + "plane" "(-816 -144 368) (-816 -128 368) (-624 -128 368)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50824" - "plane" "(1344 -896 48) (1344 -1152 48) (1344 -1152 56)" + "id" "25715" + "plane" "(-816 -128 352) (-816 -144 352) (-624 -144 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50823" - "plane" "(1344 -1152 48) (1328 -1152 48) (1344 -1152 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "25714" + "plane" "(-816 -144 352) (-816 -128 352) (-816 -128 368)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114596,10 +119249,10 @@ world } side { - "id" "50822" - "plane" "(1328 -896 48) (1344 -896 48) (1344 -896 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "25713" + "plane" "(-624 -128 352) (-624 -144 352) (-624 -144 368)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114607,10 +119260,21 @@ world } side { - "id" "50821" - "plane" "(1328 -1152 48) (1328 -896 48) (1344 -896 56)" + "id" "25712" + "plane" "(-816 -128 352) (-624 -128 352) (-624 -128 368)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25711" + "plane" "(-624 -144 352) (-816 -144 352) (-816 -144 368)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114618,109 +119282,120 @@ world } editor { - "color" "0 170 227" - "visgroupid" "23" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "122470" + "id" "31204" side { - "id" "50835" - "plane" "(1472 -1152 56) (1472 -896 56) (1456 -896 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "25728" + "plane" "(-800 -144 384) (-800 -128 384) (-640 -128 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50834" - "plane" "(1472 -896 56) (1472 -1152 56) (1472 -1152 64)" + "id" "25727" + "plane" "(-800 -128 368) (-800 -144 368) (-640 -144 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50833" - "plane" "(1472 -1152 56) (1456 -1152 56) (1472 -1152 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "25726" + "plane" "(-800 -144 368) (-800 -128 368) (-800 -128 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50832" - "plane" "(1456 -896 56) (1472 -896 56) (1472 -896 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "25725" + "plane" "(-640 -128 368) (-640 -144 368) (-640 -144 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50831" - "plane" "(1456 -1152 56) (1456 -896 56) (1472 -896 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 64] 0.25" + "id" "25724" + "plane" "(-800 -128 368) (-640 -128 368) (-640 -128 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor + side { - "color" "0 170 227" - "visgroupid" "23" + "id" "25723" + "plane" "(-640 -144 368) (-800 -144 368) (-800 -144 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "119385" + "id" "31206" side { - "id" "50112" - "plane" "(160 -608 104) (160 -544 104) (192 -544 104)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "25740" + "plane" "(-784 -144 400) (-784 -128 400) (-656 -128 400)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50111" - "plane" "(160 -544 96) (160 -608 96) (192 -608 96)" + "id" "25739" + "plane" "(-784 -128 384) (-784 -144 384) (-656 -144 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50110" - "plane" "(160 -608 96) (160 -544 96) (160 -544 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "id" "25738" + "plane" "(-784 -144 384) (-784 -128 384) (-784 -128 400)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114728,9 +119403,9 @@ world } side { - "id" "50109" - "plane" "(192 -544 96) (192 -608 96) (192 -608 104)" - "material" "DEV/GRAYGRID" + "id" "25737" + "plane" "(-656 -128 384) (-656 -144 384) (-656 -144 400)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -114739,9 +119414,9 @@ world } side { - "id" "50108" - "plane" "(160 -544 96) (192 -544 96) (192 -544 104)" - "material" "DEV/GRAYGRID" + "id" "25736" + "plane" "(-784 -128 384) (-656 -128 384) (-656 -128 400)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -114750,9 +119425,9 @@ world } side { - "id" "50107" - "plane" "(192 -608 96) (160 -608 96) (160 -608 104)" - "material" "DEV/GRAYGRID" + "id" "25735" + "plane" "(-656 -144 384) (-784 -144 384) (-784 -144 400)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -114761,19 +119436,20 @@ world } editor { - "color" "0 158 183" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "119395" + "id" "31209" side { - "id" "50124" - "plane" "(160 -544 208) (160 -536 208) (168 -536 208)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25752" + "plane" "(-768 -144 416) (-768 -128 416) (-672 -128 416)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -114782,10 +119458,10 @@ world } side { - "id" "50123" - "plane" "(160 -536 96) (160 -544 96) (168 -544 96)" + "id" "25751" + "plane" "(-768 -128 400) (-768 -144 400) (-672 -144 400)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114793,19 +119469,19 @@ world } side { - "id" "50122" - "plane" "(160 -544 96) (160 -536 96) (160 -536 208)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25750" + "plane" "(-768 -144 400) (-768 -128 400) (-768 -128 416)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50121" - "plane" "(168 -536 96) (168 -544 96) (168 -544 208)" + "id" "25749" + "plane" "(-672 -128 400) (-672 -144 400) (-672 -144 416)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -114815,8 +119491,8 @@ world } side { - "id" "50120" - "plane" "(160 -536 96) (168 -536 96) (168 -536 208)" + "id" "25748" + "plane" "(-768 -128 400) (-672 -128 400) (-672 -128 416)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -114826,9 +119502,9 @@ world } side { - "id" "50119" - "plane" "(168 -544 96) (160 -544 96) (160 -544 208)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25747" + "plane" "(-672 -144 400) (-768 -144 400) (-768 -144 416)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -114837,19 +119513,20 @@ world } editor { - "color" "0 158 183" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "119404" + "id" "31211" side { - "id" "50136" - "plane" "(160 -608 208) (160 -544 208) (168 -544 208)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25764" + "plane" "(-752 -144 432) (-752 -128 432) (-688 -128 432)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -114858,9 +119535,9 @@ world } side { - "id" "50135" - "plane" "(160 -544 200) (160 -608 200) (168 -608 200)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25763" + "plane" "(-752 -128 416) (-752 -144 416) (-688 -144 416)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -114869,19 +119546,19 @@ world } side { - "id" "50134" - "plane" "(160 -608 200) (160 -544 200) (160 -544 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "25762" + "plane" "(-752 -144 416) (-752 -128 416) (-752 -128 432)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50133" - "plane" "(168 -544 200) (168 -608 200) (168 -608 208)" + "id" "25761" + "plane" "(-688 -128 416) (-688 -144 416) (-688 -144 432)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -114891,41 +119568,42 @@ world } side { - "id" "50132" - "plane" "(160 -544 200) (168 -544 200) (168 -544 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "25760" + "plane" "(-752 -128 416) (-688 -128 416) (-688 -128 432)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50131" - "plane" "(168 -608 200) (160 -608 200) (160 -608 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "25759" + "plane" "(-688 -144 416) (-752 -144 416) (-752 -144 432)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "119409" + "id" "31213" side { - "id" "50148" - "plane" "(160 -616 208) (160 -608 208) (168 -608 208)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25776" + "plane" "(-736 -144 448) (-736 -128 448) (-704 -128 448)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -114934,30 +119612,30 @@ world } side { - "id" "50147" - "plane" "(160 -608 96) (160 -616 96) (168 -616 96)" + "id" "25775" + "plane" "(-736 -128 432) (-736 -144 432) (-704 -144 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50146" - "plane" "(160 -616 96) (160 -608 96) (160 -608 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "25774" + "plane" "(-736 -144 432) (-736 -128 432) (-736 -128 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50145" - "plane" "(168 -608 96) (168 -616 96) (168 -616 208)" + "id" "25773" + "plane" "(-704 -128 432) (-704 -144 432) (-704 -144 448)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -114967,8 +119645,8 @@ world } side { - "id" "50144" - "plane" "(160 -608 96) (168 -608 96) (168 -608 208)" + "id" "25772" + "plane" "(-736 -128 432) (-704 -128 432) (-704 -128 448)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -114978,9 +119656,9 @@ world } side { - "id" "50143" - "plane" "(168 -616 96) (160 -616 96) (160 -616 208)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25771" + "plane" "(-704 -144 432) (-736 -144 432) (-736 -144 448)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -114989,18 +119667,19 @@ world } editor { - "color" "0 158 183" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "119410" + "id" "31239" side { - "id" "50160" - "plane" "(160 -608 200) (160 -544 200) (164 -544 200)" + "id" "25793" + "plane" "(-592 432 304) (-720 432 304) (-720 -128 304)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -115010,32 +119689,21 @@ world } side { - "id" "50159" - "plane" "(160 -544 104) (160 -608 104) (164 -608 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "50158" - "plane" "(160 -608 104) (160 -544 104) (160 -544 200)" + "id" "25792" + "plane" "(-720 -128 432) (-720 -128 304) (-720 432 304)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50157" - "plane" "(164 -544 104) (164 -608 104) (164 -608 200)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" + "id" "25791" + "plane" "(-720 432 432) (-720 432 304) (-592 432 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115043,40 +119711,41 @@ world } side { - "id" "50156" - "plane" "(160 -544 104) (164 -544 104) (164 -544 200)" + "id" "25790" + "plane" "(-592 -128 304) (-720 -128 304) (-720 -128 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50155" - "plane" "(164 -608 104) (160 -608 104) (160 -608 200)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "25789" + "plane" "(-592 432 304) (-592 -128 304) (-720 -128 432)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" + "color" "0 113 138" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "119442" + "id" "31255" side { - "id" "50172" - "plane" "(336 -256 136) (336 -240 136) (384 -240 136)" + "id" "25805" + "plane" "(-1024 -128 304) (-1024 -96 304) (-864 -96 304)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -115086,8 +119755,8 @@ world } side { - "id" "50171" - "plane" "(336 -240 95) (336 -256 95) (384 -256 95)" + "id" "25804" + "plane" "(-1024 -96 0) (-1024 -128 0) (-864 -128 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -115097,19 +119766,19 @@ world } side { - "id" "50170" - "plane" "(336 -256 95) (336 -240 95) (336 -240 136)" - "material" "TEROUST/ARPEGGIO/WALLPAPER/WALLPAPER_FLOWER_INVERT_SMALL" - "uaxis" "[0 1 0 -49] 0.25" - "vaxis" "[0 0 -1 128] 0.25" + "id" "25803" + "plane" "(-1024 -128 0) (-1024 -96 0) (-1024 -96 304)" + "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" "50169" - "plane" "(384 -240 95) (384 -256 95) (384 -256 136)" + "id" "25802" + "plane" "(-864 -96 0) (-864 -128 0) (-864 -128 304)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -115119,8 +119788,8 @@ world } side { - "id" "50168" - "plane" "(336 -240 95) (384 -240 95) (384 -240 136)" + "id" "25801" + "plane" "(-1024 -96 0) (-864 -96 0) (-864 -96 304)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -115130,53 +119799,43 @@ world } side { - "id" "50167" - "plane" "(384 -256 95) (336 -256 95) (336 -256 136)" - "material" "TEROUST/ARPEGGIO/WALLPAPER/WALLPAPER_FLOWER_INVERT_SMALL" - "uaxis" "[-1 0 0 15] 0.25" - "vaxis" "[0 0 -1 128] 0.25" + "id" "25800" + "plane" "(-864 -128 0) (-1024 -128 0) (-1024 -128 304)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 108 237" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "119445" + "id" "31258" side { - "id" "50184" - "plane" "(224 -256 320) (224 -240 320) (352 -240 320)" + "id" "25815" + "plane" "(-720 16 304) (-1024 16 304) (-1024 -112 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50183" - "plane" "(224 -240 256) (224 -256 256) (352 -256 256)" + "id" "25814" + "plane" "(-1024 16 432) (-1024 16 304) (-720 16 304)" "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" "50182" - "plane" "(224 -256 256) (224 -240 256) (224 -240 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115184,10 +119843,10 @@ world } side { - "id" "50181" - "plane" "(352 -240 256) (352 -256 256) (352 -256 320)" + "id" "25813" + "plane" "(-720 16 432) (-720 16 304) (-720 -112 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115195,10 +119854,10 @@ world } side { - "id" "50180" - "plane" "(224 -240 256) (352 -240 256) (352 -240 320)" + "id" "25812" + "plane" "(-1024 -112 304) (-1024 16 304) (-1024 16 432)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115206,9 +119865,9 @@ world } side { - "id" "50179" - "plane" "(352 -256 256) (224 -256 256) (224 -256 320)" - "material" "DEV/REFLECTIVITY_50B" + "id" "25811" + "plane" "(-720 -112 304) (-1024 -112 304) (-1024 16 432)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115217,42 +119876,32 @@ world } editor { - "color" "0 108 237" + "color" "0 113 138" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "119480" - side - { - "id" "50274" - "plane" "(244 -260 96) (244 -240 96) (332 -240 96)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[0 1 0 0] 0.2" - "vaxis" "[1 0 0 0] 0.2" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "31263" side { - "id" "50273" - "plane" "(244 -240 -128) (244 -260 -128) (332 -260 -128)" + "id" "25825" + "plane" "(-848 -128 304) (-720 -128 304) (-720 432 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50272" - "plane" "(244 -260 -128) (244 -240 -128) (244 -240 96)" + "id" "25824" + "plane" "(-720 432 432) (-720 432 304) (-720 -128 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115260,10 +119909,10 @@ world } side { - "id" "50271" - "plane" "(332 -240 -128) (332 -260 -128) (332 -260 96)" + "id" "25823" + "plane" "(-720 -128 432) (-720 -128 304) (-848 -128 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115271,10 +119920,10 @@ world } side { - "id" "50270" - "plane" "(244 -240 -128) (332 -240 -128) (332 -240 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "25822" + "plane" "(-848 432 304) (-720 432 304) (-720 432 432)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115282,10 +119931,10 @@ world } side { - "id" "50269" - "plane" "(332 -260 -128) (244 -260 -128) (244 -260 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "25821" + "plane" "(-848 -128 304) (-848 432 304) (-720 432 432)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115293,42 +119942,43 @@ world } editor { - "color" "0 158 183" + "color" "0 113 138" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "119494" + "id" "31310" side { - "id" "50286" - "plane" "(960 192 320) (960 128 320) (896 128 320)" + "id" "25965" + "plane" "(-848 432 304) (-848 448 304) (-592 448 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50285" - "plane" "(960 128 64) (960 192 64) (896 192 64)" + "id" "25964" + "plane" "(-848 448 0) (-848 432 0) (-592 432 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50284" - "plane" "(960 192 64) (960 128 64) (960 128 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "25963" + "plane" "(-848 432 0) (-848 448 0) (-848 448 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115336,10 +119986,10 @@ world } side { - "id" "50283" - "plane" "(896 128 64) (896 192 64) (896 192 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "25962" + "plane" "(-592 448 0) (-592 432 0) (-592 432 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115347,10 +119997,10 @@ world } side { - "id" "50282" - "plane" "(896 192 64) (960 192 64) (960 192 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "25961" + "plane" "(-848 448 0) (-592 448 0) (-592 448 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115358,10 +120008,10 @@ world } side { - "id" "50281" - "plane" "(960 128 64) (896 128 64) (896 128 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "25960" + "plane" "(-592 432 0) (-848 432 0) (-848 432 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115369,42 +120019,43 @@ world } editor { - "color" "0 108 237" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "119502" + "id" "31480" side { - "id" "50298" - "plane" "(704 -192 128) (576 -192 128) (576 -128 128)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 -12.8] 0.25" + "id" "25977" + "plane" "(-592 208 304) (-592 448 304) (-576 448 304)" + "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" "50297" - "plane" "(576 -192 64) (704 -192 64) (704 -128 64)" + "id" "25976" + "plane" "(-592 448 0) (-592 208 0) (-576 208 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 29.0909] 0.25" - "vaxis" "[0 -1 0 -12.8] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "50296" - "plane" "(704 -192 64) (576 -192 64) (576 -192 128)" + "id" "25975" + "plane" "(-592 208 0) (-592 448 0) (-592 448 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 29.0909] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115412,8 +120063,8 @@ world } side { - "id" "50295" - "plane" "(704 -128 64) (704 -192 64) (704 -192 128)" + "id" "25974" + "plane" "(-576 448 0) (-576 208 0) (-576 208 304)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -115423,10 +120074,10 @@ world } side { - "id" "50294" - "plane" "(576 -128 64) (704 -128 64) (704 -128 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 29.0909] 0.25" + "id" "25973" + "plane" "(-592 448 0) (-576 448 0) (-576 448 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115434,10 +120085,10 @@ world } side { - "id" "50293" - "plane" "(576 -192 64) (576 -128 64) (576 -128 128)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 12.8] 0.25" + "id" "25972" + "plane" "(-576 208 0) (-592 208 0) (-592 208 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115445,21 +120096,20 @@ world } editor { - "color" "0 226 179" - "groupid" "119501" - "visgroupid" "23" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "118136" + "id" "31487" side { - "id" "50076" - "plane" "(2304 -512 384) (2304 -192 384) (2432 -192 384)" - "material" "TOOLS/TOOLSNODRAW" + "id" "25989" + "plane" "(-592 64 96) (-592 208 96) (-576 208 96)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -115468,8 +120118,8 @@ world } side { - "id" "50075" - "plane" "(2304 -192 256) (2304 -512 256) (2432 -512 256)" + "id" "25988" + "plane" "(-592 208 0) (-592 64 0) (-576 64 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -115479,8 +120129,8 @@ world } side { - "id" "50074" - "plane" "(2304 -512 256) (2304 -192 256) (2304 -192 384)" + "id" "25987" + "plane" "(-592 64 0) (-592 208 0) (-592 208 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -115490,8 +120140,8 @@ world } side { - "id" "50073" - "plane" "(2432 -192 256) (2432 -512 256) (2432 -512 384)" + "id" "25986" + "plane" "(-576 208 0) (-576 64 0) (-576 64 96)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -115501,9 +120151,9 @@ world } side { - "id" "50072" - "plane" "(2304 -192 256) (2432 -192 256) (2432 -192 384)" - "material" "DEV/REFLECTIVITY_50B" + "id" "25985" + "plane" "(-592 208 0) (-576 208 0) (-576 208 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115512,9 +120162,9 @@ world } side { - "id" "50071" - "plane" "(2432 -512 256) (2304 -512 256) (2304 -512 384)" - "material" "DEV/REFLECTIVITY_50B" + "id" "25984" + "plane" "(-576 64 0) (-592 64 0) (-592 64 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115523,19 +120173,20 @@ world } editor { - "color" "0 137 234" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "116786" + "id" "31492" side { - "id" "49811" - "plane" "(576 -1312 175.885) (704 -1312 175.885) (704 -1440 175.885)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26001" + "plane" "(-592 64 304) (-592 208 304) (-576 208 304)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -115544,9 +120195,9 @@ world } side { - "id" "49812" - "plane" "(576 -1440 63.8847) (704 -1440 63.8847) (704 -1312 63.8847)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26000" + "plane" "(-592 208 160) (-592 64 160) (-576 64 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -115555,9 +120206,9 @@ world } side { - "id" "49813" - "plane" "(576 -1312 175.885) (576 -1440 175.885) (576 -1440 63.8847)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25999" + "plane" "(-592 64 160) (-592 208 160) (-592 208 304)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115566,9 +120217,9 @@ world } side { - "id" "49814" - "plane" "(704 -1312 63.8847) (704 -1440 63.8847) (704 -1440 175.885)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25998" + "plane" "(-576 208 160) (-576 64 160) (-576 64 304)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115577,9 +120228,9 @@ world } side { - "id" "49815" - "plane" "(704 -1312 175.885) (576 -1312 175.885) (576 -1312 63.8847)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25997" + "plane" "(-592 208 160) (-576 208 160) (-576 208 304)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115588,9 +120239,9 @@ world } side { - "id" "49816" - "plane" "(704 -1440 63.8847) (576 -1440 63.8847) (576 -1440 175.885)" - "material" "DEV/REFLECTIVITY_30B" + "id" "25996" + "plane" "(-576 64 160) (-592 64 160) (-592 64 304)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115599,21 +120250,20 @@ world } editor { - "color" "0 251 180" - "visgroupid" "24" - "visgroupid" "23" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "116797" + "id" "31494" side { - "id" "49828" - "plane" "(-104 -528 16) (-104 -240 16) (-64 -240 16)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26013" + "plane" "(-592 128 160) (-592 144 160) (-576 144 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -115622,8 +120272,8 @@ world } side { - "id" "49827" - "plane" "(-104 -240 4.45048e-06) (-104 -528 4.45048e-06) (-64 -528 4.45048e-06)" + "id" "26012" + "plane" "(-592 144 96) (-592 128 96) (-576 128 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -115633,9 +120283,9 @@ world } side { - "id" "49826" - "plane" "(-104 -528 4.45048e-06) (-104 -240 4.45048e-06) (-104 -240 16)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26011" + "plane" "(-592 128 96) (-592 144 96) (-592 144 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115644,9 +120294,9 @@ world } side { - "id" "49825" - "plane" "(-64 -240 4.45048e-06) (-64 -528 4.45048e-06) (-64 -528 16)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26010" + "plane" "(-576 144 96) (-576 128 96) (-576 128 160)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115655,9 +120305,9 @@ world } side { - "id" "49824" - "plane" "(-104 -240 4.45048e-06) (-64 -240 4.45048e-06) (-64 -240 16)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26009" + "plane" "(-592 144 96) (-576 144 96) (-576 144 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115666,9 +120316,9 @@ world } side { - "id" "49823" - "plane" "(-64 -528 4.45048e-06) (-104 -528 4.45048e-06) (-104 -528 16)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26008" + "plane" "(-576 128 96) (-592 128 96) (-592 128 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115677,20 +120327,20 @@ world } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "116803" + "id" "31498" side { - "id" "49840" - "plane" "(-64 -528 32) (-64 -240 32) (-32 -240 32)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26025" + "plane" "(-592 64 160) (-592 208 160) (-584 208 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -115699,8 +120349,8 @@ world } side { - "id" "49839" - "plane" "(-64 -240 0) (-64 -528 0) (-32 -528 0)" + "id" "26024" + "plane" "(-592 208 96) (-592 64 96) (-584 64 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -115710,9 +120360,9 @@ world } side { - "id" "49838" - "plane" "(-64 -528 0) (-64 -240 0) (-64 -240 32)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26023" + "plane" "(-592 64 96) (-592 208 96) (-592 208 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115721,9 +120371,9 @@ world } side { - "id" "49837" - "plane" "(-32 -240 0) (-32 -528 0) (-32 -528 32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26022" + "plane" "(-584 208 96) (-584 64 96) (-584 64 160)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115732,8 +120382,8 @@ world } side { - "id" "49836" - "plane" "(-64 -240 0) (-32 -240 0) (-32 -240 32)" + "id" "26021" + "plane" "(-592 208 96) (-584 208 96) (-584 208 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -115743,31 +120393,31 @@ world } side { - "id" "49835" - "plane" "(-32 -528 0) (-64 -528 0) (-64 -528 32)" + "id" "26020" + "plane" "(-584 64 96) (-592 64 96) (-592 64 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 255 124" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "116805" + "id" "31890" side { - "id" "49852" - "plane" "(-32 -528 48) (-32 -240 48) (0 -240 48)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26043" + "plane" "(128 -2976 96) (128 -2944 96) (320 -2944 96)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -115776,8 +120426,8 @@ world } side { - "id" "49851" - "plane" "(-32 -240 0) (-32 -528 0) (0 -528 0)" + "id" "26042" + "plane" "(128 -2944 0) (128 -2976 0) (320 -2976 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -115787,9 +120437,9 @@ world } side { - "id" "49850" - "plane" "(-32 -528 0) (-32 -240 0) (-32 -240 48)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26041" + "plane" "(128 -2976 0) (128 -2944 0) (128 -2944 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115798,8 +120448,8 @@ world } side { - "id" "49849" - "plane" "(0 -240 0) (0 -528 0) (0 -528 48)" + "id" "26040" + "plane" "(320 -2944 0) (320 -2976 0) (320 -2976 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -115809,9 +120459,9 @@ world } side { - "id" "49848" - "plane" "(-32 -240 0) (0 -240 0) (0 -240 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26039" + "plane" "(128 -2944 0) (320 -2944 0) (320 -2944 96)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115820,18 +120470,19 @@ world } side { - "id" "49847" - "plane" "(0 -528 0) (-32 -528 0) (-32 -528 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26038" + "plane" "(320 -2976 0) (128 -2976 0) (128 -2976 96)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" + "color" "0 237 122" + "groupid" "31889" "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" @@ -115839,12 +120490,12 @@ world } solid { - "id" "116807" + "id" "31902" side { - "id" "49864" - "plane" "(0 -528 64) (0 -240 64) (32 -240 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26055" + "plane" "(-128 -2976 32) (-128 -2944 32) (128 -2944 96)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -115853,10 +120504,10 @@ world } side { - "id" "49863" - "plane" "(0 -240 0) (0 -528 0) (32 -528 0)" + "id" "26054" + "plane" "(-128 -2944 0) (-128 -2976 0) (128 -2976 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 21.3333] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115864,8 +120515,8 @@ world } side { - "id" "49862" - "plane" "(0 -528 0) (0 -240 0) (0 -240 64)" + "id" "26053" + "plane" "(-128 -2976 0) (-128 -2944 0) (-128 -2944 32)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -115875,8 +120526,8 @@ world } side { - "id" "49861" - "plane" "(32 -240 0) (32 -528 0) (32 -528 64)" + "id" "26052" + "plane" "(128 -2944 0) (128 -2976 0) (128 -2976 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -115886,9 +120537,9 @@ world } side { - "id" "49860" - "plane" "(0 -240 0) (32 -240 0) (32 -240 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26051" + "plane" "(128 -2944 96) (-128 -2944 32) (-128 -2944 0)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115897,18 +120548,19 @@ world } side { - "id" "49859" - "plane" "(32 -528 0) (0 -528 0) (0 -528 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26050" + "plane" "(128 -2976 0) (-128 -2976 0) (-128 -2976 32)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" + "color" "0 237 122" + "groupid" "31901" "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" @@ -115916,13 +120568,13 @@ world } solid { - "id" "116809" + "id" "31939" side { - "id" "49876" - "plane" "(32 -528 80) (32 -240 80) (64 -240 80)" + "id" "26085" + "plane" "(-800 -3264 0) (-800 -2976 0) (-512 -2976 0)" "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -115930,8 +120582,8 @@ world } side { - "id" "49875" - "plane" "(32 -240 0) (32 -528 0) (64 -528 0)" + "id" "26084" + "plane" "(-800 -2976 -64) (-800 -3264 -64) (-512 -3264 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -115941,9 +120593,9 @@ world } side { - "id" "49874" - "plane" "(32 -528 0) (32 -240 0) (32 -240 80)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26083" + "plane" "(-800 -3264 -64) (-800 -2976 -64) (-800 -2976 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -115952,8 +120604,8 @@ world } side { - "id" "49873" - "plane" "(64 -240 0) (64 -528 0) (64 -528 80)" + "id" "26082" + "plane" "(-512 -2976 -64) (-512 -3264 -64) (-512 -3264 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -115963,8 +120615,8 @@ world } side { - "id" "49872" - "plane" "(32 -240 0) (64 -240 0) (64 -240 80)" + "id" "26081" + "plane" "(-800 -2976 -64) (-512 -2976 -64) (-512 -2976 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -115974,31 +120626,30 @@ world } side { - "id" "49871" - "plane" "(64 -528 0) (32 -528 0) (32 -528 80)" + "id" "26080" + "plane" "(-512 -3264 -64) (-800 -3264 -64) (-800 -3264 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "116813" + "id" "31941" side { - "id" "49888" - "plane" "(-80 -528 24) (-80 -240 24) (-64 -240 24)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26097" + "plane" "(128 -3040 288) (320 -3040 288) (320 -3200 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116007,8 +120658,8 @@ world } side { - "id" "49887" - "plane" "(-80 -240 16) (-80 -528 16) (-64 -528 16)" + "id" "26096" + "plane" "(-32 -3200 0) (320 -3200 0) (320 -3040 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -116018,8 +120669,8 @@ world } side { - "id" "49886" - "plane" "(-80 -528 16) (-80 -240 16) (-80 -240 24)" + "id" "26095" + "plane" "(128 -3040 0) (128 -3040 288) (-32 -3200 288)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116029,8 +120680,8 @@ world } side { - "id" "49885" - "plane" "(-64 -240 16) (-64 -528 16) (-64 -528 24)" + "id" "26094" + "plane" "(320 -3200 0) (320 -3200 288) (320 -3040 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116040,42 +120691,43 @@ world } side { - "id" "49884" - "plane" "(-80 -240 16) (-64 -240 16) (-64 -240 24)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26093" + "plane" "(320 -3040 0) (320 -3040 288) (128 -3040 288)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49883" - "plane" "(-64 -528 16) (-80 -528 16) (-80 -528 24)" + "id" "26092" + "plane" "(-32 -3200 0) (-32 -3200 288) (320 -3200 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 199 232" + "visgroupid" "18" + "visgroupid" "25" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "116816" + "id" "32001" side { - "id" "49900" - "plane" "(-48 -528 40) (-48 -240 40) (-32 -240 40)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26169" + "plane" "(0 -3328 160) (0 -3296 160) (32 -3296 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116084,8 +120736,8 @@ world } side { - "id" "49899" - "plane" "(-48 -240 32) (-48 -528 32) (-32 -528 32)" + "id" "26168" + "plane" "(0 -3296 0) (0 -3328 0) (32 -3328 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -116095,8 +120747,8 @@ world } side { - "id" "49898" - "plane" "(-48 -528 32) (-48 -240 32) (-48 -240 40)" + "id" "26167" + "plane" "(0 -3328 0) (0 -3296 0) (0 -3296 160)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116106,8 +120758,8 @@ world } side { - "id" "49897" - "plane" "(-32 -240 32) (-32 -528 32) (-32 -528 40)" + "id" "26166" + "plane" "(32 -3296 0) (32 -3328 0) (32 -3328 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116117,9 +120769,9 @@ world } side { - "id" "49896" - "plane" "(-48 -240 32) (-32 -240 32) (-32 -240 40)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26165" + "plane" "(0 -3296 0) (32 -3296 0) (32 -3296 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116128,31 +120780,31 @@ world } side { - "id" "49895" - "plane" "(-32 -528 32) (-48 -528 32) (-48 -528 40)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26164" + "plane" "(32 -3328 0) (0 -3328 0) (0 -3328 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "116817" + "id" "32006" side { - "id" "49912" - "plane" "(-16 -528 56) (-16 -240 56) (0 -240 56)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26181" + "plane" "(0 -3456 160) (0 -3424 160) (32 -3424 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116161,8 +120813,8 @@ world } side { - "id" "49911" - "plane" "(-16 -240 48) (-16 -528 48) (0 -528 48)" + "id" "26180" + "plane" "(0 -3424 0) (0 -3456 0) (32 -3456 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -116172,8 +120824,8 @@ world } side { - "id" "49910" - "plane" "(-16 -528 48) (-16 -240 48) (-16 -240 56)" + "id" "26179" + "plane" "(0 -3456 0) (0 -3424 0) (0 -3424 160)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116183,8 +120835,8 @@ world } side { - "id" "49909" - "plane" "(0 -240 48) (0 -528 48) (0 -528 56)" + "id" "26178" + "plane" "(32 -3424 0) (32 -3456 0) (32 -3456 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116194,9 +120846,9 @@ world } side { - "id" "49908" - "plane" "(-16 -240 48) (0 -240 48) (0 -240 56)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26177" + "plane" "(0 -3424 0) (32 -3424 0) (32 -3424 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116205,31 +120857,31 @@ world } side { - "id" "49907" - "plane" "(0 -528 48) (-16 -528 48) (-16 -528 56)" + "id" "26176" + "plane" "(32 -3456 0) (0 -3456 0) (0 -3456 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "116819" + "id" "32041" side { - "id" "49924" - "plane" "(16 -528 72) (16 -240 72) (32 -240 72)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26307" + "plane" "(0 -3392 160) (0 -3360 160) (32 -3360 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116238,9 +120890,9 @@ world } side { - "id" "49923" - "plane" "(16 -240 64) (16 -528 64) (32 -528 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26306" + "plane" "(0 -3360 112) (0 -3392 112) (32 -3392 112)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116249,8 +120901,8 @@ world } side { - "id" "49922" - "plane" "(16 -528 64) (16 -240 64) (16 -240 72)" + "id" "26305" + "plane" "(0 -3392 112) (0 -3360 112) (0 -3360 160)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116260,8 +120912,8 @@ world } side { - "id" "49921" - "plane" "(32 -240 64) (32 -528 64) (32 -528 72)" + "id" "26304" + "plane" "(32 -3360 112) (32 -3392 112) (32 -3392 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116271,8 +120923,8 @@ world } side { - "id" "49920" - "plane" "(16 -240 64) (32 -240 64) (32 -240 72)" + "id" "26303" + "plane" "(32 -3392 112) (0 -3392 112) (0 -3392 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116282,31 +120934,31 @@ world } side { - "id" "49919" - "plane" "(32 -528 64) (16 -528 64) (16 -528 72)" + "id" "26302" + "plane" "(0 -3360 112) (32 -3360 112) (32 -3360 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "116820" + "id" "32042" side { - "id" "49936" - "plane" "(48 -528 88) (48 -240 88) (192 -240 88)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26313" + "plane" "(0 -3360 160) (0 -3328 160) (32 -3328 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116315,9 +120967,9 @@ world } side { - "id" "49935" - "plane" "(48 -240 80) (48 -528 80) (192 -528 80)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26312" + "plane" "(0 -3328 96) (0 -3360 112) (32 -3360 112)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116326,8 +120978,8 @@ world } side { - "id" "49934" - "plane" "(48 -528 80) (48 -240 80) (48 -240 88)" + "id" "26311" + "plane" "(0 -3328 160) (0 -3360 160) (0 -3360 112)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116337,8 +120989,8 @@ world } side { - "id" "49933" - "plane" "(192 -240 80) (192 -528 80) (192 -528 88)" + "id" "26310" + "plane" "(32 -3328 96) (32 -3360 112) (32 -3360 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116348,8 +121000,8 @@ world } side { - "id" "49932" - "plane" "(48 -240 80) (192 -240 80) (192 -240 88)" + "id" "26309" + "plane" "(0 -3328 96) (32 -3328 96) (32 -3328 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116359,31 +121011,31 @@ world } side { - "id" "49931" - "plane" "(192 -528 80) (48 -528 80) (48 -528 88)" + "id" "26308" + "plane" "(32 -3360 112) (0 -3360 112) (0 -3360 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "116823" + "id" "32043" side { - "id" "49948" - "plane" "(-136 -544 8) (-136 -224 8) (-64 -224 8)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26319" + "plane" "(0 -3424 160) (0 -3392 160) (32 -3392 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116392,9 +121044,9 @@ world } side { - "id" "49947" - "plane" "(-136 -224 0) (-136 -544 0) (-64 -544 0)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26318" + "plane" "(0 -3392 112) (0 -3424 96) (32 -3424 96)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116403,8 +121055,8 @@ world } side { - "id" "49946" - "plane" "(-136 -544 0) (-136 -224 0) (-136 -224 8)" + "id" "26317" + "plane" "(0 -3424 96) (0 -3392 112) (0 -3392 160)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116414,8 +121066,8 @@ world } side { - "id" "49945" - "plane" "(-64 -224 0) (-64 -544 0) (-64 -544 8)" + "id" "26316" + "plane" "(32 -3424 160) (32 -3392 160) (32 -3392 112)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116425,9 +121077,9 @@ world } side { - "id" "49944" - "plane" "(-136 -224 0) (-64 -224 0) (-64 -224 8)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26315" + "plane" "(32 -3424 96) (0 -3424 96) (0 -3424 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116436,9 +121088,9 @@ world } side { - "id" "49943" - "plane" "(-64 -544 0) (-136 -544 0) (-136 -544 8)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26314" + "plane" "(0 -3392 112) (32 -3392 112) (32 -3392 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116447,30 +121099,30 @@ world } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "116834" + "id" "32055" side { - "id" "49960" - "plane" "(164 -528 96) (164 -260 96) (196 -260 96)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[0 1 0 0] 0.2" - "vaxis" "[1 0 0 0] 0.2" - "rotation" "90" + "id" "26331" + "plane" "(0 -3216 288) (0 -3200 288) (32 -3200 288)" + "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" "49959" - "plane" "(164 -260 -128) (164 -528 -128) (196 -528 -128)" + "id" "26330" + "plane" "(0 -3200 0) (0 -3216 0) (32 -3216 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -116480,9 +121132,9 @@ world } side { - "id" "49958" - "plane" "(164 -528 -128) (164 -260 -128) (164 -260 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26329" + "plane" "(0 -3216 0) (0 -3200 0) (0 -3200 288)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116491,8 +121143,8 @@ world } side { - "id" "49957" - "plane" "(196 -260 -128) (196 -528 -128) (196 -528 96)" + "id" "26328" + "plane" "(32 -3200 0) (32 -3216 0) (32 -3216 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116502,8 +121154,8 @@ world } side { - "id" "49956" - "plane" "(164 -260 -128) (196 -260 -128) (196 -260 96)" + "id" "26327" + "plane" "(0 -3200 0) (32 -3200 0) (32 -3200 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116513,32 +121165,32 @@ world } side { - "id" "49955" - "plane" "(196 -528 -128) (164 -528 -128) (164 -528 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26326" + "plane" "(32 -3216 0) (0 -3216 0) (0 -3216 288)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "116836" + "id" "32057" side { - "id" "49972" - "plane" "(128 -528 256) (128 -496 256) (160 -496 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "26343" + "plane" "(0 -3296 32) (0 -3216 32) (32 -3216 32)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -116546,8 +121198,8 @@ world } side { - "id" "49971" - "plane" "(128 -496 96) (128 -528 96) (160 -528 96)" + "id" "26342" + "plane" "(0 -3216 0) (0 -3296 0) (32 -3296 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -116557,8 +121209,8 @@ world } side { - "id" "49970" - "plane" "(128 -528 96) (128 -496 96) (128 -496 256)" + "id" "26341" + "plane" "(0 -3296 0) (0 -3216 0) (0 -3216 32)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116568,9 +121220,9 @@ world } side { - "id" "49969" - "plane" "(160 -496 96) (160 -528 96) (160 -528 256)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26340" + "plane" "(32 -3216 0) (32 -3296 0) (32 -3296 32)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116579,9 +121231,9 @@ world } side { - "id" "49968" - "plane" "(128 -496 96) (160 -496 96) (160 -496 256)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26339" + "plane" "(0 -3216 0) (32 -3216 0) (32 -3216 32)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116590,8 +121242,8 @@ world } side { - "id" "49967" - "plane" "(160 -528 96) (128 -528 96) (128 -528 256)" + "id" "26338" + "plane" "(32 -3296 0) (0 -3296 0) (0 -3296 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116601,19 +121253,20 @@ world } editor { - "color" "0 158 183" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "116845" + "id" "32061" side { - "id" "49984" - "plane" "(128 -272 256) (128 -240 256) (160 -240 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26355" + "plane" "(0 -3296 160) (0 -3216 160) (32 -3216 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116622,9 +121275,9 @@ world } side { - "id" "49983" - "plane" "(128 -240 96) (128 -272 96) (160 -272 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26354" + "plane" "(0 -3216 96) (0 -3296 96) (32 -3296 96)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116633,8 +121286,8 @@ world } side { - "id" "49982" - "plane" "(128 -272 96) (128 -240 96) (128 -240 256)" + "id" "26353" + "plane" "(0 -3296 96) (0 -3216 96) (0 -3216 160)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116644,9 +121297,9 @@ world } side { - "id" "49981" - "plane" "(160 -240 96) (160 -272 96) (160 -272 256)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26352" + "plane" "(32 -3216 96) (32 -3296 96) (32 -3296 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116655,8 +121308,8 @@ world } side { - "id" "49980" - "plane" "(128 -240 96) (160 -240 96) (160 -240 256)" + "id" "26351" + "plane" "(0 -3216 96) (32 -3216 96) (32 -3216 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116666,9 +121319,9 @@ world } side { - "id" "49979" - "plane" "(160 -272 96) (128 -272 96) (128 -272 256)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26350" + "plane" "(32 -3296 96) (0 -3296 96) (0 -3296 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116677,18 +121330,19 @@ world } editor { - "color" "0 158 183" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "115588" + "id" "32068" side { - "id" "49798" - "plane" "(2304 -576 256) (2304 -192 256) (2432 -192 256)" + "id" "26367" + "plane" "(-32 -3456 288) (-32 -3200 288) (320 -3200 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -116698,9 +121352,9 @@ world } side { - "id" "49797" - "plane" "(2304 -192 64) (2304 -576 64) (2432 -576 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26366" + "plane" "(-32 -3200 256) (-32 -3456 256) (320 -3456 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116709,9 +121363,9 @@ world } side { - "id" "49796" - "plane" "(2304 -576 64) (2304 -192 64) (2304 -192 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26365" + "plane" "(-32 -3456 256) (-32 -3200 256) (-32 -3200 288)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116720,9 +121374,9 @@ world } side { - "id" "49795" - "plane" "(2432 -192 64) (2432 -576 64) (2432 -576 256)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26364" + "plane" "(320 -3200 256) (320 -3456 256) (320 -3456 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116731,9 +121385,9 @@ world } side { - "id" "49794" - "plane" "(2304 -192 64) (2432 -192 64) (2432 -192 256)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26363" + "plane" "(-32 -3200 256) (320 -3200 256) (320 -3200 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116742,8 +121396,8 @@ world } side { - "id" "49793" - "plane" "(2432 -576 64) (2304 -576 64) (2304 -576 256)" + "id" "26362" + "plane" "(320 -3456 256) (-32 -3456 256) (-32 -3456 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116753,20 +121407,22 @@ world } editor { - "color" "0 137 234" + "color" "0 199 232" + "visgroupid" "18" + "visgroupid" "25" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "115600" + "id" "32074" side { - "id" "49810" - "plane" "(2432 -320 96) (2496 -320 96) (2496 -576 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" + "id" "26379" + "plane" "(0 -3456 288) (0 -3296 288) (32 -3296 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -116774,8 +121430,8 @@ world } side { - "id" "49809" - "plane" "(2432 -576 64) (2496 -576 64) (2496 -320 64)" + "id" "26378" + "plane" "(0 -3296 160) (0 -3456 160) (32 -3456 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -116785,9 +121441,9 @@ world } side { - "id" "49808" - "plane" "(2432 -320 64) (2432 -320 96) (2432 -576 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26377" + "plane" "(0 -3456 160) (0 -3296 160) (0 -3296 288)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116796,8 +121452,8 @@ world } side { - "id" "49807" - "plane" "(2496 -576 64) (2496 -576 96) (2496 -320 96)" + "id" "26376" + "plane" "(32 -3296 160) (32 -3456 160) (32 -3456 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116807,9 +121463,9 @@ world } side { - "id" "49806" - "plane" "(2496 -320 64) (2496 -320 96) (2432 -320 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26375" + "plane" "(0 -3296 160) (32 -3296 160) (32 -3296 288)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116818,8 +121474,8 @@ world } side { - "id" "49805" - "plane" "(2432 -576 64) (2432 -576 96) (2496 -576 96)" + "id" "26374" + "plane" "(32 -3456 160) (0 -3456 160) (0 -3456 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116829,20 +121485,20 @@ world } editor { - "color" "0 251 136" - "visgroupid" "23" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "107574" + "id" "32079" side { - "id" "49656" - "plane" "(-1040 -896 140) (-1056 -896 140) (-1056 -800 148)" - "material" "DEV/REFLECTIVITY_30B" + "id" "26391" + "plane" "(8 -3296 96) (8 -3216 96) (32 -3216 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116851,9 +121507,9 @@ world } side { - "id" "49655" - "plane" "(-1040 -800 32) (-1056 -800 32) (-1056 -896 32)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26390" + "plane" "(8 -3216 32) (8 -3296 32) (32 -3296 32)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116862,9 +121518,9 @@ world } side { - "id" "49654" - "plane" "(-1056 -800 32) (-1056 -800 148) (-1056 -896 140)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26389" + "plane" "(8 -3296 32) (8 -3216 32) (8 -3216 96)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116873,9 +121529,9 @@ world } side { - "id" "49653" - "plane" "(-1040 -800 148) (-1040 -800 32) (-1040 -896 32)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26388" + "plane" "(32 -3216 32) (32 -3296 32) (32 -3296 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116884,8 +121540,8 @@ world } side { - "id" "49652" - "plane" "(-1040 -896 140) (-1040 -896 32) (-1056 -896 32)" + "id" "26387" + "plane" "(8 -3216 32) (32 -3216 32) (32 -3216 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116895,8 +121551,8 @@ world } side { - "id" "49651" - "plane" "(-1056 -800 148) (-1056 -800 32) (-1040 -800 32)" + "id" "26386" + "plane" "(32 -3296 32) (8 -3296 32) (8 -3296 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -116906,18 +121562,19 @@ world } editor { - "color" "0 176 105" + "color" "0 211 156" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "107575" + "id" "32091" side { - "id" "49662" - "plane" "(-1040 -1088 176) (-1056 -1088 176) (-1056 -992 148)" + "id" "26415" + "plane" "(-8 -3296 32) (-8 -3216 32) (0 -3216 32)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -116927,9 +121584,9 @@ world } side { - "id" "49661" - "plane" "(-1040 -992 32) (-1056 -992 32) (-1056 -1088 32)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26414" + "plane" "(-8 -3216 24) (-8 -3296 24) (0 -3296 24)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -116938,9 +121595,9 @@ world } side { - "id" "49660" - "plane" "(-1056 -1088 176) (-1056 -1088 32) (-1056 -992 32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26413" + "plane" "(-8 -3296 24) (-8 -3216 24) (-8 -3216 32)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116949,31 +121606,31 @@ world } side { - "id" "49659" - "plane" "(-1040 -1088 32) (-1040 -1088 176) (-1040 -992 148)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26412" + "plane" "(0 -3216 24) (0 -3296 24) (0 -3296 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49658" - "plane" "(-1040 -1088 176) (-1040 -1088 32) (-1056 -1088 32)" + "id" "26411" + "plane" "(-8 -3216 24) (0 -3216 24) (0 -3216 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49657" - "plane" "(-1056 -992 148) (-1056 -992 32) (-1040 -992 32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26410" + "plane" "(0 -3296 24) (-8 -3296 24) (-8 -3296 32)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -116982,18 +121639,19 @@ world } editor { - "color" "0 176 105" + "color" "0 211 156" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "107576" + "id" "32095" side { - "id" "49668" - "plane" "(-1040 -992 148) (-1056 -992 148) (-1056 -896 140)" + "id" "26427" + "plane" "(-8 -3296 160) (-8 -3216 160) (0 -3216 160)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -117003,9 +121661,9 @@ world } side { - "id" "49667" - "plane" "(-1040 -896 32) (-1056 -896 32) (-1056 -992 32)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26426" + "plane" "(-8 -3216 152) (-8 -3296 152) (0 -3296 152)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -117014,9 +121672,9 @@ world } side { - "id" "49666" - "plane" "(-1056 -992 148) (-1056 -992 32) (-1056 -896 32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26425" + "plane" "(-8 -3296 152) (-8 -3216 152) (-8 -3216 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117025,20 +121683,20 @@ world } side { - "id" "49665" - "plane" "(-1040 -992 32) (-1040 -992 148) (-1040 -896 140)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26424" + "plane" "(0 -3216 152) (0 -3296 152) (0 -3296 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49664" - "plane" "(-1056 -896 140) (-1056 -896 32) (-1040 -896 32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26423" + "plane" "(-8 -3216 152) (0 -3216 152) (0 -3216 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117047,9 +121705,9 @@ world } side { - "id" "49663" - "plane" "(-1040 -992 148) (-1040 -992 32) (-1056 -992 32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26422" + "plane" "(0 -3296 152) (-8 -3296 152) (-8 -3296 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117058,41 +121716,42 @@ world } editor { - "color" "0 176 105" + "color" "0 211 156" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "107577" + "id" "32096" side { - "id" "49674" - "plane" "(-1040 -800 148) (-1056 -800 148) (-1056 -704 176)" - "material" "DEV/REFLECTIVITY_30B" + "id" "26439" + "plane" "(8 -3424 160) (8 -3328 160) (32 -3328 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 -63.998] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49673" - "plane" "(-1040 -704 32) (-1056 -704 32) (-1056 -800 32)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26438" + "plane" "(8 -3328 0) (8 -3424 0) (32 -3424 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 -63.998] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49672" - "plane" "(-1056 -704 32) (-1056 -704 176) (-1056 -800 148)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26437" + "plane" "(8 -3424 0) (8 -3328 0) (8 -3328 160)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117101,10 +121760,10 @@ world } side { - "id" "49671" - "plane" "(-1040 -704 176) (-1040 -704 32) (-1040 -800 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "26436" + "plane" "(32 -3328 0) (32 -3424 0) (32 -3424 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117112,8 +121771,8 @@ world } side { - "id" "49670" - "plane" "(-1056 -704 176) (-1056 -704 32) (-1040 -704 32)" + "id" "26435" + "plane" "(8 -3328 0) (32 -3328 0) (32 -3328 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -117123,8 +121782,8 @@ world } side { - "id" "49669" - "plane" "(-1040 -800 148) (-1040 -800 32) (-1056 -800 32)" + "id" "26434" + "plane" "(32 -3424 0) (8 -3424 0) (8 -3424 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -117134,19 +121793,20 @@ world } editor { - "color" "0 176 105" + "color" "0 211 156" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "107662" + "id" "32100" side { - "id" "49686" - "plane" "(-960 -1088 48) (-960 -896 48) (-640 -896 48)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26451" + "plane" "(-64 -3488 288) (-64 -3456 288) (0 -3456 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -117155,8 +121815,8 @@ world } side { - "id" "49685" - "plane" "(-960 -896 0) (-960 -1088 0) (-640 -1088 0)" + "id" "26450" + "plane" "(-64 -3456 0) (-64 -3488 0) (0 -3488 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -117166,9 +121826,9 @@ world } side { - "id" "49684" - "plane" "(-960 -1088 0) (-960 -896 0) (-960 -896 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26449" + "plane" "(-64 -3488 0) (-64 -3456 0) (-64 -3456 288)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117177,9 +121837,9 @@ world } side { - "id" "49683" - "plane" "(-640 -896 0) (-640 -1088 0) (-640 -1088 48)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26448" + "plane" "(0 -3456 0) (0 -3488 0) (0 -3488 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117188,9 +121848,9 @@ world } side { - "id" "49682" - "plane" "(-960 -896 0) (-640 -896 0) (-640 -896 48)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26447" + "plane" "(-64 -3456 0) (0 -3456 0) (0 -3456 288)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117199,8 +121859,8 @@ world } side { - "id" "49681" - "plane" "(-640 -1088 0) (-960 -1088 0) (-960 -1088 48)" + "id" "26446" + "plane" "(0 -3488 0) (-64 -3488 0) (-64 -3488 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -117210,32 +121870,43 @@ world } editor { - "color" "0 176 105" - "visgroupid" "23" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "107939" + "id" "32104" side { - "id" "49697" - "plane" "(1440 -528 384) (2448 -528 384) (2368 -448 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "26463" + "plane" "(-64 -3216 32) (-64 -3200 32) (0 -3200 32)" + "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" "49696" - "plane" "(2368 -448 384) (2448 -528 384) (2368 -448 544)" + "id" "26462" + "plane" "(-64 -3200 0) (-64 -3216 0) (0 -3216 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26461" + "plane" "(-64 -3216 0) (-64 -3200 0) (-64 -3200 32)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117243,10 +121914,10 @@ world } side { - "id" "49695" - "plane" "(1440 -528 384) (1440 -448 384) (1440 -448 544)" + "id" "26460" + "plane" "(0 -3200 0) (0 -3216 0) (0 -3216 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117254,10 +121925,10 @@ world } side { - "id" "49694" - "plane" "(1440 -448 544) (1440 -448 384) (2368 -448 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "26459" + "plane" "(-64 -3200 0) (0 -3200 0) (0 -3200 32)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117265,10 +121936,10 @@ world } side { - "id" "49693" - "plane" "(2368 -448 544) (2448 -528 384) (1440 -528 384)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "26458" + "plane" "(0 -3216 0) (-64 -3216 0) (-64 -3216 32)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117276,31 +121947,43 @@ world } editor { - "color" "0 137 234" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "107957" + "id" "32113" side { - "id" "49708" - "plane" "(2448 -176 384) (2368 -256 384) (2368 -448 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "26487" + "plane" "(-68 -3216 40) (-68 -3200 40) (0 -3200 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49707" - "plane" "(2448 -176 384) (2368 -256 544) (2368 -256 384)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26486" + "plane" "(-68 -3196 32) (-68 -3220 32) (0 -3220 32)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26485" + "plane" "(-68 -3220 32) (-68 -3196 32) (-68 -3200 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117308,10 +121991,10 @@ world } side { - "id" "49706" - "plane" "(2368 -448 384) (2368 -448 544) (2448 -528 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "26484" + "plane" "(0 -3196 32) (0 -3220 32) (0 -3216 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117319,10 +122002,10 @@ world } side { - "id" "49705" - "plane" "(2368 -448 384) (2368 -256 384) (2368 -256 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "26483" + "plane" "(-68 -3196 32) (0 -3196 32) (0 -3200 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117330,10 +122013,10 @@ world } side { - "id" "49704" - "plane" "(2448 -176 384) (2448 -528 384) (2368 -448 544)" + "id" "26482" + "plane" "(0 -3220 32) (-68 -3220 32) (-68 -3216 40)" "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117341,19 +122024,20 @@ world } editor { - "color" "0 137 234" + "color" "0 239 200" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "107962" + "id" "32125" side { - "id" "49718" - "plane" "(1472 -256 384) (2368 -256 384) (2448 -176 384)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26499" + "plane" "(-320 -3488 288) (-320 -3456 288) (-256 -3456 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -117362,8 +122046,19 @@ world } side { - "id" "49717" - "plane" "(1472 -256 544) (1472 -256 384) (1472 -176 384)" + "id" "26498" + "plane" "(-320 -3456 0) (-320 -3488 0) (-256 -3488 0)" + "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" "26497" + "plane" "(-320 -3488 0) (-320 -3456 0) (-320 -3456 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -117373,9 +122068,9 @@ world } side { - "id" "49716" - "plane" "(2368 -256 544) (2448 -176 384) (2368 -256 384)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26496" + "plane" "(-256 -3456 0) (-256 -3488 0) (-256 -3488 288)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117384,9 +122079,9 @@ world } side { - "id" "49715" - "plane" "(1472 -256 384) (1472 -256 544) (2368 -256 544)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26495" + "plane" "(-320 -3456 0) (-256 -3456 0) (-256 -3456 288)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117395,9 +122090,9 @@ world } side { - "id" "49714" - "plane" "(2448 -176 384) (2368 -256 544) (1472 -256 544)" - "material" "DEV/REFLECTIVITY_10B" + "id" "26494" + "plane" "(-256 -3488 0) (-320 -3488 0) (-320 -3488 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117406,99 +122101,32 @@ world } editor { - "color" "0 137 234" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } - hidden - { - solid - { - "id" "106494" - side - { - "id" "49603" - "plane" "(608 -224 80) (864 -224 80) (864 -288 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49602" - "plane" "(608 -288 64) (864 -288 64) (864 -224 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49601" - "plane" "(864 -288 64) (864 -224 80) (864 -224 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49600" - "plane" "(608 -224 64) (608 -224 80) (608 -288 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49598" - "plane" "(864 -224 64) (864 -224 80) (608 -224 80)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 158 183" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } solid { - "id" "105345" + "id" "32129" side { - "id" "49500" - "plane" "(832 -832 280) (848 -832 280) (768 -1152 280)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26511" + "plane" "(-256 -3488 160) (-256 -3456 160) (-64 -3456 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49499" - "plane" "(744 -1152 256) (776 -1152 256) (856 -832 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 -15] 0.25" + "id" "26510" + "plane" "(-256 -3456 128) (-256 -3488 128) (-64 -3488 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117506,9 +122134,9 @@ world } side { - "id" "49498" - "plane" "(824 -832 256) (832 -832 280) (752 -1152 280)" - "material" "DEV/REFLECTIVITY_10B" + "id" "26509" + "plane" "(-256 -3488 128) (-256 -3456 128) (-256 -3456 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117517,10 +122145,10 @@ world } side { - "id" "49497" - "plane" "(776 -1152 256) (768 -1152 280) (848 -832 280)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 -15] 0.25" + "id" "26508" + "plane" "(-64 -3456 128) (-64 -3488 128) (-64 -3488 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117528,9 +122156,9 @@ world } side { - "id" "49496" - "plane" "(744 -1152 256) (752 -1152 280) (768 -1152 280)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26507" + "plane" "(-256 -3456 128) (-64 -3456 128) (-64 -3456 160)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117539,9 +122167,9 @@ world } side { - "id" "49495" - "plane" "(856 -832 256) (848 -832 280) (832 -832 280)" - "material" "DEV/REFLECTIVITY_10B" + "id" "26506" + "plane" "(-64 -3488 128) (-256 -3488 128) (-256 -3488 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117550,20 +122178,21 @@ world } editor { - "color" "0 125 202" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "105361" + "id" "32134" side { - "id" "49531" - "plane" "(880 -416 544) (1440 -416 544) (1408 -448 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "26523" + "plane" "(-256 -3488 0) (-256 -3456 0) (-64 -3456 0)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117571,10 +122200,10 @@ world } side { - "id" "49530" - "plane" "(912 -448 448) (1408 -448 448) (1488 -368 448)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "26522" + "plane" "(-256 -3456 -64) (-256 -3488 -64) (-64 -3488 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117582,8 +122211,8 @@ world } side { - "id" "49529" - "plane" "(1440 -416 544) (1488 -368 448) (1408 -448 448)" + "id" "26521" + "plane" "(-256 -3488 -64) (-256 -3456 -64) (-256 -3456 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -117593,8 +122222,8 @@ world } side { - "id" "49528" - "plane" "(912 -448 544) (912 -448 448) (832 -368 448)" + "id" "26520" + "plane" "(-64 -3456 -64) (-64 -3488 -64) (-64 -3488 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -117604,10 +122233,10 @@ world } side { - "id" "49527" - "plane" "(1408 -448 544) (1408 -448 448) (912 -448 448)" + "id" "26519" + "plane" "(-256 -3456 -64) (-64 -3456 -64) (-64 -3456 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117615,10 +122244,10 @@ world } side { - "id" "49526" - "plane" "(880 -416 544) (832 -368 448) (1488 -368 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "26518" + "plane" "(-64 -3488 -64) (-256 -3488 -64) (-256 -3488 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117626,42 +122255,43 @@ world } editor { - "color" "0 137 234" + "color" "0 181 182" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "105392" + "id" "32147" side { - "id" "49543" - "plane" "(1408 -640 448) (1408 -384 448) (1472 -384 448)" + "id" "26535" + "plane" "(-256 -3488 128) (-256 -3472 128) (-64 -3472 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49542" - "plane" "(1408 -384 320) (1408 -640 320) (1472 -640 320)" + "id" "26534" + "plane" "(-256 -3472 0) (-256 -3488 0) (-64 -3488 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49541" - "plane" "(1408 -640 320) (1408 -384 320) (1408 -384 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "26533" + "plane" "(-256 -3488 0) (-256 -3472 0) (-256 -3472 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117669,10 +122299,10 @@ world } side { - "id" "49540" - "plane" "(1472 -384 320) (1472 -640 320) (1472 -640 448)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "26532" + "plane" "(-64 -3472 0) (-64 -3488 0) (-64 -3488 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117680,9 +122310,9 @@ world } side { - "id" "49539" - "plane" "(1408 -384 320) (1472 -384 320) (1472 -384 448)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26531" + "plane" "(-256 -3472 0) (-64 -3472 0) (-64 -3472 128)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117691,9 +122321,9 @@ world } side { - "id" "49538" - "plane" "(1472 -640 320) (1408 -640 320) (1408 -640 448)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26530" + "plane" "(-64 -3488 0) (-256 -3488 0) (-256 -3488 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117702,42 +122332,43 @@ world } editor { - "color" "0 137 234" + "color" "0 181 182" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "105397" + "id" "32151" side { - "id" "49555" - "plane" "(1408 -832 544) (1408 -448 544) (1440 -416 544)" + "id" "26547" + "plane" "(-256 -3488 288) (-256 -3456 288) (-64 -3456 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49554" - "plane" "(1488 -912 448) (1488 -368 448) (1408 -448 448)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "26546" + "plane" "(-256 -3456 256) (-256 -3488 256) (-64 -3488 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49553" - "plane" "(1408 -448 544) (1408 -448 448) (1488 -368 448)" + "id" "26545" + "plane" "(-256 -3488 256) (-256 -3456 256) (-256 -3456 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117745,10 +122376,10 @@ world } side { - "id" "49552" - "plane" "(1440 -864 544) (1488 -912 448) (1408 -832 448)" + "id" "26544" + "plane" "(-64 -3456 256) (-64 -3488 256) (-64 -3488 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117756,10 +122387,10 @@ world } side { - "id" "49551" - "plane" "(1408 -832 544) (1408 -832 448) (1408 -448 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "26543" + "plane" "(-256 -3456 256) (-64 -3456 256) (-64 -3456 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117767,10 +122398,10 @@ world } side { - "id" "49550" - "plane" "(1440 -416 544) (1488 -368 448) (1488 -912 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "26542" + "plane" "(-64 -3488 256) (-256 -3488 256) (-256 -3488 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117778,42 +122409,43 @@ world } editor { - "color" "0 137 234" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "105403" + "id" "32153" side { - "id" "49567" - "plane" "(928 -448 448) (928 -384 448) (1408 -384 448)" + "id" "26559" + "plane" "(-208 -3488 256) (-208 -3456 256) (-176 -3456 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49566" - "plane" "(928 -384 320) (928 -448 320) (1408 -448 320)" + "id" "26558" + "plane" "(-208 -3456 160) (-208 -3488 160) (-176 -3488 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49565" - "plane" "(928 -448 320) (928 -384 320) (928 -384 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "26557" + "plane" "(-208 -3488 160) (-208 -3456 160) (-208 -3456 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117821,10 +122453,10 @@ world } side { - "id" "49564" - "plane" "(1408 -384 320) (1408 -448 320) (1408 -448 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "26556" + "plane" "(-176 -3456 160) (-176 -3488 160) (-176 -3488 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117832,8 +122464,8 @@ world } side { - "id" "49563" - "plane" "(928 -384 320) (1408 -384 320) (1408 -384 448)" + "id" "26555" + "plane" "(-208 -3456 160) (-176 -3456 160) (-176 -3456 256)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -117843,8 +122475,8 @@ world } side { - "id" "49562" - "plane" "(1408 -448 320) (928 -448 320) (928 -448 448)" + "id" "26554" + "plane" "(-176 -3488 160) (-208 -3488 160) (-208 -3488 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -117854,99 +122486,21 @@ world } editor { - "color" "0 137 234" + "color" "0 199 232" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } - hidden - { - solid - { - "id" "105424" - side - { - "id" "49591" - "plane" "(1472 -1984 64) (1472 -1472 64) (1568 -1472 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49590" - "plane" "(1472 -1472 -3.8147e-06) (1472 -1984 -3.8147e-06) (1568 -1984 -3.8147e-06)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49589" - "plane" "(1472 -1984 -3.8147e-06) (1472 -1472 -3.8147e-06) (1472 -1472 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49588" - "plane" "(1568 -1472 -3.8147e-06) (1568 -1984 -3.8147e-06) (1568 -1984 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49587" - "plane" "(1472 -1472 -3.8147e-06) (1568 -1472 -3.8147e-06) (1568 -1472 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49586" - "plane" "(1568 -1984 -3.8147e-06) (1472 -1984 -3.8147e-06) (1472 -1984 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 254 119" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } solid { - "id" "103563" + "id" "32160" side { - "id" "48951" - "plane" "(1472 -512 96) (1472 -352 96) (1792 -512 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" + "id" "26571" + "plane" "(-256 -3488 256) (-256 -3472 256) (-64 -3472 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117954,8 +122508,8 @@ world } side { - "id" "48950" - "plane" "(1792 -512 0) (1472 -352 0) (1472 -512 0)" + "id" "26570" + "plane" "(-256 -3472 160) (-256 -3488 160) (-64 -3488 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -117965,8 +122519,8 @@ world } side { - "id" "48949" - "plane" "(1472 -352 96) (1472 -352 0) (1792 -512 0)" + "id" "26569" + "plane" "(-256 -3488 160) (-256 -3472 160) (-256 -3472 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -117976,9 +122530,20 @@ world } side { - "id" "48948" - "plane" "(1792 -512 96) (1792 -512 0) (1472 -512 0)" + "id" "26568" + "plane" "(-64 -3472 160) (-64 -3488 160) (-64 -3488 256)" "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" "26567" + "plane" "(-256 -3472 160) (-64 -3472 160) (-64 -3472 256)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -117987,10 +122552,10 @@ world } side { - "id" "48946" - "plane" "(1472 -512 96) (1472 -512 0) (1472 -352 0)" + "id" "26566" + "plane" "(-64 -3488 160) (-256 -3488 160) (-256 -3488 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -117998,43 +122563,43 @@ world } editor { - "color" "0 119 112" - "visgroupid" "23" + "color" "0 181 182" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103604" + "id" "32297" side { - "id" "48987" - "plane" "(1568 -192 384) (1472 -288 384) (1472 -128 384)" + "id" "26860" + "plane" "(-352 -3520 288) (-352 -3264 288) (-320 -3264 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48986" - "plane" "(1472 -288 64) (1568 -192 64) (1568 -128 64)" + "id" "26859" + "plane" "(-352 -3264 0) (-352 -3520 0) (-320 -3520 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48985" - "plane" "(1568 -192 64) (1472 -288 64) (1472 -288 384)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 384] 0.25" + "id" "26858" + "plane" "(-352 -3520 0) (-352 -3264 0) (-352 -3264 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118042,21 +122607,21 @@ world } side { - "id" "48984" - "plane" "(1472 -128 64) (1568 -128 64) (1568 -128 384)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[1 0 0 -5] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "26857" + "plane" "(-320 -3264 0) (-320 -3520 0) (-320 -3520 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48983" - "plane" "(1472 -288 64) (1472 -128 64) (1472 -128 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "26856" + "plane" "(-352 -3264 0) (-320 -3264 0) (-320 -3264 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118064,10 +122629,10 @@ world } side { - "id" "48982" - "plane" "(1568 -128 64) (1568 -192 64) (1568 -192 384)" + "id" "26855" + "plane" "(-320 -3520 0) (-352 -3520 0) (-352 -3520 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118075,42 +122640,43 @@ world } editor { - "color" "0 137 234" + "color" "0 165 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103606" + "id" "32302" side { - "id" "48999" - "plane" "(1792 -256 384) (1664 -192 384) (1664 -128 384)" + "id" "26872" + "plane" "(-544 -3520 288) (-544 -3264 288) (-512 -3264 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48998" - "plane" "(1792 -128 64) (1664 -128 64) (1664 -192 64)" + "id" "26871" + "plane" "(-544 -3264 0) (-544 -3520 0) (-512 -3520 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48997" - "plane" "(1792 -256 64) (1664 -192 64) (1664 -192 384)" + "id" "26870" + "plane" "(-544 -3520 0) (-544 -3264 0) (-544 -3264 288)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118118,21 +122684,21 @@ world } side { - "id" "48996" - "plane" "(1664 -128 64) (1792 -128 64) (1792 -128 384)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[-1 0 0 27] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "26869" + "plane" "(-512 -3264 0) (-512 -3520 0) (-512 -3520 288)" + "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" "48995" - "plane" "(1792 -128 64) (1792 -256 64) (1792 -256 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "26868" + "plane" "(-544 -3264 0) (-512 -3264 0) (-512 -3264 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118140,10 +122706,10 @@ world } side { - "id" "48994" - "plane" "(1664 -192 64) (1664 -128 64) (1664 -128 384)" + "id" "26867" + "plane" "(-512 -3520 0) (-544 -3520 0) (-544 -3520 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118151,42 +122717,43 @@ world } editor { - "color" "0 137 234" + "color" "0 165 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103609" + "id" "32303" side { - "id" "49011" - "plane" "(1856 -256 384) (1792 -256 384) (1792 -128 384)" + "id" "26884" + "plane" "(-512 -3296 288) (-512 -3264 288) (-352 -3264 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49010" - "plane" "(1856 -128 64) (1792 -128 64) (1792 -256 64)" + "id" "26883" + "plane" "(-512 -3264 128) (-512 -3296 128) (-352 -3296 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49009" - "plane" "(1856 -256 64) (1792 -256 64) (1792 -256 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "26882" + "plane" "(-512 -3296 128) (-512 -3264 128) (-512 -3264 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118194,32 +122761,32 @@ world } side { - "id" "49008" - "plane" "(1792 -128 64) (1856 -128 64) (1856 -128 384)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[-1 0 0 27] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "26881" + "plane" "(-352 -3264 128) (-352 -3296 128) (-352 -3296 288)" + "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" "49007" - "plane" "(1856 -128 64) (1856 -256 64) (1856 -256 384)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[0 1 0 27] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "26880" + "plane" "(-512 -3264 128) (-352 -3264 128) (-352 -3264 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49006" - "plane" "(1792 -256 64) (1792 -128 64) (1792 -128 384)" + "id" "26879" + "plane" "(-352 -3296 128) (-512 -3296 128) (-512 -3296 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118227,64 +122794,65 @@ world } editor { - "color" "0 137 234" + "color" "0 165 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103612" + "id" "32314" side { - "id" "49023" - "plane" "(1984 -256 384) (1856 -256 384) (1856 -192 384)" + "id" "26932" + "plane" "(-512 -3296 128) (-512 -3264 128) (-432 -3264 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49022" - "plane" "(1984 -192 64) (1856 -192 64) (1856 -256 64)" + "id" "26931" + "plane" "(-512 -3264 0) (-512 -3296 0) (-432 -3296 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49021" - "plane" "(1856 -192 64) (1984 -192 64) (1984 -192 384)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[-1 0 0 27] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "26930" + "plane" "(-512 -3296 0) (-512 -3264 0) (-512 -3264 128)" + "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" "49020" - "plane" "(1984 -256 64) (1856 -256 64) (1856 -256 384)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[1 0 0 27] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "26929" + "plane" "(-432 -3264 0) (-432 -3296 0) (-432 -3296 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49019" - "plane" "(1856 -256 64) (1856 -192 64) (1856 -192 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "26928" + "plane" "(-512 -3264 0) (-432 -3264 0) (-432 -3264 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118292,10 +122860,10 @@ world } side { - "id" "49018" - "plane" "(1984 -192 64) (1984 -256 64) (1984 -256 384)" + "id" "26927" + "plane" "(-432 -3296 0) (-512 -3296 0) (-512 -3296 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118303,18 +122871,19 @@ world } editor { - "color" "0 137 234" + "color" "0 165 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103702" + "id" "32333" side { - "id" "49055" - "plane" "(1664 -512 320) (1664 -456 320) (1680 -456 320)" + "id" "26962" + "plane" "(-432 -3296 128) (-432 -3264 128) (-408 -3264 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -118324,9 +122893,9 @@ world } side { - "id" "49054" - "plane" "(1664 -512 96) (1792 -512 96) (1680 -456.002 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26961" + "plane" "(-432 -3264 112) (-432 -3296 112) (-408 -3296 120)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -118335,10 +122904,10 @@ world } side { - "id" "49053" - "plane" "(1664 -512 96) (1664 -512 320) (1792 -512 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "26960" + "plane" "(-432 -3296 112) (-432 -3264 112) (-432 -3264 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118346,10 +122915,10 @@ world } side { - "id" "49052" - "plane" "(1664 -456 96) (1664 -456 320) (1664 -512 320)" + "id" "26959" + "plane" "(-432 -3264 112) (-408 -3264 120) (-408 -3264 128)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118357,9 +122926,9 @@ world } side { - "id" "49051" - "plane" "(1792 -512 96) (1792 -512 320) (1680 -456 320)" - "material" "DEV/REFLECTIVITY_50B" + "id" "26958" + "plane" "(-432 -3296 128) (-408 -3296 128) (-408 -3296 120)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -118368,53 +122937,54 @@ world } side { - "id" "49050" - "plane" "(1680 -456.002 96) (1680 -456 320) (1664 -456 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "26957" + "plane" "(-408 -3264 120) (-408 -3296 120) (-408 -3296 128)" + "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" "0 137 234" + "color" "0 165 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103708" + "id" "32334" side { - "id" "49067" - "plane" "(1664 -192 384) (1568 -192 384) (1568 -128 384)" + "id" "26968" + "plane" "(-376 -3264 128) (-352 -3264 128) (-352 -3296 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49066" - "plane" "(1664 -128 64) (1568 -128 64) (1568 -192 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "26967" + "plane" "(-376 -3296 120) (-352 -3296 112) (-352 -3264 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49065" - "plane" "(1664 -192 64) (1568 -192 64) (1568 -192 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "26966" + "plane" "(-352 -3264 112) (-352 -3296 112) (-352 -3296 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118422,21 +122992,21 @@ world } side { - "id" "49064" - "plane" "(1568 -128 64) (1664 -128 64) (1664 -128 384)" - "material" "DEV/REFLECTIVITY_60B" - "uaxis" "[-1 0 0 -5] 0.25" - "vaxis" "[0 0 -1 16] 0.25" + "id" "26965" + "plane" "(-352 -3264 128) (-376 -3264 128) (-376 -3264 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49063" - "plane" "(1664 -128 64) (1664 -192 64) (1664 -192 384)" + "id" "26964" + "plane" "(-352 -3296 112) (-376 -3296 120) (-376 -3296 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118444,8 +123014,8 @@ world } side { - "id" "49062" - "plane" "(1568 -192 64) (1568 -128 64) (1568 -128 384)" + "id" "26963" + "plane" "(-376 -3296 120) (-376 -3264 120) (-376 -3264 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -118455,29 +123025,19 @@ world } editor { - "color" "0 137 234" + "color" "0 165 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103721" - side - { - "id" "49075" - "plane" "(1568 -192 96) (1664 -192 96) (1792 -256 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "32335" side { - "id" "49074" - "plane" "(1472 -288 0) (1472 -352 0) (1792 -512 0)" + "id" "26974" + "plane" "(-376 -3296 128) (-408 -3296 128) (-408 -3264 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -118487,31 +123047,20 @@ world } side { - "id" "49073" - "plane" "(1568 -192 0) (1568 -192 96) (1472 -288 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26973" + "plane" "(-376 -3264 120) (-408 -3264 120) (-408 -3296 120)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49072" - "plane" "(1792 -512 0) (1792 -512 96) (1792 -256 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49071" - "plane" "(1792 -256 0) (1792 -256 96) (1664 -192 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26972" + "plane" "(-408 -3264 120) (-376 -3264 120) (-376 -3264 128)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -118520,8 +123069,8 @@ world } side { - "id" "49070" - "plane" "(1472 -352 0) (1472 -352 96) (1792 -512 96)" + "id" "26971" + "plane" "(-376 -3296 120) (-408 -3296 120) (-408 -3296 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -118531,9 +123080,9 @@ world } side { - "id" "49069" - "plane" "(1472 -288 0) (1472 -288 96) (1472 -352 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26970" + "plane" "(-408 -3296 120) (-408 -3264 120) (-408 -3264 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -118542,10 +123091,10 @@ world } side { - "id" "49068" - "plane" "(1664 -192 0) (1664 -192 96) (1568 -192 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0] 0.25" + "id" "26969" + "plane" "(-376 -3264 120) (-376 -3296 120) (-376 -3296 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118553,21 +123102,21 @@ world } editor { - "color" "0 119 112" - "visgroupid" "23" + "color" "0 165 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103730" + "id" "32339" side { - "id" "49083" - "plane" "(1472 -512 320) (1792 -512 320) (1792 -256 320)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -64] 0.25" + "id" "26986" + "plane" "(-432 -3296 128) (-432 -3272 128) (-352 -3272 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118575,10 +123124,10 @@ world } side { - "id" "49082" - "plane" "(1472 -288 384) (1568 -192 384) (1664 -192 384)" + "id" "26985" + "plane" "(-432 -3272 0) (-432 -3296 0) (-352 -3296 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118586,43 +123135,21 @@ world } side { - "id" "49081" - "plane" "(1792 -512 320) (1792 -512 384) (1792 -256 384)" + "id" "26984" + "plane" "(-432 -3296 0) (-432 -3272 0) (-432 -3272 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49080" - "plane" "(1472 -288 320) (1472 -288 384) (1472 -512 384)" + "id" "26983" + "plane" "(-352 -3272 0) (-352 -3296 0) (-352 -3296 128)" "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" "49079" - "plane" "(1472 -512 320) (1472 -512 384) (1792 -512 384)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -256] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49078" - "plane" "(1568 -192 320) (1568 -192 384) (1472 -288 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118630,9 +123157,9 @@ world } side { - "id" "49077" - "plane" "(1792 -256 320) (1792 -256 384) (1664 -192 384)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26982" + "plane" "(-432 -3272 0) (-352 -3272 0) (-352 -3272 128)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -118641,9 +123168,9 @@ world } side { - "id" "49076" - "plane" "(1664 -192 320) (1664 -192 384) (1568 -192 384)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "26981" + "plane" "(-352 -3296 0) (-432 -3296 0) (-432 -3296 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -118652,42 +123179,43 @@ world } editor { - "color" "0 119 112" + "color" "0 121 158" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103867" + "id" "32347" side { - "id" "49147" - "plane" "(1344 -1312 0) (1344 -1152 0) (1472 -1152 0)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "26998" + "plane" "(-736 -3520 192) (-736 -3264 192) (-704 -3264 192)" + "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" "49146" - "plane" "(1472 -1152 -128) (1344 -1152 -128) (1344 -1312 -128)" + "id" "26997" + "plane" "(-736 -3264 0) (-736 -3520 0) (-704 -3520 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49145" - "plane" "(1344 -1152 -128) (1472 -1152 -128) (1472 -1152 0)" + "id" "26996" + "plane" "(-736 -3520 0) (-736 -3264 0) (-736 -3264 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118695,9 +123223,9 @@ world } side { - "id" "49144" - "plane" "(1472 -1152 -128) (1472 -1312 -128) (1472 -1312 0)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26995" + "plane" "(-704 -3264 0) (-704 -3520 0) (-704 -3520 192)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -118706,10 +123234,10 @@ world } side { - "id" "49143" - "plane" "(1344 -1312 -128) (1344 -1152 -128) (1344 -1152 0)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "26994" + "plane" "(-736 -3264 0) (-704 -3264 0) (-704 -3264 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118717,9 +123245,9 @@ world } side { - "id" "49142" - "plane" "(1472 -1312 -128) (1344 -1312 -128) (1344 -1312 0)" - "material" "DEV/REFLECTIVITY_30B" + "id" "26993" + "plane" "(-704 -3520 0) (-736 -3520 0) (-736 -3520 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -118728,42 +123256,43 @@ world } editor { - "color" "0 137 234" + "color" "0 165 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103868" + "id" "32348" side { - "id" "49153" - "plane" "(1024 -1312 0) (1024 -1152 0) (1216 -1152 0)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "27010" + "plane" "(-704 -3520 0) (-704 -3264 0) (-544 -3264 0)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49152" - "plane" "(1216 -1152 -128) (1024 -1152 -128) (1024 -1312 -128)" + "id" "27009" + "plane" "(-704 -3264 -64) (-704 -3520 -64) (-544 -3520 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49151" - "plane" "(1024 -1152 -128) (1216 -1152 -128) (1216 -1152 0)" + "id" "27008" + "plane" "(-704 -3520 -64) (-704 -3264 -64) (-704 -3264 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118771,9 +123300,9 @@ world } side { - "id" "49150" - "plane" "(1216 -1152 -128) (1216 -1312 -128) (1216 -1312 0)" - "material" "DEV/REFLECTIVITY_30B" + "id" "27007" + "plane" "(-544 -3264 -64) (-544 -3520 -64) (-544 -3520 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -118782,10 +123311,10 @@ world } side { - "id" "49149" - "plane" "(1024 -1312 -128) (1024 -1152 -128) (1024 -1152 0)" + "id" "27006" + "plane" "(-704 -3264 -64) (-544 -3264 -64) (-544 -3264 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118793,9 +123322,9 @@ world } side { - "id" "49148" - "plane" "(1216 -1312 -128) (1024 -1312 -128) (1024 -1312 0)" - "material" "DEV/REFLECTIVITY_30B" + "id" "27005" + "plane" "(-544 -3520 -64) (-704 -3520 -64) (-704 -3520 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -118804,20 +123333,20 @@ world } editor { - "color" "0 137 234" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103891" + "id" "32351" side { - "id" "49165" - "plane" "(1024 -1472 256) (1120 -1280 256) (1152 -1280 256)" + "id" "27022" + "plane" "(-768 -3296 192) (-768 -3264 192) (-736 -3264 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118825,10 +123354,10 @@ world } side { - "id" "49164" - "plane" "(1120 -1280 0) (1024 -1472 0) (1024 -1536 0)" + "id" "27021" + "plane" "(-768 -3264 0) (-768 -3296 0) (-736 -3296 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118836,9 +123365,9 @@ world } side { - "id" "49163" - "plane" "(1024 -1472 0) (1024 -1472 256) (1024 -1536 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27020" + "plane" "(-768 -3296 0) (-768 -3264 0) (-768 -3264 192)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -118847,10 +123376,10 @@ world } side { - "id" "49162" - "plane" "(1152 -1280 0) (1152 -1280 256) (1120 -1280 256)" + "id" "27019" + "plane" "(-736 -3264 0) (-736 -3296 0) (-736 -3296 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118858,10 +123387,10 @@ world } side { - "id" "49161" - "plane" "(1024 -1536 0) (1024 -1536 256) (1152 -1280 256)" + "id" "27018" + "plane" "(-768 -3264 0) (-736 -3264 0) (-736 -3264 192)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118869,10 +123398,10 @@ world } side { - "id" "49160" - "plane" "(1120 -1280 0) (1120 -1280 256) (1024 -1472 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "27017" + "plane" "(-736 -3296 0) (-768 -3296 0) (-768 -3296 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118880,20 +123409,21 @@ world } editor { - "color" "0 137 234" + "color" "0 165 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103971" + "id" "32354" side { - "id" "49273" - "plane" "(1072 -1376 0) (1104 -1312 0) (1136 -1312 0)" + "id" "27034" + "plane" "(-1024 -3296 192) (-1024 -3264 192) (-848 -3264 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118901,10 +123431,10 @@ world } side { - "id" "49272" - "plane" "(1104 -1312 -8) (1072 -1376 -8) (1104 -1376 -8)" + "id" "27033" + "plane" "(-1024 -3264 -64) (-1024 -3296 -64) (-848 -3296 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118912,9 +123442,9 @@ world } side { - "id" "49271" - "plane" "(1136 -1312 -8) (1104 -1376 -8) (1104 -1376 0)" - "material" "DEV/REFLECTIVITY_50B" + "id" "27032" + "plane" "(-1024 -3296 -64) (-1024 -3264 -64) (-1024 -3264 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -118923,9 +123453,9 @@ world } side { - "id" "49270" - "plane" "(1072 -1376 -8) (1104 -1312 -8) (1104 -1312 0)" - "material" "DEV/REFLECTIVITY_50B" + "id" "27031" + "plane" "(-848 -3264 -64) (-848 -3296 -64) (-848 -3296 192)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -118934,9 +123464,9 @@ world } side { - "id" "49269" - "plane" "(1104 -1312 -8) (1136 -1312 -8) (1136 -1312 0)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27030" + "plane" "(-1024 -3264 -64) (-848 -3264 -64) (-848 -3264 192)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -118945,8 +123475,8 @@ world } side { - "id" "49268" - "plane" "(1104 -1376 -8) (1072 -1376 -8) (1072 -1376 0)" + "id" "27029" + "plane" "(-848 -3296 -64) (-1024 -3296 -64) (-1024 -3296 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -118956,20 +123486,21 @@ world } editor { - "color" "0 137 234" + "color" "0 165 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103972" + "id" "32356" side { - "id" "49279" - "plane" "(1024 -1472 0) (1040 -1440 0) (1072 -1440 0)" + "id" "27070" + "plane" "(-848 -3296 128) (-848 -3272 128) (-768 -3272 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118977,10 +123508,10 @@ world } side { - "id" "49278" - "plane" "(1024 -1472 -64) (1024 -1536 -64) (1072 -1440 -64)" + "id" "27069" + "plane" "(-848 -3272 0) (-848 -3296 0) (-768 -3296 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -118988,8 +123519,8 @@ world } side { - "id" "49277" - "plane" "(1024 -1472 -64) (1024 -1472 0) (1024 -1536 0)" + "id" "27068" + "plane" "(-848 -3296 0) (-848 -3272 0) (-848 -3272 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -118999,9 +123530,9 @@ world } side { - "id" "49276" - "plane" "(1024 -1536 -64) (1024 -1536 0) (1072 -1440 0)" - "material" "DEV/REFLECTIVITY_50B" + "id" "27067" + "plane" "(-768 -3272 0) (-768 -3296 0) (-768 -3296 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -119010,10 +123541,10 @@ world } side { - "id" "49275" - "plane" "(1040 -1440 -64) (1040 -1440 0) (1024 -1472 0)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "27066" + "plane" "(-848 -3272 0) (-768 -3272 0) (-768 -3272 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119021,8 +123552,8 @@ world } side { - "id" "49274" - "plane" "(1072 -1440 -64) (1072 -1440 0) (1040 -1440 0)" + "id" "27065" + "plane" "(-768 -3296 0) (-848 -3296 0) (-848 -3296 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -119032,20 +123563,21 @@ world } editor { - "color" "0 137 234" + "color" "0 121 158" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103973" + "id" "32357" side { - "id" "49285" - "plane" "(1080 -1424 0) (1072 -1440 0) (1040 -1440 0)" + "id" "27076" + "plane" "(-848 -3296 192) (-848 -3264 192) (-768 -3264 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119053,10 +123585,10 @@ world } side { - "id" "49284" - "plane" "(1072 -1440 -64) (1080 -1424 -32) (1048 -1424 -32)" + "id" "27075" + "plane" "(-848 -3264 128) (-848 -3296 128) (-768 -3296 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119064,9 +123596,9 @@ world } side { - "id" "49283" - "plane" "(1072 -1440 0) (1080 -1424 0) (1080 -1424 -32)" - "material" "DEV/REFLECTIVITY_50B" + "id" "27074" + "plane" "(-848 -3296 128) (-848 -3264 128) (-848 -3264 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -119075,9 +123607,9 @@ world } side { - "id" "49282" - "plane" "(1048 -1424 0) (1040 -1440 0) (1040 -1440 -64)" - "material" "DEV/REFLECTIVITY_50B" + "id" "27073" + "plane" "(-768 -3264 128) (-768 -3296 128) (-768 -3296 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -119086,9 +123618,9 @@ world } side { - "id" "49281" - "plane" "(1040 -1440 0) (1072 -1440 0) (1072 -1440 -64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27072" + "plane" "(-848 -3264 128) (-768 -3264 128) (-768 -3264 192)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -119097,8 +123629,8 @@ world } side { - "id" "49280" - "plane" "(1080 -1424 0) (1048 -1424 0) (1048 -1424 -32)" + "id" "27071" + "plane" "(-768 -3296 128) (-848 -3296 128) (-848 -3296 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -119108,20 +123640,21 @@ world } editor { - "color" "0 137 234" + "color" "0 165 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103974" + "id" "32358" side { - "id" "49291" - "plane" "(1092 -1400 0) (1080 -1424 0) (1048 -1424 0)" + "id" "27082" + "plane" "(-848 -3296 128) (-848 -3264 128) (-824 -3264 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119129,10 +123662,10 @@ world } side { - "id" "49290" - "plane" "(1080 -1424 -32) (1092 -1400 -16) (1060 -1400 -16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "27081" + "plane" "(-848 -3264 112) (-848 -3296 112) (-824 -3296 120)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119140,9 +123673,9 @@ world } side { - "id" "49289" - "plane" "(1080 -1424 0) (1092 -1400 0) (1092 -1400 -16)" - "material" "DEV/REFLECTIVITY_50B" + "id" "27080" + "plane" "(-848 -3296 112) (-848 -3264 112) (-848 -3264 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -119151,10 +123684,10 @@ world } side { - "id" "49288" - "plane" "(1060 -1400 0) (1048 -1424 0) (1048 -1424 -32)" + "id" "27079" + "plane" "(-848 -3264 112) (-824 -3264 120) (-824 -3264 128)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119162,8 +123695,8 @@ world } side { - "id" "49287" - "plane" "(1048 -1424 0) (1080 -1424 0) (1080 -1424 -32)" + "id" "27078" + "plane" "(-848 -3296 128) (-824 -3296 128) (-824 -3296 120)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -119173,10 +123706,10 @@ world } side { - "id" "49286" - "plane" "(1092 -1400 0) (1060 -1400 0) (1060 -1400 -16)" + "id" "27077" + "plane" "(-824 -3264 120) (-824 -3296 120) (-824 -3296 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119184,20 +123717,21 @@ world } editor { - "color" "0 137 234" + "color" "0 165 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "103975" + "id" "32359" side { - "id" "49297" - "plane" "(1072 -1376 0) (1104 -1376 0) (1092 -1400 0)" + "id" "27088" + "plane" "(-792 -3296 128) (-824 -3296 128) (-824 -3264 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119205,10 +123739,10 @@ world } side { - "id" "49296" - "plane" "(1060 -1400 -16) (1092 -1400 -16) (1104 -1376 -8)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "27087" + "plane" "(-792 -3264 120) (-824 -3264 120) (-824 -3296 120)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119216,10 +123750,10 @@ world } side { - "id" "49295" - "plane" "(1092 -1400 -16) (1092 -1400 0) (1104 -1376 0)" + "id" "27086" + "plane" "(-824 -3264 120) (-792 -3264 120) (-792 -3264 128)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119227,10 +123761,10 @@ world } side { - "id" "49294" - "plane" "(1072 -1376 -8) (1072 -1376 0) (1060 -1400 0)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "27085" + "plane" "(-792 -3296 120) (-824 -3296 120) (-824 -3296 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119238,10 +123772,10 @@ world } side { - "id" "49293" - "plane" "(1104 -1376 -8) (1104 -1376 0) (1072 -1376 0)" + "id" "27084" + "plane" "(-824 -3296 120) (-824 -3264 120) (-824 -3264 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119249,10 +123783,10 @@ world } side { - "id" "49292" - "plane" "(1060 -1400 -16) (1060 -1400 0) (1092 -1400 0)" + "id" "27083" + "plane" "(-792 -3264 120) (-792 -3296 120) (-792 -3296 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119260,19 +123794,20 @@ world } editor { - "color" "0 137 234" + "color" "0 165 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "104079" + "id" "32360" side { - "id" "49315" - "plane" "(1808 -1600 96) (1800 -1600 96) (1800 -1504 96)" - "material" "DEV/REFLECTIVITY_50B" + "id" "27094" + "plane" "(-792 -3264 128) (-768 -3264 128) (-768 -3296 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -119281,10 +123816,10 @@ world } side { - "id" "49314" - "plane" "(1808 -1504 64) (1800 -1504 64) (1800 -1600 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "id" "27093" + "plane" "(-792 -3296 120) (-768 -3296 112) (-768 -3264 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119292,10 +123827,10 @@ world } side { - "id" "49313" - "plane" "(1808 -1600 64) (1800 -1600 64) (1800 -1600 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "27092" + "plane" "(-768 -3264 112) (-768 -3296 112) (-768 -3296 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119303,10 +123838,10 @@ world } side { - "id" "49312" - "plane" "(1800 -1504 64) (1808 -1504 64) (1808 -1504 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "id" "27091" + "plane" "(-768 -3264 128) (-792 -3264 128) (-792 -3264 120)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119314,10 +123849,10 @@ world } side { - "id" "49311" - "plane" "(1800 -1600 64) (1800 -1504 64) (1800 -1504 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "27090" + "plane" "(-768 -3296 112) (-792 -3296 120) (-792 -3296 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119325,9 +123860,9 @@ world } side { - "id" "49310" - "plane" "(1808 -1504 64) (1808 -1600 64) (1808 -1600 96)" - "material" "DEV/REFLECTIVITY_30B" + "id" "27089" + "plane" "(-792 -3296 120) (-792 -3264 120) (-792 -3264 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -119336,22 +123871,21 @@ world } editor { - "color" "0 137 234" - "visgroupid" "23" - "visgroupid" "24" + "color" "0 165 170" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "104085" + "id" "32369" side { - "id" "49327" - "plane" "(1840 -1600 96) (1808 -1600 96) (1808 -1592 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "27106" + "plane" "(-848 -3296 0) (-848 -3264 0) (-768 -3264 0)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119359,10 +123893,10 @@ world } side { - "id" "49326" - "plane" "(1840 -1592 64) (1808 -1592 64) (1808 -1600 64)" + "id" "27105" + "plane" "(-848 -3264 -64) (-848 -3296 -64) (-768 -3296 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119370,10 +123904,10 @@ world } side { - "id" "49325" - "plane" "(1840 -1600 64) (1808 -1600 64) (1808 -1600 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "27104" + "plane" "(-848 -3296 -64) (-848 -3264 -64) (-848 -3264 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119381,10 +123915,10 @@ world } side { - "id" "49324" - "plane" "(1808 -1592 64) (1840 -1592 64) (1840 -1592 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "27103" + "plane" "(-768 -3264 -64) (-768 -3296 -64) (-768 -3296 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119392,10 +123926,10 @@ world } side { - "id" "49323" - "plane" "(1808 -1600 64) (1808 -1592 64) (1808 -1592 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "27102" + "plane" "(-848 -3264 -64) (-768 -3264 -64) (-768 -3264 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119403,10 +123937,10 @@ world } side { - "id" "49322" - "plane" "(1840 -1592 64) (1840 -1600 64) (1840 -1600 96)" + "id" "27101" + "plane" "(-768 -3296 -64) (-848 -3296 -64) (-848 -3296 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119414,21 +123948,20 @@ world } editor { - "color" "0 137 234" - "visgroupid" "23" - "visgroupid" "24" + "color" "0 255 156" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "104087" + "id" "32588" side { - "id" "49339" - "plane" "(1848 -1600 96) (1840 -1600 96) (1840 -1504 96)" - "material" "DEV/REFLECTIVITY_50B" + "id" "27403" + "plane" "(-960 -2896 288) (-960 -2816 288) (-944 -2816 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -119437,8 +123970,8 @@ world } side { - "id" "49338" - "plane" "(1848 -1504 64) (1840 -1504 64) (1840 -1600 64)" + "id" "27402" + "plane" "(-960 -2816 160) (-960 -2976 160) (-944 -2976 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -119448,10 +123981,21 @@ world } side { - "id" "49337" - "plane" "(1848 -1600 64) (1840 -1600 64) (1840 -1600 96)" + "id" "27401" + "plane" "(-960 -2976 160) (-960 -2816 160) (-960 -2816 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27400" + "plane" "(-944 -2816 160) (-944 -2976 160) (-944 -2928 256)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119459,9 +124003,9 @@ world } side { - "id" "49336" - "plane" "(1840 -1504 64) (1848 -1504 64) (1848 -1504 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27399" + "plane" "(-944 -2976 160) (-960 -2976 160) (-960 -2928 256)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -119470,10 +124014,10 @@ world } side { - "id" "49335" - "plane" "(1840 -1600 64) (1840 -1504 64) (1840 -1504 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "27398" + "plane" "(-960 -2928 256) (-960 -2896 288) (-944 -2896 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119481,10 +124025,10 @@ world } side { - "id" "49334" - "plane" "(1848 -1504 64) (1848 -1600 64) (1848 -1600 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "27397" + "plane" "(-960 -2816 160) (-944 -2816 160) (-944 -2816 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119492,44 +124036,44 @@ world } editor { - "color" "0 137 234" - "visgroupid" "23" - "visgroupid" "24" + "color" "153 242 0" + "groupid" "32587" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "104092" + "id" "32589" side { - "id" "49351" - "plane" "(1840 -1592 88) (1808 -1592 88) (1808 -1504 88)" - "material" "DEV/REFLECTIVITY_10B" + "id" "27409" + "plane" "(-960 -2896 304) (-960 -2896 288) (-944 -2896 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49350" - "plane" "(1840 -1504 64) (1808 -1504 64) (1808 -1592 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "id" "27408" + "plane" "(-960 -2928 272) (-960 -2928 256) (-960 -2896 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49349" - "plane" "(1840 -1592 64) (1808 -1592 64) (1808 -1592 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "id" "27407" + "plane" "(-944 -2896 304) (-944 -2896 288) (-944 -2928 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119537,10 +124081,10 @@ world } side { - "id" "49348" - "plane" "(1808 -1504 64) (1840 -1504 64) (1840 -1504 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "id" "27406" + "plane" "(-944 -2928 272) (-944 -2928 256) (-960 -2928 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119548,10 +124092,10 @@ world } side { - "id" "49347" - "plane" "(1808 -1592 64) (1808 -1504 64) (1808 -1504 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "id" "27405" + "plane" "(-960 -2928 272) (-960 -2896 304) (-944 -2896 304)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119559,10 +124103,10 @@ world } side { - "id" "49346" - "plane" "(1840 -1504 64) (1840 -1592 64) (1840 -1592 88)" + "id" "27404" + "plane" "(-944 -2928 256) (-944 -2896 288) (-960 -2896 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119570,44 +124114,44 @@ world } editor { - "color" "0 137 234" - "visgroupid" "23" - "visgroupid" "24" + "color" "153 242 0" + "groupid" "32587" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "104103" + "id" "32590" side { - "id" "49369" - "plane" "(1536 -1856 64) (1472 -1856 64) (1472 -1728 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "27415" + "plane" "(-960 -2816 304) (-960 -2816 288) (-944 -2816 288)" + "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" "49368" - "plane" "(1472 -1728 -128) (1472 -1856 -128) (1536 -1856 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "27414" + "plane" "(-960 -2896 304) (-960 -2896 288) (-960 -2816 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49367" - "plane" "(1536 -1856 -128) (1472 -1856 -128) (1472 -1856 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "27413" + "plane" "(-944 -2816 304) (-944 -2816 288) (-944 -2896 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119615,10 +124159,10 @@ world } side { - "id" "49366" - "plane" "(1536 -1728 -128) (1536 -1856 -128) (1536 -1856 64)" + "id" "27412" + "plane" "(-944 -2896 304) (-944 -2896 288) (-960 -2896 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119626,65 +124170,66 @@ world } side { - "id" "49365" - "plane" "(1472 -1856 -128) (1472 -1728 -128) (1472 -1728 64)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "27411" + "plane" "(-960 -2896 304) (-960 -2816 304) (-944 -2816 304)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49364" - "plane" "(1472 -1728 -128) (1536 -1728 -128) (1536 -1728 64)" + "id" "27410" + "plane" "(-944 -2816 288) (-960 -2816 288) (-960 -2896 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" - "visgroupid" "23" + "color" "153 242 0" + "groupid" "32587" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "104104" + "id" "32592" side { - "id" "49375" - "plane" "(1472 -1600 64) (1472 -960 64) (1536 -960 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "27422" + "plane" "(-960 -2816 288) (-960 -2736 288) (-944 -2736 288)" + "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" "49374" - "plane" "(1536 -960 -128) (1472 -960 -128) (1472 -1600 -128)" + "id" "27421" + "plane" "(-960 -2656 160) (-960 -2816 160) (-944 -2816 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49373" - "plane" "(1472 -960 -128) (1536 -960 -128) (1536 -960 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "27420" + "plane" "(-960 -2816 160) (-960 -2656 160) (-960 -2704 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -119692,9 +124237,9 @@ world } side { - "id" "49372" - "plane" "(1536 -960 -128) (1536 -1600 -128) (1536 -1600 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27419" + "plane" "(-944 -2656 160) (-944 -2816 160) (-944 -2816 288)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -119703,19 +124248,30 @@ world } side { - "id" "49371" - "plane" "(1472 -1600 -128) (1472 -960 -128) (1472 -960 64)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "27418" + "plane" "(-960 -2656 160) (-944 -2656 160) (-944 -2704 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49370" - "plane" "(1536 -1600 -128) (1472 -1600 -128) (1472 -1600 64)" + "id" "27417" + "plane" "(-944 -2704 256) (-944 -2736 288) (-960 -2736 288)" + "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" "27416" + "plane" "(-944 -2816 160) (-960 -2816 160) (-960 -2816 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -119725,125 +124281,43 @@ world } editor { - "color" "0 137 234" - "visgroupid" "23" + "color" "153 242 0" + "groupid" "32591" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "104105" + "id" "32593" side { - "id" "49381" - "plane" "(1472 -1728 64) (1472 -1600 64) (1568 -1600 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 64] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "27428" + "plane" "(-944 -2736 304) (-944 -2736 288) (-960 -2736 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "3" - "startposition" "[1472 -1728 64]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0" - "row2" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0" - "row3" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0" - "row4" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0" - "row5" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0" - "row6" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0" - "row7" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0" - } - distances - { - "row0" "0 0 0 0 0 0 0 0 0" - "row1" "5.28019 6.44131 6.62748 7.27198 7.12474 4.63086 0.986233 0 0" - "row2" "29.7471 43.0627 33.7056 30.281 19.0999 15.6102 6.4536 0.916668 0" - "row3" "42.5139 43.5759 33.5532 27.6988 23.6669 15.1938 6.13831 2.25 0" - "row4" "36.2069 39.9984 30.6989 26.5925 23.1574 15.52 3.51541 0.916668 0" - "row5" "41.4693 37.3074 30.1394 24.2795 18.2517 13.9832 3.60636 0 0" - "row6" "27.0223 25.4711 20.1278 14.7928 12.1815 8.64061 0.794106 0 0" - "row7" "4.48823 3.03361 8.93882 9.39432 7.92642 1.61731 0 0 0" - "row8" "0 0 1.75864 3.28314 1.75864 0 0 0 0" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row1" "0 0 0 0 0 0 0 9 1 9 0 9 9 9 9 9" - "row2" "1 0 1 1 9 9 1 9 1 9 1 1 9 9 9 9" - "row3" "9 9 1 1 9 9 9 9 9 9 1 1 9 9 9 9" - "row4" "9 9 1 9 9 9 9 9 9 9 1 1 9 9 9 9" - "row5" "1 1 1 1 1 9 9 9 9 9 9 1 9 9 9 9" - "row6" "0 0 0 1 9 9 9 9 9 9 1 9 9 9 9 9" - "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "49380" - "plane" "(1472 -1600 3.8147e-06) (1472 -1728 3.8147e-06) (1568 -1728 3.8147e-06)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27427" + "plane" "(-960 -2736 304) (-960 -2736 288) (-960 -2704 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49379" - "plane" "(1568 -1600 3.8147e-06) (1568 -1728 3.8147e-06) (1568 -1728 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27426" + "plane" "(-944 -2704 272) (-944 -2704 256) (-944 -2736 288)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -119852,103 +124326,20 @@ world } side { - "id" "49378" - "plane" "(1472 -1728 3.8147e-06) (1472 -1600 3.8147e-06) (1472 -1600 64)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "27425" + "plane" "(-960 -2704 272) (-960 -2704 256) (-944 -2704 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "3" - "startposition" "[1472 -1728 0]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - "row2" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - "row3" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - "row4" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - "row5" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - "row6" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - "row7" "0 0 0 0 0 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - distances - { - "row0" "0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0.730974 3.54412 6.35822 8.91048 9.11641 5.2802" - "row2" "0 1.43524 6.25256 11.3361 17.1678 23.2896 29.3596 33.8779 29.7472" - "row3" "0 5.98113 10.666 14.2196 19.2152 25.8119 32.6946 39.1517 42.5139" - "row4" "0 2.69716 7.70703 11.9716 18.3884 24.7708 31.1514 36.8719 36.2069" - "row5" "0 4.09905 6.73774 12.5328 18.7495 25.6215 32.3285 38.2479 41.4693" - "row6" "0 3.91699 9.03726 13.7597 19.42 25.0751 30.8666 35.4584 27.0223" - "row7" "0 0.192218 2.97583 5.70663 8.11137 11.1685 12.9334 10.1103 4.48823" - "row8" "0 0 0 0 0 0 0 0 0" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - "row1" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - "row2" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - "row3" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - "row4" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - "row5" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - "row6" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - "row7" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - "row8" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - } - alphas - { - "row0" "0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0" - } - triangle_tags - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "49377" - "plane" "(1568 -1728 3.8147e-06) (1472 -1728 3.8147e-06) (1472 -1728 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27424" + "plane" "(-944 -2704 272) (-944 -2736 304) (-960 -2736 304)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -119957,8 +124348,8 @@ world } side { - "id" "49376" - "plane" "(1472 -1600 3.8147e-06) (1568 -1600 3.8147e-06) (1568 -1600 64)" + "id" "27423" + "plane" "(-960 -2704 256) (-960 -2736 288) (-944 -2736 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -119968,30 +124359,98 @@ world } editor { - "color" "0 137 234" - "visgroupid" "23" + "color" "153 242 0" + "groupid" "32591" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "104113" + "id" "32594" side { - "id" "49393" - "plane" "(1536 -1600 64) (1536 -960 64) (1792 -960 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "27434" + "plane" "(-944 -2816 304) (-944 -2816 288) (-960 -2816 288)" + "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" "49392" - "plane" "(1536 -960 0) (1536 -1600 0) (1792 -1600 0)" + "id" "27433" + "plane" "(-960 -2816 304) (-960 -2816 288) (-960 -2736 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27432" + "plane" "(-944 -2736 304) (-944 -2736 288) (-944 -2816 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27431" + "plane" "(-960 -2736 304) (-960 -2736 288) (-944 -2736 288)" + "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" "27430" + "plane" "(-944 -2816 304) (-960 -2816 304) (-960 -2736 304)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27429" + "plane" "(-960 -2736 288) (-960 -2816 288) (-944 -2816 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "153 242 0" + "groupid" "32591" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32595" + side + { + "id" "27444" + "plane" "(-944 -2688 160) (-944 -2944 160) (-528 -2944 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -120001,8 +124460,8 @@ world } side { - "id" "49391" - "plane" "(1536 -1600 0) (1536 -960 0) (1536 -960 64)" + "id" "27443" + "plane" "(-944 -2880 256) (-944 -2912 224) (-944 -2944 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -120012,9 +124471,9 @@ world } side { - "id" "49390" - "plane" "(1792 -960 0) (1792 -1600 0) (1792 -1600 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27442" + "plane" "(-528 -2688 160) (-528 -2944 160) (-528 -2912 224)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -120023,10 +124482,110 @@ world } side { - "id" "49389" - "plane" "(1536 -960 0) (1792 -960 0) (1792 -960 64)" + "id" "27441" + "plane" "(-528 -2912 224) (-528 -2944 160) (-944 -2944 160)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[1 0 0 -9] 0.25" + "vaxis" "[0 0 -1 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27440" + "plane" "(-528 -2880 256) (-528 -2912 224) (-944 -2912 224)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[1 0 0 -9] 0.25" + "vaxis" "[0 0 -1 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27439" + "plane" "(-944 -2880 256) (-944 -2848 272) (-528 -2848 272)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[1 0 0 -9] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27438" + "plane" "(-944 -2720 224) (-944 -2688 160) (-528 -2688 160)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[1 0 0 -9] 0.25" + "vaxis" "[0 0 -1 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27437" + "plane" "(-944 -2752 256) (-944 -2720 224) (-528 -2720 224)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[1 0 0 -9] 0.25" + "vaxis" "[0 0 -1 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27436" + "plane" "(-944 -2784 272) (-944 -2752 256) (-528 -2752 256)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[1 0 0 -9] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27435" + "plane" "(-944 -2848 272) (-944 -2784 272) (-528 -2784 272)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[1 0 0 -9] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32596" + side + { + "id" "27449" + "plane" "(-608 -2816 192) (-864 -2816 192) (-864 -2968 192)" "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" "27448" + "plane" "(-864 -2816 192) (-608 -2816 192) (-736 -2816 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -120034,8 +124593,53 @@ world } side { - "id" "49388" - "plane" "(1792 -1600 0) (1536 -1600 0) (1536 -1600 64)" + "id" "27447" + "plane" "(-608 -2968 192) (-864 -2968 192) (-736 -2968 288)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27446" + "plane" "(-736 -2968 288) (-864 -2968 192) (-864 -2816 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27445" + "plane" "(-736 -2816 288) (-608 -2816 192) (-608 -2968 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32597" + side + { + "id" "27455" + "plane" "(-752 -2968 224) (-752 -2968 264) (-768 -2968 264)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -120043,23 +124647,112 @@ world "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "27454" + "plane" "(-821.344 -2976 224) (-768 -2976 264) (-752 -2976 264)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27453" + "plane" "(-768 -2976 264) (-821.341 -2976 224) (-821.332 -2968 224)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27452" + "plane" "(-752 -2968 264) (-752 -2968 224) (-752 -2976 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27451" + "plane" "(-752 -2968 224) (-821.336 -2968 224) (-821.348 -2976 224)" + "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" "27450" + "plane" "(-752 -2976 264) (-768 -2976 264) (-768 -2968 264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "0 163 208" - "visgroupid" "23" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "104115" + "id" "32598" side { - "id" "49405" - "plane" "(1568 -1728 64) (1568 -1600 64) (2240 -1600 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" + "id" "27461" + "plane" "(-608 -2968 192) (-720 -2968 192) (-720 -2976 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27460" + "plane" "(-720 -2968 192) (-608 -2968 192) (-650.671 -2968 224)" + "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" "27459" + "plane" "(-608 -2976 192) (-720 -2976 192) (-720 -2976 224)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27458" + "plane" "(-650.664 -2968 224) (-608 -2968 192) (-608 -2976 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -120067,8 +124760,19 @@ world } side { - "id" "49404" - "plane" "(1568 -1600 0) (1568 -1728 0) (2240 -1728 0)" + "id" "27457" + "plane" "(-720 -2976 224) (-720 -2976 192) (-720 -2968 192)" + "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" "27456" + "plane" "(-650.668 -2976 224) (-720 -2976 224) (-720 -2968 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -120076,10 +124780,66 @@ world "lightmapscale" "16" "smoothing_groups" "0" } + editor + { + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32599" side { - "id" "49403" - "plane" "(1568 -1728 0) (1568 -1600 0) (1568 -1600 64)" + "id" "27468" + "plane" "(-720 -2968 264) (-720 -2968 276) (-736 -2968 288)" + "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" "27467" + "plane" "(-752 -2976 264) (-752 -2976 276) (-736 -2976 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27466" + "plane" "(-736 -2976 288) (-752 -2976 276) (-752 -2968 276)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27465" + "plane" "(-720 -2976 276) (-736 -2976 288) (-736 -2968 288)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27464" + "plane" "(-752 -2976 276) (-752 -2976 264) (-752 -2968 264)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -120089,8 +124849,8 @@ world } side { - "id" "49402" - "plane" "(2240 -1600 0) (2240 -1728 0) (2240 -1728 64)" + "id" "27463" + "plane" "(-720 -2968 276) (-720 -2968 264) (-720 -2976 264)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -120100,8 +124860,31 @@ world } side { - "id" "49401" - "plane" "(1568 -1600 0) (2240 -1600 0) (2240 -1600 64)" + "id" "27462" + "plane" "(-720 -2968 264) (-752 -2968 264) (-752 -2976 264)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32600" + side + { + "id" "27473" + "plane" "(-752 -2968 264) (-752 -2968 276) (-768 -2968 264)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -120111,52 +124894,153 @@ world } side { - "id" "49400" - "plane" "(2240 -1728 0) (1568 -1728 0) (1568 -1728 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27472" + "plane" "(-768 -2976 264) (-752 -2976 276) (-752 -2976 264)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27471" + "plane" "(-752 -2976 276) (-768 -2976 264) (-768 -2968 264)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27470" + "plane" "(-752 -2968 276) (-752 -2968 264) (-752 -2976 264)" + "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" "27469" + "plane" "(-752 -2968 264) (-768 -2968 264) (-768 -2976 264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "0 163 208" - "visgroupid" "23" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "104195" + "id" "32601" side { - "id" "49429" - "plane" "(1472 -1728 3.8147e-06) (1472 -1600 3.8147e-06) (1536 -1600 3.8147e-06)" + "id" "27479" + "plane" "(-650.676 -2968 224) (-704 -2968 264) (-720 -2968 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49428" - "plane" "(1536 -1600 -128) (1472 -1600 -128) (1472 -1728 -128)" + "id" "27478" + "plane" "(-720 -2976 224) (-720 -2976 264) (-704 -2976 264)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27477" + "plane" "(-650.668 -2976 224) (-704 -2976 264) (-704 -2968 264)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27476" + "plane" "(-720 -2976 264) (-720 -2976 224) (-720 -2968 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27475" + "plane" "(-650.668 -2968 224) (-720 -2968 224) (-720 -2976 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "49427" - "plane" "(1472 -1600 -128) (1536 -1600 -128) (1536 -1600 3.8147e-06)" + "id" "27474" + "plane" "(-704 -2976 264) (-720 -2976 264) (-720 -2968 264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32602" + side + { + "id" "27485" + "plane" "(-720 -2968 192) (-752 -2968 192) (-752 -2976 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27484" + "plane" "(-752 -2968 224) (-752 -2968 192) (-720 -2968 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -120166,10 +125050,21 @@ world } side { - "id" "49426" - "plane" "(1536 -1600 -128) (1536 -1728 -128) (1536 -1728 3.8147e-06)" + "id" "27483" + "plane" "(-720 -2976 224) (-720 -2976 192) (-752 -2976 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27482" + "plane" "(-752 -2976 224) (-752 -2976 192) (-752 -2968 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -120177,662 +125072,131 @@ world } side { - "id" "49425" - "plane" "(1472 -1728 -128) (1472 -1600 -128) (1472 -1600 3.8147e-06)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "27481" + "plane" "(-720 -2968 224) (-720 -2968 192) (-720 -2976 192)" + "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" "49424" - "plane" "(1536 -1728 -128) (1472 -1728 -128) (1472 -1728 3.8147e-06)" + "id" "27480" + "plane" "(-720 -2976 224) (-752 -2976 224) (-752 -2968 224)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" - "visgroupid" "23" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } - hidden + solid { - solid + "id" "32603" + side { - "id" "102359" - side - { - "id" "48826" - "plane" "(2320 380 320) (2380 344 320) (2292 192 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48825" - "plane" "(2292 192 96) (2380 344 96) (2320 380 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48824" - "plane" "(2272 392 320) (2272 192 320) (2272 192 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48823" - "plane" "(2292 192 320) (2380 344 320) (2380 344 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48822" - "plane" "(2380 344 320) (2320 380 320) (2320 380 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48821" - "plane" "(2272 192 320) (2292 192 320) (2292 192 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48820" - "plane" "(2320 380 320) (2272 392 320) (2272 391.999 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 101 178" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "27490" + "plane" "(-704 -2968 264) (-720 -2968 276) (-720 -2968 264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - hidden - { - solid + side { - "id" "102374" - side - { - "id" "48832" - "plane" "(1856 -512 320) (2240 -512 320) (2240 -1280 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48831" - "plane" "(1856 -1280 256) (2240 -1280 256) (2240 -512 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48830" - "plane" "(1856 -512 256) (2240 -512 256) (2240 -512 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48829" - "plane" "(2240 -1280 256) (1856 -1280 256) (1856 -1280 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48828" - "plane" "(1856 -1280 256) (1856 -512 256) (1856 -512 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48827" - "plane" "(2240 -512 256) (2240 -1280 256) (2240 -1280 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 145 198" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "27489" + "plane" "(-720 -2976 264) (-720 -2976 276) (-704 -2976 264)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - hidden - { - solid + side { - "id" "102375" - side - { - "id" "48838" - "plane" "(2240 -192 320) (3264 -192 320) (3264 -1280 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48837" - "plane" "(2240 -1280 256) (3264 -1280 256) (3264 -192 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48836" - "plane" "(3264 -192 256) (3264 -1280 256) (3264 -1280 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48835" - "plane" "(2240 -192 256) (3264 -192 256) (3264 -192 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48834" - "plane" "(3264 -1280 256) (2240 -1280 256) (2240 -1280 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48833" - "plane" "(2240 -1280 256) (2240 -192 256) (2240 -192 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 145 198" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "102380" - side - { - "id" "48850" - "plane" "(1856 -1280 320) (864 -1280 320) (864 -512 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48849" - "plane" "(864 -512 256) (864 -1280 256) (1856 -1280 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48848" - "plane" "(1856 -1280 256) (864 -1280 256) (864 -1280 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48847" - "plane" "(864 -1280 256) (864 -512 256) (864 -512 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48846" - "plane" "(1856 -512 256) (1856 -1280 256) (1856 -1280 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48845" - "plane" "(864 -512 256) (1856 -512 256) (1856 -512 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 145 198" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "102391" - side - { - "id" "48860" - "plane" "(-127.991 -1920 32) (-64 -1920 32) (-64 -1600 32)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 63.9374] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48859" - "plane" "(-64 -1600 64) (-64 -1600 32) (-64 -1920 32)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48858" - "plane" "(-128 -1600 32) (-64 -1600 32) (-64 -1600 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 63.9375] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48857" - "plane" "(-64 -1920 64) (-64 -1920 32) (-127.999 -1920 32)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 63.9375] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48856" - "plane" "(-127.991 -1920 32) (-127.991 -1600 32) (-64 -1600 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 63.9374] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 233 234" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "27488" + "plane" "(-704 -2976 264) (-720 -2976 276) (-720 -2968 276)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - hidden - { - solid + side { - "id" "102402" - side - { - "id" "48872" - "plane" "(2464 -832 64) (2528 -832 96) (2528 -1088 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48871" - "plane" "(2464 -1088 64) (2528 -1088 64) (2528 -832 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48869" - "plane" "(2528 -1088 64) (2528 -1088 96) (2528 -832 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48868" - "plane" "(2528 -832 64) (2528 -832 96) (2464 -832 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48867" - "plane" "(2464 -1088 64) (2528 -1088 96) (2528 -1088 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 139 240" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "27487" + "plane" "(-720 -2976 276) (-720 -2976 264) (-720 -2968 264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - hidden - { - solid + side { - "id" "102406" - side - { - "id" "48882" - "plane" "(2496 -1120 64) (2464 -1088 64) (2528 -1088 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48881" - "plane" "(2464 -1088 64) (2496 -1120 64) (2528 -1088 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48879" - "plane" "(2464 -1088 64) (2528 -1088 64) (2528 -1088 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48878" - "plane" "(2528 -1088 64) (2496 -1120 64) (2528 -1088 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 139 240" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "27486" + "plane" "(-704 -2968 264) (-720 -2968 264) (-720 -2976 264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - hidden - { - solid + editor { - "id" "102410" - side - { - "id" "48883" - "plane" "(1472 -1472 256) (1504 -1472 256) (1504 -1984 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48884" - "plane" "(1472 -1984 64) (1504 -1984 64) (1504 -1472 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48885" - "plane" "(1472 -1472 256) (1472 -1984 256) (1472 -1984 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48886" - "plane" "(1504 -1472 64) (1504 -1984 64) (1504 -1984 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48887" - "plane" "(1504 -1472 256) (1472 -1472 256) (1472 -1472 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48888" - "plane" "(1504 -1984 64) (1472 -1984 64) (1472 -1984 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 254 119" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" } } solid { - "id" "102411" + "id" "32604" side { - "id" "48900" - "plane" "(1792 -1472 256) (1536 -1472 256) (1536 -1344 256)" + "id" "27496" + "plane" "(-752 -2968 192) (-864 -2968 192) (-864 -2976 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48899" - "plane" "(1792 -1344 192) (1536 -1344 192) (1536 -1472 192)" - "material" "DEV/REFLECTIVITY_30B" + "id" "27495" + "plane" "(-864 -2968 192) (-752 -2968 192) (-752 -2968 224)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48898" - "plane" "(1792 -1472 192) (1536 -1472 192) (1536 -1472 256)" + "id" "27494" + "plane" "(-752 -2976 192) (-864 -2976 192) (-821.332 -2976 224)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -120842,19 +125206,19 @@ world } side { - "id" "48897" - "plane" "(1536 -1344 192) (1792 -1344 192) (1792 -1344 256)" - "material" "DEV/REFLECTIVITY_50B" + "id" "27493" + "plane" "(-821.337 -2976 224) (-864 -2976 192) (-864 -2968 192)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48896" - "plane" "(1536 -1472 192) (1536 -1344 192) (1536 -1344 256)" + "id" "27492" + "plane" "(-752 -2968 224) (-752 -2968 192) (-752 -2976 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -120864,200 +125228,66 @@ world } side { - "id" "48895" - "plane" "(1792 -1344 192) (1792 -1472 192) (1792 -1472 256)" + "id" "27491" + "plane" "(-752 -2976 224) (-821.336 -2976 224) (-821.332 -2968 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } - hidden - { - solid - { - "id" "102418" - side - { - "id" "48912" - "plane" "(1472 -2016 256) (1024 -2016 256) (1088 -1952 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48911" - "plane" "(1472 -1952 224) (1088 -1952 224) (1024 -2016 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48910" - "plane" "(1088 -1952 224) (1088 -1952 256) (1024 -2016 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48909" - "plane" "(1472 -1952 256) (1472 -1952 224) (1472 -2016 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48908" - "plane" "(1088 -1952 224) (1472 -1952 224) (1472 -1952 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 254 119" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "102439" - side - { - "id" "48927" - "plane" "(1024 -2016 256) (1024 -1920 256) (1088 -1920 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48926" - "plane" "(1024 -1920 256) (1024 -2016 256) (1088 -1952 224)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48925" - "plane" "(1088 -1952 224) (1024 -2016 256) (1088 -1952 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48924" - "plane" "(1088 -1920 224) (1088 -1952 224) (1088 -1952 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48923" - "plane" "(1088 -1920 256) (1024 -1920 256) (1088 -1920 224)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 254 119" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } solid { - "id" "100785" + "id" "32605" side { - "id" "48738" - "plane" "(1808 4 163.998) (1808 68 163.998) (1928 68 163.998)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 1 0 -16] 0.25" + "id" "27502" + "plane" "(-720 -2976 220) (-752 -2976 220) (-752 -2980 220)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48737" - "plane" "(1808 68 91.519) (1808 4 91.519) (1928 4 91.519)" + "id" "27501" + "plane" "(-752 -2976 224) (-752 -2976 220) (-720 -2976 220)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48736" - "plane" "(1928 4 163.998) (1928 68 163.998) (1928 68 91.519)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 80] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "27500" + "plane" "(-720 -2980 224) (-720 -2980 220) (-752 -2980 220)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48735" - "plane" "(1808 68 163.998) (1808 4 163.998) (1808 4 91.519)" + "id" "27499" + "plane" "(-752 -2980 224) (-752 -2980 220) (-752 -2976 220)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121065,10 +125295,10 @@ world } side { - "id" "48734" - "plane" "(1808 4 163.998) (1928 4 163.998) (1928 4 91.519)" + "id" "27498" + "plane" "(-720 -2976 224) (-720 -2976 220) (-720 -2980 220)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121076,53 +125306,55 @@ world } side { - "id" "48733" - "plane" "(1928 68 163.998) (1808 68 163.998) (1808 68 91.519)" + "id" "27497" + "plane" "(-720 -2980 224) (-752 -2980 224) (-752 -2976 224)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 124 241" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "100787" + "id" "32606" side { - "id" "48744" - "plane" "(1928 4 164) (1928 68 164) (1932 68 164)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -16] 0.25" + "id" "27508" + "plane" "(-896 -2976 192) (-896 -2656 192) (-576 -2656 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48743" - "plane" "(1928 68 155.519) (1928 4 155.519) (1932 4 155.519)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 1 0 -16] 0.25" + "id" "27507" + "plane" "(-896 -2656 160) (-896 -2976 160) (-576 -2976 160)" + "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" "48742" - "plane" "(1932 4 164) (1932 68 164) (1932 68 155.519)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 16] 0.25" + "id" "27506" + "plane" "(-896 -2976 160) (-896 -2656 160) (-896 -2656 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121130,21 +125362,21 @@ world } side { - "id" "48741" - "plane" "(1928 68 164) (1928 4 164) (1928 4 155.519)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "27505" + "plane" "(-576 -2656 160) (-576 -2976 160) (-576 -2976 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48740" - "plane" "(1928 4 164) (1932 4 164) (1932 4 155.519)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 16] 0.25" + "id" "27504" + "plane" "(-896 -2656 160) (-576 -2656 160) (-576 -2656 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121152,10 +125384,10 @@ world } side { - "id" "48739" - "plane" "(1932 68 164) (1928 68 164) (1928 68 155.519)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 16] 0.25" + "id" "27503" + "plane" "(-576 -2976 160) (-896 -2976 160) (-896 -2976 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121163,45 +125395,44 @@ world } editor { - "color" "162 131 0" - "groupid" "100786" - "visgroupid" "23" - "visgroupid" "24" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "100788" + "id" "32607" side { - "id" "48750" - "plane" "(1928 60 156) (1928 68 156) (1932 68 156)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -48] 0.25" + "id" "27514" + "plane" "(-960 -2976 160) (-960 -2960 160) (-512 -2960 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48749" - "plane" "(1928 68 100) (1928 60 100) (1932 60 100)" + "id" "27513" + "plane" "(-960 -2960 128) (-960 -2976 128) (-512 -2976 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48748" - "plane" "(1932 60 156) (1932 68 156) (1932 68 100)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 16] 0.25" + "id" "27512" + "plane" "(-960 -2976 128) (-960 -2960 128) (-960 -2960 160)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121209,32 +125440,32 @@ world } side { - "id" "48747" - "plane" "(1928 68 156) (1928 60 156) (1928 60 100)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[0 0 -1 -48] 0.25" + "id" "27511" + "plane" "(-512 -2960 128) (-512 -2976 128) (-512 -2976 160)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48746" - "plane" "(1928 60 156) (1932 60 156) (1932 60 100)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "27510" + "plane" "(-960 -2960 128) (-512 -2960 128) (-512 -2960 160)" + "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" "48745" - "plane" "(1932 68 156) (1928 68 156) (1928 68 100)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 16] 0.25" + "id" "27509" + "plane" "(-512 -2976 128) (-960 -2976 128) (-960 -2976 160)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121242,45 +125473,44 @@ world } editor { - "color" "162 131 0" - "groupid" "100786" - "visgroupid" "23" - "visgroupid" "24" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "100789" + "id" "32611" side { - "id" "48756" - "plane" "(1928 4 100) (1928 68 100) (1932 68 100)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 1 0 -16] 0.25" + "id" "27520" + "plane" "(-528 -2816 160) (-528 -2976 160) (-512 -2976 160)" + "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" "48755" - "plane" "(1928 68 91.519) (1928 4 91.519) (1932 4 91.519)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -16] 0.25" + "id" "27519" + "plane" "(-528 -2968 176) (-528 -2976 160) (-528 -2816 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48754" - "plane" "(1932 4 100) (1932 68 100) (1932 68 91.519)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 16] 0.25" + "id" "27518" + "plane" "(-512 -2816 160) (-512 -2976 160) (-512 -2968 176)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121288,21 +125518,21 @@ world } side { - "id" "48753" - "plane" "(1928 68 100) (1928 4 100) (1928 4 91.519)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "27517" + "plane" "(-512 -2968 176) (-512 -2976 160) (-528 -2976 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48752" - "plane" "(1928 4 100) (1932 4 100) (1932 4 91.519)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 16] 0.25" + "id" "27516" + "plane" "(-528 -2816 176) (-528 -2816 160) (-512 -2816 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121310,56 +125540,55 @@ world } side { - "id" "48751" - "plane" "(1932 68 100) (1928 68 100) (1928 68 91.519)" + "id" "27515" + "plane" "(-528 -2968 176) (-528 -2816 176) (-512 -2816 176)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "162 131 0" - "groupid" "100786" - "visgroupid" "23" - "visgroupid" "24" + "color" "153 242 0" + "groupid" "32610" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "100790" + "id" "32612" side { - "id" "48762" - "plane" "(1928 4 156) (1928 12 156) (1932 12 156)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -16] 0.25" + "id" "27526" + "plane" "(-528 -2944 224) (-528 -2968 176) (-528 -2840 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48761" - "plane" "(1928 12 100) (1928 4 100) (1932 4 100)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -16] 0.25" + "id" "27525" + "plane" "(-512 -2968 176) (-512 -2944 224) (-512 -2840 224)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48760" - "plane" "(1932 4 156) (1932 12 156) (1932 12 100)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 16] 0.25" + "id" "27524" + "plane" "(-512 -2944 224) (-512 -2968 176) (-528 -2968 176)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121367,145 +125596,144 @@ world } side { - "id" "48759" - "plane" "(1928 12 156) (1928 4 156) (1928 4 100)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[0 0 -1 -48] 0.25" + "id" "27523" + "plane" "(-528 -2840 224) (-528 -2840 176) (-512 -2840 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48758" - "plane" "(1928 4 156) (1932 4 156) (1932 4 100)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "27522" + "plane" "(-528 -2944 224) (-528 -2840 224) (-512 -2840 224)" + "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" "48757" - "plane" "(1932 12 156) (1928 12 156) (1928 12 100)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "27521" + "plane" "(-528 -2840 176) (-528 -2968 176) (-512 -2968 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "162 131 0" - "groupid" "100786" - "visgroupid" "23" - "visgroupid" "24" + "color" "153 242 0" + "groupid" "32610" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "100791" + "id" "32613" side { - "id" "48768" - "plane" "(1804 0 168) (1804 72 168) (1936 72 168)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 80] 0.25" - "vaxis" "[0 1 0 -16] 0.25" + "id" "27532" + "plane" "(-528 -2896 304) (-528 -2896 288) (-512 -2896 288)" + "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" "48767" - "plane" "(1808 68 164) (1808 4 164) (1932 4 164)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" - "vaxis" "[0 1 0 -48] 0.25" + "id" "27531" + "plane" "(-528 -2928 272) (-528 -2928 256) (-528 -2896 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48766" - "plane" "(1932 68 164) (1932 4 164) (1936 0 168)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 80] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "27530" + "plane" "(-512 -2896 304) (-512 -2896 288) (-512 -2928 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48765" - "plane" "(1932 4 164) (1808 4 164) (1804 0 168)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 80] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "27529" + "plane" "(-512 -2928 272) (-512 -2928 256) (-528 -2928 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48764" - "plane" "(1936 72 168) (1804 72 168) (1808 68 164)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 80] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "27528" + "plane" "(-528 -2928 272) (-528 -2896 304) (-512 -2896 304)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48763" - "plane" "(1804 72 168) (1804 0 168) (1808 4 164)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 80] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "27527" + "plane" "(-512 -2928 256) (-512 -2896 288) (-528 -2896 288)" + "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 124 241" - "visgroupid" "23" - "visgroupid" "24" + "color" "153 242 0" + "groupid" "32610" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "101054" + "id" "32614" side { - "id" "48780" - "plane" "(2464 832 128) (2176 832 128) (2176 768 128)" + "id" "27538" + "plane" "(-528 -2816 304) (-528 -2816 288) (-512 -2816 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48779" - "plane" "(2464 768 128) (2176 768 128) (2176 768 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "27537" + "plane" "(-528 -2896 304) (-528 -2896 288) (-528 -2816 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121513,10 +125741,10 @@ world } side { - "id" "48778" - "plane" "(2176 832 128) (2464 832 128) (2464 832 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "27536" + "plane" "(-512 -2816 304) (-512 -2816 288) (-512 -2896 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121524,10 +125752,10 @@ world } side { - "id" "48777" - "plane" "(2176 768 128) (2176 832 128) (2176 832 256)" + "id" "27535" + "plane" "(-512 -2896 304) (-512 -2896 288) (-528 -2896 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121535,19 +125763,19 @@ world } side { - "id" "48776" - "plane" "(2464 832 128) (2464 768 128) (2464 768 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.203954 -0.97898 0 -16.0605] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "27534" + "plane" "(-528 -2896 304) (-528 -2816 304) (-512 -2816 304)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48775" - "plane" "(2464 768 256) (2176 768 256) (2176 832 256)" + "id" "27533" + "plane" "(-512 -2816 288) (-528 -2816 288) (-528 -2896 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -121557,42 +125785,33 @@ world } editor { - "color" "0 137 234" + "color" "153 242 0" + "groupid" "32610" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "101058" + "id" "32615" side { - "id" "48802" - "plane" "(2048 1024 64) (1344 1024 64) (1344 960 64)" + "id" "27545" + "plane" "(-528 -2896 288) (-528 -2816 288) (-512 -2816 288)" "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" "48801" - "plane" "(2048 960 256) (2048 960 64) (1344 960 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48800" - "plane" "(1344 1024 256) (1344 1024 64) (2048 1024 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "27544" + "plane" "(-528 -2816 224) (-528 -2816 288) (-528 -2896 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121600,9 +125819,9 @@ world } side { - "id" "48799" - "plane" "(1344 960 256) (1344 960 64) (1344 1024 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27543" + "plane" "(-512 -2944 224) (-512 -2928 256) (-512 -2896 288)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -121611,10 +125830,10 @@ world } side { - "id" "48798" - "plane" "(2048 1024 256) (2048 1024 64) (2048 960 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.753424 -0.657534 0 15.4211] 0.25" + "id" "27542" + "plane" "(-528 -2944 224) (-528 -2928 256) (-512 -2928 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121622,283 +125841,232 @@ world } side { - "id" "48797" - "plane" "(2048 960 256) (1344 960 256) (1344 1024 256)" + "id" "27541" + "plane" "(-528 -2928 256) (-528 -2896 288) (-512 -2896 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 137 234" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "97408" - side - { - "id" "48444" - "plane" "(896 -32 288) (960 -32 288) (960 320 288)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48443" - "plane" "(960 -32 320) (896 -32 320) (896 320 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.0032959] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48442" - "plane" "(960 -32 288) (896 -32 288) (896 -32 320)" + "id" "27540" + "plane" "(-512 -2816 224) (-512 -2816 288) (-528 -2816 288)" "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" "48441" - "plane" "(960 320 288) (960 -32 288) (960 -32 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48440" - "plane" "(896 320 288) (960 320 288) (960 320 320)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27539" + "plane" "(-528 -2816 224) (-528 -2944 224) (-512 -2944 224)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48439" - "plane" "(896 -32 288) (896 320 288) (896 320 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 179" - "groupid" "97407" + "color" "153 242 0" + "groupid" "32610" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "97414" + "id" "32617" side { - "id" "48456" - "plane" "(960 -64 288) (1184 -64 288) (1184 384 288)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "27551" + "plane" "(-528 -2656 160) (-528 -2816 160) (-512 -2816 160)" + "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" "48455" - "plane" "(1184 -64 320) (960 -64 320) (960 384 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -11.639] 0.25" - "vaxis" "[0 -1 0 21.3334] 0.25" + "id" "27550" + "plane" "(-528 -2816 160) (-528 -2656 160) (-528 -2664 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48454" - "plane" "(1184 -64 288) (960 -64 288) (960 -64 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -11.6357] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "27549" + "plane" "(-512 -2664 176) (-512 -2656 160) (-512 -2816 160)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48453" - "plane" "(1184 384 288) (1184 -64 288) (1184 -64 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -21.3334] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "27548" + "plane" "(-528 -2664 176) (-528 -2656 160) (-512 -2656 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48452" - "plane" "(960 384 288) (1184 384 288) (1184 384 320)" + "id" "27547" + "plane" "(-512 -2816 176) (-512 -2816 160) (-528 -2816 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -11.6357] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48451" - "plane" "(960 -64 288) (960 384 288) (960 384 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -21.3334] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "27546" + "plane" "(-528 -2816 176) (-528 -2664 176) (-512 -2664 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 179" - "groupid" "97413" + "color" "153 242 0" + "groupid" "32616" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "97429" + "id" "32618" side { - "id" "48468" - "plane" "(1280 -64 288) (1280 128 288) (1184 224 288)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "27557" + "plane" "(-528 -2664 176) (-528 -2688 224) (-528 -2792 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48467" - "plane" "(1184 -64 320) (1184 224 320) (1280 128 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -52.3636] 0.25" - "vaxis" "[0 -1 0 42.6667] 0.25" + "id" "27556" + "plane" "(-512 -2688 224) (-512 -2664 176) (-512 -2792 176)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48466" - "plane" "(1184 -64 288) (1184 -64 320) (1280 -64 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -52.3604] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "27555" + "plane" "(-528 -2688 224) (-528 -2664 176) (-512 -2664 176)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48465" - "plane" "(1280 -64 288) (1280 -64 320) (1280 128 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -42.6667] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "27554" + "plane" "(-512 -2792 224) (-512 -2792 176) (-528 -2792 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48464" - "plane" "(1280 128 288) (1280 128 320) (1184 224 320)" + "id" "27553" + "plane" "(-528 -2792 224) (-528 -2688 224) (-512 -2688 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -52.3604] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48463" - "plane" "(1184 224 288) (1184 224 320) (1184 -64 320)" + "id" "27552" + "plane" "(-528 -2664 176) (-528 -2792 176) (-512 -2792 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -42.6667] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 179" - "groupid" "97428" + "color" "153 242 0" + "groupid" "32616" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "97450" + "id" "32619" side { - "id" "48474" - "plane" "(1088 -128 320) (960 -128 320) (960 -64 320)" + "id" "27563" + "plane" "(-512 -2736 304) (-512 -2736 288) (-528 -2736 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48473" - "plane" "(1088 -64 128) (960 -64 128) (960 -128 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27562" + "plane" "(-528 -2736 304) (-528 -2736 288) (-528 -2704 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48472" - "plane" "(960 -128 128) (960 -64 128) (960 -64 320)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27561" + "plane" "(-512 -2704 272) (-512 -2704 256) (-512 -2736 288)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -121907,10 +126075,10 @@ world } side { - "id" "48471" - "plane" "(1088 -128 128) (960 -128 128) (960 -128 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 256] 0.25" + "id" "27560" + "plane" "(-528 -2704 272) (-528 -2704 256) (-512 -2704 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121918,10 +126086,10 @@ world } side { - "id" "48470" - "plane" "(960 -64 128) (1088 -64 128) (1088 -64 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 256] 0.25" + "id" "27559" + "plane" "(-512 -2704 272) (-512 -2736 304) (-528 -2736 304)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121929,10 +126097,10 @@ world } side { - "id" "48469" - "plane" "(1088 -64 128) (1088 -128 128) (1088 -128 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "27558" + "plane" "(-528 -2704 256) (-528 -2736 288) (-512 -2736 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121940,42 +126108,44 @@ world } editor { - "color" "0 137 234" + "color" "153 242 0" + "groupid" "32616" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "97451" + "id" "32620" side { - "id" "48480" - "plane" "(1664 -128 320) (1152 -128 320) (1152 -64 320)" + "id" "27569" + "plane" "(-512 -2816 304) (-512 -2816 288) (-528 -2816 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48479" - "plane" "(1664 -64 128) (1152 -64 128) (1152 -128 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27568" + "plane" "(-528 -2816 304) (-528 -2816 288) (-528 -2736 288)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48478" - "plane" "(1664 -128 128) (1152 -128 128) (1152 -128 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 256] 0.25" + "id" "27567" + "plane" "(-512 -2736 304) (-512 -2736 288) (-512 -2816 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121983,10 +126153,10 @@ world } side { - "id" "48477" - "plane" "(1152 -64 128) (1664 -64 128) (1664 -64 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 256] 0.25" + "id" "27566" + "plane" "(-528 -2736 304) (-528 -2736 288) (-512 -2736 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -121994,63 +126164,65 @@ world } side { - "id" "48476" - "plane" "(1664 -64 128) (1664 -128 128) (1664 -128 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "27565" + "plane" "(-512 -2816 304) (-528 -2816 304) (-528 -2736 304)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48475" - "plane" "(1152 -128 128) (1152 -64 128) (1152 -64 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "27564" + "plane" "(-528 -2736 288) (-528 -2816 288) (-512 -2816 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "153 242 0" + "groupid" "32616" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "97453" + "id" "32621" side { - "id" "48492" - "plane" "(1152 -128 320) (1088 -128 320) (1088 -64 320)" + "id" "27576" + "plane" "(-528 -2816 288) (-528 -2736 288) (-512 -2736 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48491" - "plane" "(1152 -64 256) (1088 -64 256) (1088 -128 256)" + "id" "27575" + "plane" "(-528 -2688 224) (-528 -2704 256) (-528 -2736 288)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48490" - "plane" "(1088 -128 256) (1088 -64 256) (1088 -64 320)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27574" + "plane" "(-512 -2816 224) (-512 -2816 288) (-512 -2736 288)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122059,9 +126231,9 @@ world } side { - "id" "48489" - "plane" "(1152 -128 256) (1088 -128 256) (1088 -128 320)" - "material" "DEV/GRAYGRID" + "id" "27573" + "plane" "(-512 -2688 224) (-512 -2704 256) (-528 -2704 256)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122070,9 +126242,9 @@ world } side { - "id" "48488" - "plane" "(1088 -64 256) (1152 -64 256) (1152 -64 320)" - "material" "DEV/GRAYGRID" + "id" "27572" + "plane" "(-512 -2704 256) (-512 -2736 288) (-528 -2736 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122081,53 +126253,66 @@ world } side { - "id" "48487" - "plane" "(1152 -64 256) (1152 -128 256) (1152 -128 320)" + "id" "27571" + "plane" "(-528 -2816 224) (-528 -2816 288) (-512 -2816 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "27570" + "plane" "(-528 -2688 224) (-528 -2816 224) (-512 -2816 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "0 137 234" + "color" "153 242 0" + "groupid" "32616" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "97457" + "id" "32622" side { - "id" "48504" - "plane" "(1152 -128 320) (1088 -128 320) (1088 -80 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "27582" + "plane" "(-512 -2848 176) (-512 -2784 176) (-508 -2784 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48503" - "plane" "(1152 -80 128) (1088 -80 128) (1088 -128 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "27581" + "plane" "(-512 -2784 168) (-512 -2848 168) (-508 -2848 168)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48502" - "plane" "(1088 -128 128) (1088 -80 128) (1088 -80 320)" + "id" "27580" + "plane" "(-512 -2848 168) (-512 -2784 168) (-512 -2784 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122135,10 +126320,10 @@ world } side { - "id" "48501" - "plane" "(1152 -128 128) (1088 -128 128) (1088 -128 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "id" "27579" + "plane" "(-508 -2784 168) (-508 -2848 168) (-508 -2848 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122146,9 +126331,9 @@ world } side { - "id" "48500" - "plane" "(1088 -80 128) (1152 -80 128) (1152 -80 320)" - "material" "DEV/REFLECTIVITY_10B" + "id" "27578" + "plane" "(-512 -2784 168) (-508 -2784 168) (-508 -2784 176)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122157,10 +126342,10 @@ world } side { - "id" "48499" - "plane" "(1152 -80 128) (1152 -128 128) (1152 -128 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "27577" + "plane" "(-508 -2848 168) (-512 -2848 168) (-512 -2848 176)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122168,30 +126353,32 @@ world } editor { - "color" "0 137 234" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "97460" + "id" "32623" side { - "id" "48516" - "plane" "(1088 -80 128) (1088 -64 128) (1152 -64 128)" - "material" "RYAN_DEV/DEV_BROWN4" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "27588" + "plane" "(-672 -2980 40) (-672 -2976 40) (-608 -2976 40)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48515" - "plane" "(1088 -64 64) (1088 -80 64) (1152 -80 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27587" + "plane" "(-672 -2976 32) (-672 -2980 32) (-608 -2980 32)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -122200,9 +126387,9 @@ world } side { - "id" "48514" - "plane" "(1088 -80 64) (1088 -64 64) (1088 -64 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27586" + "plane" "(-672 -2980 32) (-672 -2976 32) (-672 -2976 40)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122211,9 +126398,9 @@ world } side { - "id" "48513" - "plane" "(1152 -64 64) (1152 -80 64) (1152 -80 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27585" + "plane" "(-608 -2976 32) (-608 -2980 32) (-608 -2980 40)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122222,8 +126409,8 @@ world } side { - "id" "48512" - "plane" "(1088 -64 64) (1152 -64 64) (1152 -64 128)" + "id" "27584" + "plane" "(-672 -2976 32) (-608 -2976 32) (-608 -2976 40)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -122233,9 +126420,9 @@ world } side { - "id" "48511" - "plane" "(1152 -80 64) (1088 -80 64) (1088 -80 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27583" + "plane" "(-608 -2980 32) (-672 -2980 32) (-672 -2980 40)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122244,42 +126431,43 @@ world } editor { - "color" "0 119 112" + "color" "153 242 0" + "groupid" "32777" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95284" + "id" "32624" side { - "id" "47694" - "plane" "(1664 48 320) (1664 64 320) (1728 64 320)" + "id" "27594" + "plane" "(-608 -2976 128) (-608 -2960 128) (-512 -2960 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47693" - "plane" "(1664 64 128) (1664 48 128) (1728 48 128)" + "id" "27593" + "plane" "(-608 -2960 0) (-608 -2976 0) (-512 -2976 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47692" - "plane" "(1728 64 128) (1728 48 128) (1728 48 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 96] 0.25" + "id" "27592" + "plane" "(-608 -2976 0) (-608 -2960 0) (-608 -2960 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122287,10 +126475,10 @@ world } side { - "id" "47691" - "plane" "(1664 48 128) (1664 64 128) (1664 64 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 96] 0.25" + "id" "27591" + "plane" "(-512 -2960 0) (-512 -2976 0) (-512 -2976 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122298,9 +126486,9 @@ world } side { - "id" "47690" - "plane" "(1728 48 128) (1664 48 128) (1664 48 320)" - "material" "DEV/GRAYGRID" + "id" "27590" + "plane" "(-608 -2960 0) (-512 -2960 0) (-512 -2960 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122309,9 +126497,9 @@ world } side { - "id" "47689" - "plane" "(1664 64 128) (1728 64 128) (1728 64 320)" - "material" "DEV/GRAYGRID" + "id" "27589" + "plane" "(-512 -2976 0) (-608 -2976 0) (-608 -2976 128)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122320,42 +126508,44 @@ world } editor { - "color" "0 137 234" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95286" + "id" "32625" side { - "id" "47706" - "plane" "(1664 -32 160) (1664 48 160) (1728 48 160)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "27600" + "plane" "(-672 -2976 40) (-672 -2960 40) (-608 -2960 40)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47705" - "plane" "(1664 48 128) (1664 -32 128) (1728 -32 128)" + "id" "27599" + "plane" "(-672 -2960 0) (-672 -2976 0) (-608 -2976 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47704" - "plane" "(1728 48 128) (1728 -32 128) (1728 -32 160)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 0] 0.25" + "id" "27598" + "plane" "(-672 -2976 0) (-672 -2960 0) (-672 -2960 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122363,10 +126553,10 @@ world } side { - "id" "47703" - "plane" "(1664 -32 128) (1664 48 128) (1664 48 160)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 0] 0.25" + "id" "27597" + "plane" "(-608 -2960 0) (-608 -2976 0) (-608 -2976 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122374,8 +126564,8 @@ world } side { - "id" "47702" - "plane" "(1728 -32 128) (1664 -32 128) (1664 -32 160)" + "id" "27596" + "plane" "(-672 -2960 0) (-608 -2960 0) (-608 -2960 40)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -122385,9 +126575,9 @@ world } side { - "id" "47701" - "plane" "(1664 48 128) (1728 48 128) (1728 48 160)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27595" + "plane" "(-608 -2976 0) (-672 -2976 0) (-672 -2976 40)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122396,42 +126586,44 @@ world } editor { - "color" "0 137 234" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95290" + "id" "32626" side { - "id" "47718" - "plane" "(1664 -32 320) (1664 48 320) (1728 48 320)" + "id" "27606" + "plane" "(-704 -2976 128) (-704 -2960 128) (-672 -2960 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47717" - "plane" "(1664 48 240) (1664 -32 240) (1728 -32 240)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "27605" + "plane" "(-704 -2960 0) (-704 -2976 0) (-672 -2976 0)" + "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" "47716" - "plane" "(1728 48 240) (1728 -32 240) (1728 -32 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 0] 0.25" + "id" "27604" + "plane" "(-704 -2976 0) (-704 -2960 0) (-704 -2960 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122439,10 +126631,10 @@ world } side { - "id" "47715" - "plane" "(1664 -32 240) (1664 48 240) (1664 48 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 0] 0.25" + "id" "27603" + "plane" "(-672 -2960 0) (-672 -2976 0) (-672 -2976 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122450,8 +126642,8 @@ world } side { - "id" "47714" - "plane" "(1728 -32 240) (1664 -32 240) (1664 -32 320)" + "id" "27602" + "plane" "(-704 -2960 0) (-672 -2960 0) (-672 -2960 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -122461,9 +126653,9 @@ world } side { - "id" "47713" - "plane" "(1664 48 240) (1728 48 240) (1728 48 320)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27601" + "plane" "(-672 -2976 0) (-704 -2976 0) (-704 -2976 128)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122472,42 +126664,44 @@ world } editor { - "color" "0 137 234" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95292" + "id" "32627" side { - "id" "47730" - "plane" "(1666 -32 240) (1666 48 240) (1668 48 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "27612" + "plane" "(-960 -2656 160) (-512 -2656 160) (-512 -2960 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47729" - "plane" "(1666 48 160) (1666 -32 160) (1668 -32 160)" + "id" "27611" + "plane" "(-960 -2960 -32) (-512 -2960 -32) (-512 -2656 -32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47728" - "plane" "(1668 48 160) (1668 -32 160) (1668 -32 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" + "id" "27610" + "plane" "(-960 -2656 -32) (-960 -2656 160) (-960 -2960 160)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122515,10 +126709,10 @@ world } side { - "id" "47727" - "plane" "(1666 -32 160) (1666 48 160) (1666 48 240)" - "material" "WOOD/HOUSEBEAMS01" - "uaxis" "[0 -1 0 32] 0.25" + "id" "27609" + "plane" "(-512 -2960 -32) (-512 -2960 160) (-512 -2656 160)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122526,8 +126720,8 @@ world } side { - "id" "47726" - "plane" "(1668 -32 160) (1666 -32 160) (1666 -32 240)" + "id" "27608" + "plane" "(-512 -2656 -32) (-512 -2656 160) (-960 -2656 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -122537,9 +126731,9 @@ world } side { - "id" "47725" - "plane" "(1666 48 160) (1668 48 160) (1668 48 240)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27607" + "plane" "(-960 -2960 -32) (-960 -2960 160) (-512 -2960 160)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122548,42 +126742,44 @@ world } editor { - "color" "0 137 234" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95296" + "id" "32628" side { - "id" "47742" - "plane" "(1724 -32 240) (1724 48 240) (1726 48 240)" + "id" "27618" + "plane" "(-752 -2960 128) (-704 -2960 128) (-704 -2976 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 40] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47741" - "plane" "(1724 48 160) (1724 -32 160) (1726 -32 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 40] 0.25" + "id" "27617" + "plane" "(-752 -2976 104) (-704 -2976 96) (-704 -2960 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47740" - "plane" "(1726 48 160) (1726 -32 160) (1726 -32 240)" - "material" "WOOD/HOUSEBEAMS01" - "uaxis" "[0 -1 0 32] 0.25" + "id" "27616" + "plane" "(-704 -2960 96) (-704 -2976 96) (-704 -2976 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122591,10 +126787,10 @@ world } side { - "id" "47739" - "plane" "(1724 -32 160) (1724 48 160) (1724 48 240)" + "id" "27615" + "plane" "(-704 -2960 128) (-752 -2960 128) (-752 -2960 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122602,10 +126798,10 @@ world } side { - "id" "47738" - "plane" "(1726 -32 160) (1724 -32 160) (1724 -32 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -40] 0.25" + "id" "27614" + "plane" "(-704 -2976 96) (-752 -2976 104) (-752 -2976 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122613,10 +126809,10 @@ world } side { - "id" "47737" - "plane" "(1724 48 160) (1726 48 160) (1726 48 240)" + "id" "27613" + "plane" "(-752 -2976 104) (-752 -2960 104) (-752 -2960 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -40] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122624,20 +126820,22 @@ world } editor { - "color" "0 137 234" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95641" + "id" "32629" side { - "id" "48192" - "plane" "(366.4 -1424 0) (302.4 -1424 0) (309.6 -1400 0)" + "id" "27624" + "plane" "(-672 -2976 128) (-672 -2960 128) (-640 -2960 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -38.3999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122645,8 +126843,8 @@ world } side { - "id" "48191" - "plane" "(309.6 -1400 -40) (302.4 -1424 -64) (366.4 -1424 -64)" + "id" "27623" + "plane" "(-672 -2960 96) (-672 -2976 96) (-640 -2976 104)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -122656,32 +126854,32 @@ world } side { - "id" "48190" - "plane" "(373.6 -1400 -40) (366.4 -1424 -64) (366.4 -1424 0)" + "id" "27622" + "plane" "(-672 -2976 96) (-672 -2960 96) (-672 -2960 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 -5.63589] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48189" - "plane" "(302.4 -1424 0) (366.4 -1424 0) (366.4 -1424 -64)" + "id" "27621" + "plane" "(-672 -2960 96) (-640 -2960 104) (-640 -2960 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48188" - "plane" "(373.6 -1400 0) (309.6 -1400 0) (309.6 -1400 -40)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "id" "27620" + "plane" "(-672 -2976 128) (-640 -2976 128) (-640 -2976 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122689,9 +126887,9 @@ world } side { - "id" "48187" - "plane" "(309.6 -1400 0) (302.4 -1424 0) (302.4 -1424 -64)" - "material" "DEV/REFLECTIVITY_50B" + "id" "27619" + "plane" "(-640 -2960 104) (-640 -2976 104) (-640 -2976 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122700,21 +126898,22 @@ world } editor { - "color" "124 149 0" - "groupid" "95488" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95642" + "id" "32630" side { - "id" "48198" - "plane" "(390.399 -1344 0) (326.4 -1344 0) (333.6 -1320 0)" + "id" "27630" + "plane" "(-640 -2960 128) (-608 -2960 128) (-608 -2976 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -38.3999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122722,8 +126921,8 @@ world } side { - "id" "48197" - "plane" "(397.6 -1320 -40) (333.6 -1320 -40) (326.4 -1344 -32)" + "id" "27629" + "plane" "(-640 -2976 104) (-608 -2976 96) (-608 -2960 96)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -122733,32 +126932,32 @@ world } side { - "id" "48196" - "plane" "(390.399 -1344 0) (397.6 -1320 0) (397.6 -1320 -40)" + "id" "27628" + "plane" "(-608 -2960 96) (-608 -2976 96) (-608 -2976 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 -5.63589] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48195" - "plane" "(326.4 -1344 0) (390.399 -1344 0) (390.4 -1344 -32)" + "id" "27627" + "plane" "(-608 -2960 128) (-640 -2960 128) (-640 -2960 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48194" - "plane" "(397.6 -1320 0) (333.6 -1320 0) (333.6 -1320 -40)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "id" "27626" + "plane" "(-608 -2976 96) (-640 -2976 104) (-640 -2976 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122766,9 +126965,9 @@ world } side { - "id" "48193" - "plane" "(326.4 -1344 -32) (333.6 -1320 -40) (333.6 -1320 0)" - "material" "DEV/REFLECTIVITY_50B" + "id" "27625" + "plane" "(-640 -2976 104) (-640 -2960 104) (-640 -2960 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122777,21 +126976,22 @@ world } editor { - "color" "124 149 0" - "groupid" "95488" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95643" + "id" "32631" side { - "id" "48204" - "plane" "(373.6 -1400 0) (309.6 -1400 0) (316.8 -1376 0)" + "id" "27636" + "plane" "(-800 -2976 128) (-800 -2960 128) (-752 -2960 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -38.3999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122799,8 +126999,8 @@ world } side { - "id" "48203" - "plane" "(380.798 -1376 -32) (316.8 -1376 -32) (309.6 -1400 -40)" + "id" "27635" + "plane" "(-800 -2960 96) (-800 -2976 96) (-752 -2976 104)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -122810,10 +127010,10 @@ world } side { - "id" "48202" - "plane" "(380.798 -1376 -32) (373.6 -1400 -40) (373.6 -1400 0)" + "id" "27634" + "plane" "(-800 -2976 96) (-800 -2960 96) (-800 -2960 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 -5.63589] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122821,10 +127021,10 @@ world } side { - "id" "48201" - "plane" "(380.8 -1376 0) (316.8 -1376 0) (316.8 -1376 -32)" + "id" "27633" + "plane" "(-800 -2960 96) (-752 -2960 104) (-752 -2960 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122832,10 +127032,10 @@ world } side { - "id" "48200" - "plane" "(309.6 -1400 0) (373.6 -1400 0) (373.6 -1400 -40)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "id" "27632" + "plane" "(-800 -2976 128) (-752 -2976 128) (-752 -2976 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122843,9 +127043,9 @@ world } side { - "id" "48199" - "plane" "(316.8 -1376 0) (309.6 -1400 0) (309.6 -1400 -40)" - "material" "DEV/REFLECTIVITY_50B" + "id" "27631" + "plane" "(-752 -2960 104) (-752 -2976 104) (-752 -2976 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -122854,21 +127054,22 @@ world } editor { - "color" "124 149 0" - "groupid" "95488" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95644" + "id" "32632" side { - "id" "48210" - "plane" "(397.6 -1320 0) (333.6 -1320 0) (340.8 -1296 0)" + "id" "27642" + "plane" "(-960 -2960 128) (-800 -2960 128) (-800 -2976 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -38.3999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122876,9 +127077,9 @@ world } side { - "id" "48209" - "plane" "(404.8 -1296 -64) (340.8 -1296 -64) (333.6 -1320 -40)" - "material" "DEV/REFLECTIVITY_30B" + "id" "27641" + "plane" "(-960 -2976 -32) (-800 -2976 -32) (-800 -2960 -32)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -122887,10 +127088,10 @@ world } side { - "id" "48208" - "plane" "(397.6 -1320 0) (404.801 -1296 0) (404.8 -1296 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 -5.63589] 0.25" + "id" "27640" + "plane" "(-960 -2960 -32) (-960 -2960 128) (-960 -2976 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122898,10 +127099,10 @@ world } side { - "id" "48207" - "plane" "(404.801 -1296 0) (340.8 -1296 0) (340.8 -1296 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "id" "27639" + "plane" "(-800 -2976 -32) (-800 -2976 128) (-800 -2960 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122909,10 +127110,10 @@ world } side { - "id" "48206" - "plane" "(333.6 -1320 0) (397.6 -1320 0) (397.6 -1320 -40)" + "id" "27638" + "plane" "(-800 -2960 -32) (-800 -2960 128) (-960 -2960 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122920,10 +127121,10 @@ world } side { - "id" "48205" - "plane" "(333.6 -1320 -40) (340.8 -1296 -64) (340.8 -1296 0)" + "id" "27637" + "plane" "(-960 -2976 -32) (-960 -2976 128) (-800 -2976 128)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122931,21 +127132,22 @@ world } editor { - "color" "124 149 0" - "groupid" "95488" + "color" "153 242 0" + "groupid" "32777" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95645" + "id" "32979" side { - "id" "48216" - "plane" "(404.8 -1296 0) (340.8 -1296 0) (345.6 -1280 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -38.3999] 0.25" + "id" "27654" + "plane" "(-800 -2976 0) (-800 -2960 0) (-704 -2960 0)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122953,9 +127155,9 @@ world } side { - "id" "48215" - "plane" "(409.6 -1280 -128) (345.6 -1280 -128) (340.8 -1296 -64)" - "material" "DEV/REFLECTIVITY_30B" + "id" "27653" + "plane" "(-800 -2960 -64) (-800 -2976 -64) (-704 -2976 -64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -122964,10 +127166,10 @@ world } side { - "id" "48214" - "plane" "(404.8 -1296 0) (409.6 -1280 0) (409.6 -1280 -128)" + "id" "27652" + "plane" "(-800 -2976 -64) (-800 -2960 -64) (-800 -2960 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 -5.63589] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122975,10 +127177,10 @@ world } side { - "id" "48213" - "plane" "(409.6 -1280 0) (345.6 -1280 0) (345.6 -1280 -128)" + "id" "27651" + "plane" "(-704 -2960 -64) (-704 -2976 -64) (-704 -2976 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122986,10 +127188,10 @@ world } side { - "id" "48212" - "plane" "(340.8 -1296 0) (404.8 -1296 0) (404.8 -1296 -64)" + "id" "27650" + "plane" "(-800 -2960 -64) (-704 -2960 -64) (-704 -2960 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122997,10 +127199,10 @@ world } side { - "id" "48211" - "plane" "(340.8 -1296 -64) (345.6 -1280 -128) (345.6 -1280 0)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "27649" + "plane" "(-704 -2976 -64) (-800 -2976 -64) (-800 -2976 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123008,31 +127210,178 @@ world } editor { - "color" "124 149 0" - "groupid" "95488" + "color" "0 255 156" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + hidden { - "id" "95646" - side + solid { - "id" "48222" - "plane" "(352 -1472 0) (288 -1472 0) (302.4 -1424 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -38.3999] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "33020" + side + { + "id" "38530" + "plane" "(-576 -3264 2048) (-576 -3264 0) (-576 -3096 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38529" + "plane" "(-512 -3096 2048) (-512 -3096 0) (-512 -3264 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38528" + "plane" "(-576 -3096 2048) (-576 -3096 0) (-512 -3096 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38527" + "plane" "(-512 -3264 2048) (-512 -3264 0) (-576 -3264 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38526" + "plane" "(-576 -3096 0) (-576 -3264 0) (-512 -3264 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38525" + "plane" "(-576 -3264 2048) (-576 -3096 2048) (-512 -3096 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 176 105" + "visgroupshown" "1" + "visgroupautoshown" "0" + } + } + } + hidden + { + solid + { + "id" "33024" + side + { + "id" "38524" + "plane" "(-576 -3096 2048) (-576 -3096 152) (-576 -2984 152)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38523" + "plane" "(-512 -2984 2048) (-512 -2984 152) (-512 -3096 152)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38522" + "plane" "(-576 -2984 2048) (-576 -2984 152) (-512 -2984 152)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38521" + "plane" "(-512 -3096 2048) (-512 -3096 152) (-576 -3096 152)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38520" + "plane" "(-576 -2984 152) (-576 -3096 152) (-512 -3096 152)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38519" + "plane" "(-576 -3096 2048) (-576 -2984 2048) (-512 -2984 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 176 105" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } + } + solid + { + "id" "29789" side { - "id" "48221" - "plane" "(302.4 -1424 -64) (288 -1472 -128) (352 -1472 -128)" - "material" "DEV/REFLECTIVITY_30B" + "id" "23701" + "plane" "(-448 832 192) (-384 832 192) (-384 768 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -123041,10 +127390,21 @@ world } side { - "id" "48220" - "plane" "(366.4 -1424 -64) (352 -1472 -128) (352 -1472 0)" + "id" "23702" + "plane" "(-448 768 64) (-384 768 64) (-384 832 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 -5.63589] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23703" + "plane" "(-448 832 192) (-448 768 192) (-448 768 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123052,10 +127412,10 @@ world } side { - "id" "48219" - "plane" "(288 -1472 0) (352 -1472 0) (352 -1472 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "id" "23704" + "plane" "(-384 832 64) (-384 768 64) (-384 768 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123063,10 +127423,10 @@ world } side { - "id" "48218" - "plane" "(366.4 -1424 0) (302.4 -1424 0) (302.4 -1424 -64)" + "id" "23705" + "plane" "(-384 832 192) (-448 832 192) (-448 832 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123074,10 +127434,10 @@ world } side { - "id" "48217" - "plane" "(302.4 -1424 0) (288 -1472 0) (288 -1472 -128)" + "id" "23706" + "plane" "(-384 768 64) (-448 768 64) (-448 768 192)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123085,21 +127445,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95488" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95647" + "id" "29797" side { - "id" "48228" - "plane" "(380.799 -1376 0) (316.8 -1376 0) (326.4 -1344 0)" + "id" "23718" + "plane" "(-640 832 192) (-544 832 192) (-544 768 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -38.3999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123107,9 +127467,9 @@ world } side { - "id" "48227" - "plane" "(390.398 -1344 -32) (326.4 -1344 -32) (316.8 -1376 -32)" - "material" "DEV/REFLECTIVITY_30B" + "id" "23717" + "plane" "(-640 768 64) (-544 768 64) (-544 832 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -123118,10 +127478,10 @@ world } side { - "id" "48226" - "plane" "(380.799 -1376 0) (390.399 -1344 0) (390.398 -1344 -32)" + "id" "23716" + "plane" "(-640 832 192) (-640 768 192) (-640 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 -5.63589] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123129,10 +127489,10 @@ world } side { - "id" "48225" - "plane" "(316.8 -1376 0) (380.799 -1376 0) (380.798 -1376 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "id" "23715" + "plane" "(-544 832 64) (-544 768 64) (-544 768 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123140,10 +127500,10 @@ world } side { - "id" "48224" - "plane" "(390.399 -1344 0) (326.4 -1344 0) (326.4 -1344 -32)" + "id" "23714" + "plane" "(-544 832 192) (-640 832 192) (-640 832 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123151,10 +127511,10 @@ world } side { - "id" "48223" - "plane" "(326.4 -1344 0) (316.8 -1376 0) (316.8 -1376 -32)" + "id" "23713" + "plane" "(-544 768 64) (-640 768 64) (-640 768 192)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123162,21 +127522,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95488" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95664" + "id" "29814" side { - "id" "48276" - "plane" "(421.6 -1240 0) (414.4 -1264 0) (350.4 -1264 0)" + "id" "23736" + "plane" "(-448 832 192) (-448 768 192) (-496 768 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 25.6001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123184,8 +127544,8 @@ world } side { - "id" "48275" - "plane" "(421.6 -1240 -40) (357.6 -1240 -40) (350.4 -1264 -64)" + "id" "23735" + "plane" "(-448 768 176) (-448 832 176) (-496 832 184)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -123195,10 +127555,10 @@ world } side { - "id" "48274" - "plane" "(421.6 -1240 0) (421.6 -1240 -40) (414.4 -1264 -64)" + "id" "23734" + "plane" "(-448 768 176) (-448 768 192) (-448 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 -33.8155] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123206,10 +127566,10 @@ world } side { - "id" "48273" - "plane" "(350.4 -1264 -64) (350.4 -1264 0) (414.4 -1264 0)" + "id" "23733" + "plane" "(-448 832 176) (-448 832 192) (-496 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123217,10 +127577,10 @@ world } side { - "id" "48272" - "plane" "(421.6 -1240 -40) (421.6 -1240 0) (357.6 -1240 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "id" "23732" + "plane" "(-496 768 184) (-496 768 192) (-448 768 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123228,9 +127588,9 @@ world } side { - "id" "48271" - "plane" "(357.6 -1240 -40) (357.6 -1240 0) (350.4 -1264 0)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23731" + "plane" "(-496 832 184) (-496 832 192) (-496 768 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -123239,21 +127599,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95663" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95665" + "id" "29815" side { - "id" "48282" - "plane" "(445.6 -1160 0) (438.399 -1184 0) (374.4 -1184 0)" + "id" "23742" + "plane" "(-544 832 192) (-496 832 192) (-496 768 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 25.6001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123261,8 +127621,8 @@ world } side { - "id" "48281" - "plane" "(438.4 -1184 -32) (445.6 -1160 -40) (381.6 -1160 -40)" + "id" "23741" + "plane" "(-544 768 176) (-496 768 184) (-496 832 184)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -123272,10 +127632,10 @@ world } side { - "id" "48280" - "plane" "(438.4 -1184 -32) (438.399 -1184 0) (445.6 -1160 0)" + "id" "23740" + "plane" "(-544 832 176) (-544 832 192) (-544 768 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 -33.8155] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123283,10 +127643,10 @@ world } side { - "id" "48279" - "plane" "(374.4 -1184 -32) (374.4 -1184 0) (438.399 -1184 0)" + "id" "23739" + "plane" "(-496 832 184) (-496 832 192) (-544 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123294,10 +127654,10 @@ world } side { - "id" "48278" - "plane" "(445.6 -1160 -40) (445.6 -1160 0) (381.6 -1160 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "id" "23738" + "plane" "(-544 768 176) (-544 768 192) (-496 768 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123305,9 +127665,9 @@ world } side { - "id" "48277" - "plane" "(374.4 -1184 0) (374.4 -1184 -32) (381.6 -1160 -40)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23737" + "plane" "(-496 768 184) (-496 768 192) (-496 832 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -123316,21 +127676,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95663" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95666" + "id" "29818" side { - "id" "48288" - "plane" "(428.8 -1216 0) (421.6 -1240 0) (357.6 -1240 0)" + "id" "23766" + "plane" "(-288 832 192) (-224 832 192) (-224 768 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 25.6001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123338,9 +127698,9 @@ world } side { - "id" "48287" - "plane" "(421.6 -1240 -40) (428.798 -1216 -32) (364.8 -1216 -32)" - "material" "DEV/REFLECTIVITY_30B" + "id" "23765" + "plane" "(-288 768 64) (-224 768 64) (-224 832 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -123349,10 +127709,10 @@ world } side { - "id" "48286" - "plane" "(428.8 -1216 0) (428.798 -1216 -32) (421.6 -1240 -40)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 -33.8155] 0.25" + "id" "23764" + "plane" "(-288 832 192) (-288 768 192) (-288 768 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123360,10 +127720,10 @@ world } side { - "id" "48285" - "plane" "(428.798 -1216 -32) (428.8 -1216 0) (364.8 -1216 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "id" "23763" + "plane" "(-224 832 64) (-224 768 64) (-224 768 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123371,10 +127731,10 @@ world } side { - "id" "48284" - "plane" "(357.6 -1240 -40) (357.6 -1240 0) (421.6 -1240 0)" + "id" "23762" + "plane" "(-224 832 192) (-288 832 192) (-288 832 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123382,10 +127742,10 @@ world } side { - "id" "48283" - "plane" "(364.8 -1216 -32) (364.8 -1216 0) (357.6 -1240 0)" + "id" "23761" + "plane" "(-224 768 64) (-288 768 64) (-288 768 192)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123393,21 +127753,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95663" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95667" + "id" "29819" side { - "id" "48294" - "plane" "(452.801 -1136 0) (445.6 -1160 0) (381.6 -1160 0)" + "id" "23772" + "plane" "(-288 832 192) (-288 768 192) (-336 768 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 25.6001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123415,8 +127775,8 @@ world } side { - "id" "48293" - "plane" "(445.6 -1160 -40) (452.8 -1136 -64) (388.8 -1136 -64)" + "id" "23771" + "plane" "(-288 768 176) (-288 832 176) (-336 832 184)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -123426,10 +127786,10 @@ world } side { - "id" "48292" - "plane" "(445.6 -1160 -40) (445.6 -1160 0) (452.801 -1136 0)" + "id" "23770" + "plane" "(-288 768 176) (-288 768 192) (-288 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 -33.8155] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123437,10 +127797,10 @@ world } side { - "id" "48291" - "plane" "(452.8 -1136 -64) (452.801 -1136 0) (388.8 -1136 0)" + "id" "23769" + "plane" "(-288 832 176) (-288 832 192) (-336 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123448,10 +127808,10 @@ world } side { - "id" "48290" - "plane" "(381.6 -1160 -40) (381.6 -1160 0) (445.6 -1160 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "id" "23768" + "plane" "(-336 768 184) (-336 768 192) (-288 768 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123459,9 +127819,9 @@ world } side { - "id" "48289" - "plane" "(381.6 -1160 0) (381.6 -1160 -40) (388.8 -1136 -64)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23767" + "plane" "(-336 832 184) (-336 832 192) (-336 768 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -123470,21 +127830,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95663" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95668" + "id" "29820" side { - "id" "48300" - "plane" "(457.6 -1120 0) (452.8 -1136 0) (388.8 -1136 0)" + "id" "23778" + "plane" "(-384 832 192) (-336 832 192) (-336 768 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 25.6001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123492,8 +127852,8 @@ world } side { - "id" "48299" - "plane" "(452.8 -1136 -64) (457.6 -1120 -128) (393.6 -1120 -128)" + "id" "23777" + "plane" "(-384 768 176) (-336 768 184) (-336 832 184)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -123503,10 +127863,10 @@ world } side { - "id" "48298" - "plane" "(452.8 -1136 -64) (452.8 -1136 0) (457.6 -1120 0)" + "id" "23776" + "plane" "(-384 832 176) (-384 832 192) (-384 768 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 -33.8155] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123514,10 +127874,10 @@ world } side { - "id" "48297" - "plane" "(457.6 -1120 -128) (457.6 -1120 0) (393.6 -1120 0)" + "id" "23775" + "plane" "(-336 832 184) (-336 832 192) (-384 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123525,10 +127885,10 @@ world } side { - "id" "48296" - "plane" "(388.8 -1136 -64) (388.8 -1136 0) (452.8 -1136 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "id" "23774" + "plane" "(-384 768 176) (-384 768 192) (-336 768 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123536,9 +127896,9 @@ world } side { - "id" "48295" - "plane" "(388.8 -1136 0) (388.8 -1136 -64) (393.6 -1120 -128)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23773" + "plane" "(-336 768 184) (-336 768 192) (-336 832 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -123547,21 +127907,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95663" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95669" + "id" "29821" side { - "id" "48306" - "plane" "(414.4 -1264 0) (409.6 -1280 0) (345.6 -1280 0)" + "id" "23802" + "plane" "(-128 832 384) (-64 832 384) (-48 808 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 25.6001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123569,9 +127929,9 @@ world } side { - "id" "48305" - "plane" "(414.4 -1264 -64) (350.4 -1264 -64) (345.6 -1280 -128)" - "material" "DEV/REFLECTIVITY_30B" + "id" "23801" + "plane" "(-128 768 64) (-48 808 64) (-64 832 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -123580,10 +127940,10 @@ world } side { - "id" "48304" - "plane" "(414.4 -1264 0) (414.4 -1264 -64) (409.6 -1280 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 -33.8155] 0.25" + "id" "23800" + "plane" "(-128 832 64) (-128 832 384) (-128 768 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123591,10 +127951,10 @@ world } side { - "id" "48303" - "plane" "(345.6 -1280 -128) (345.6 -1280 0) (409.6 -1280 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "id" "23799" + "plane" "(-48 808 64) (-48 808 384) (-64 832 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123602,10 +127962,10 @@ world } side { - "id" "48302" - "plane" "(414.4 -1264 -64) (414.4 -1264 0) (350.4 -1264 0)" + "id" "23798" + "plane" "(-64 832 64) (-64 832 384) (-128 832 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123613,10 +127973,10 @@ world } side { - "id" "48301" - "plane" "(350.4 -1264 -64) (350.4 -1264 0) (345.6 -1280 0)" + "id" "23797" + "plane" "(-128 768 64) (-128 768 384) (-48 808 384)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123624,21 +127984,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95663" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95670" + "id" "29822" side { - "id" "48312" - "plane" "(438.399 -1184 0) (428.799 -1216 0) (364.8 -1216 0)" + "id" "23808" + "plane" "(-128 832 192) (-128 768 192) (-176 768 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 25.6001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123646,8 +128006,8 @@ world } side { - "id" "48311" - "plane" "(428.798 -1216 -32) (438.398 -1184 -32) (374.4 -1184 -32)" + "id" "23807" + "plane" "(-128 768 176) (-128 832 176) (-176 832 184)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -123657,10 +128017,10 @@ world } side { - "id" "48310" - "plane" "(428.798 -1216 -32) (428.799 -1216 0) (438.399 -1184 0)" + "id" "23806" + "plane" "(-128 768 176) (-128 768 192) (-128 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 -33.8155] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123668,10 +128028,10 @@ world } side { - "id" "48309" - "plane" "(364.8 -1216 -32) (364.8 -1216 0) (428.799 -1216 0)" + "id" "23805" + "plane" "(-128 832 176) (-128 832 192) (-176 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123679,10 +128039,10 @@ world } side { - "id" "48308" - "plane" "(438.398 -1184 -32) (438.399 -1184 0) (374.4 -1184 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -12.7999] 0.25" + "id" "23804" + "plane" "(-176 768 184) (-176 768 192) (-128 768 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123690,9 +128050,9 @@ world } side { - "id" "48307" - "plane" "(374.4 -1184 -32) (374.4 -1184 0) (364.8 -1216 0)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23803" + "plane" "(-176 832 184) (-176 832 192) (-176 768 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -123701,21 +128061,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95663" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95680" + "id" "29823" side { - "id" "48360" - "plane" "(462.4 -1104 0) (398.4 -1104 0) (405.6 -1080 0)" + "id" "23814" + "plane" "(-224 832 192) (-176 832 192) (-176 768 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 25.6001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123723,8 +128083,8 @@ world } side { - "id" "48359" - "plane" "(405.6 -1080 -40) (398.4 -1104 -64) (462.4 -1104 -64)" + "id" "23813" + "plane" "(-224 768 176) (-176 768 184) (-176 832 184)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -123734,10 +128094,10 @@ world } side { - "id" "48358" - "plane" "(469.6 -1080 -40) (462.4 -1104 -64) (462.4 -1104 0)" + "id" "23812" + "plane" "(-224 832 176) (-224 832 192) (-224 768 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 2.00494] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123745,10 +128105,10 @@ world } side { - "id" "48357" - "plane" "(398.4 -1104 0) (462.4 -1104 0) (462.4 -1104 -64)" + "id" "23811" + "plane" "(-176 832 184) (-176 832 192) (-224 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 51.2001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123756,10 +128116,10 @@ world } side { - "id" "48356" - "plane" "(469.6 -1080 0) (405.6 -1080 0) (405.6 -1080 -40)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 51.2001] 0.25" + "id" "23810" + "plane" "(-224 768 176) (-224 768 192) (-176 768 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123767,9 +128127,9 @@ world } side { - "id" "48355" - "plane" "(405.6 -1080 0) (398.4 -1104 0) (398.4 -1104 -64)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23809" + "plane" "(-176 768 184) (-176 768 192) (-176 832 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -123778,21 +128138,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95679" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95681" + "id" "29827" side { - "id" "48366" - "plane" "(486.399 -1024 0) (422.4 -1024 0) (429.6 -1000 0)" + "id" "23826" + "plane" "(-640 832 224) (-128 832 224) (-128 768 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 25.6001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123800,9 +128160,9 @@ world } side { - "id" "48365" - "plane" "(493.6 -1000 -40) (429.6 -1000 -40) (422.4 -1024 -32)" - "material" "DEV/REFLECTIVITY_30B" + "id" "23825" + "plane" "(-640 768 192) (-128 768 192) (-128 832 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -123811,10 +128171,10 @@ world } side { - "id" "48364" - "plane" "(486.399 -1024 0) (493.6 -1000 0) (493.6 -1000 -40)" + "id" "23824" + "plane" "(-640 832 224) (-640 768 224) (-640 768 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 2.00494] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123822,10 +128182,10 @@ world } side { - "id" "48363" - "plane" "(422.4 -1024 0) (486.399 -1024 0) (486.4 -1024 -32)" + "id" "23823" + "plane" "(-128 832 192) (-128 768 192) (-128 768 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 51.2001] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123833,10 +128193,10 @@ world } side { - "id" "48362" - "plane" "(493.6 -1000 0) (429.6 -1000 0) (429.6 -1000 -40)" + "id" "23822" + "plane" "(-128 832 224) (-640 832 224) (-640 832 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 51.2001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123844,10 +128204,10 @@ world } side { - "id" "48361" - "plane" "(422.4 -1024 -32) (429.6 -1000 -40) (429.6 -1000 0)" + "id" "23821" + "plane" "(-128 768 192) (-640 768 192) (-640 768 224)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123855,21 +128215,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95679" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95682" + "id" "29829" side { - "id" "48372" - "plane" "(469.6 -1080 0) (405.6 -1080 0) (412.8 -1056 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 25.6001] 0.25" + "id" "23838" + "plane" "(-384 832 96) (-288 832 96) (-288 768 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123877,9 +128237,9 @@ world } side { - "id" "48371" - "plane" "(476.798 -1056 -32) (412.8 -1056 -32) (405.6 -1080 -40)" - "material" "DEV/REFLECTIVITY_30B" + "id" "23837" + "plane" "(-384 768 64) (-288 768 64) (-288 832 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -123888,10 +128248,10 @@ world } side { - "id" "48370" - "plane" "(476.798 -1056 -32) (469.6 -1080 -40) (469.6 -1080 0)" + "id" "23836" + "plane" "(-384 832 96) (-384 768 96) (-384 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 2.00494] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123899,10 +128259,10 @@ world } side { - "id" "48369" - "plane" "(476.8 -1056 0) (412.8 -1056 0) (412.8 -1056 -32)" + "id" "23835" + "plane" "(-288 832 64) (-288 768 64) (-288 768 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 51.2001] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123910,10 +128270,10 @@ world } side { - "id" "48368" - "plane" "(405.6 -1080 0) (469.6 -1080 0) (469.6 -1080 -40)" + "id" "23834" + "plane" "(-288 832 96) (-384 832 96) (-384 832 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 51.2001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123921,10 +128281,10 @@ world } side { - "id" "48367" - "plane" "(412.8 -1056 0) (405.6 -1080 0) (405.6 -1080 -40)" + "id" "23833" + "plane" "(-288 768 64) (-384 768 64) (-384 768 96)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123932,21 +128292,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95679" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95683" + "id" "29832" side { - "id" "48378" - "plane" "(493.6 -1000 0) (429.6 -1000 0) (436.8 -976 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 25.6001] 0.25" + "id" "23850" + "plane" "(-224 832 96) (-128 832 96) (-128 768 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123954,9 +128314,9 @@ world } side { - "id" "48377" - "plane" "(500.8 -976 -64) (436.8 -976 -64) (429.6 -1000 -40)" - "material" "DEV/REFLECTIVITY_30B" + "id" "23849" + "plane" "(-224 768 64) (-128 768 64) (-128 832 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -123965,10 +128325,10 @@ world } side { - "id" "48376" - "plane" "(493.6 -1000 0) (500.801 -976 0) (500.8 -976 -64)" + "id" "23848" + "plane" "(-224 832 96) (-224 768 96) (-224 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 2.00494] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123976,10 +128336,10 @@ world } side { - "id" "48375" - "plane" "(500.801 -976 0) (436.8 -976 0) (436.8 -976 -64)" + "id" "23847" + "plane" "(-128 832 64) (-128 768 64) (-128 768 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 51.2001] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123987,10 +128347,10 @@ world } side { - "id" "48374" - "plane" "(429.6 -1000 0) (493.6 -1000 0) (493.6 -1000 -40)" + "id" "23846" + "plane" "(-128 832 96) (-224 832 96) (-224 832 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 51.2001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -123998,10 +128358,10 @@ world } side { - "id" "48373" - "plane" "(429.6 -1000 -40) (436.8 -976 -64) (436.8 -976 0)" + "id" "23845" + "plane" "(-128 768 64) (-224 768 64) (-224 768 96)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124009,21 +128369,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95679" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95684" + "id" "29835" side { - "id" "48384" - "plane" "(500.8 -976 0) (436.8 -976 0) (456 -912 0)" + "id" "23904" + "plane" "(-288 832 352) (-224 832 352) (-224 768 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 25.6001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124031,9 +128391,9 @@ world } side { - "id" "48383" - "plane" "(520 -912 -128) (456 -912 -128) (436.8 -976 -64)" - "material" "DEV/REFLECTIVITY_30B" + "id" "23903" + "plane" "(-288 768 224) (-224 768 224) (-224 832 224)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -124042,10 +128402,10 @@ world } side { - "id" "48382" - "plane" "(500.8 -976 0) (520 -912 0) (520 -912 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 2.00494] 0.25" + "id" "23902" + "plane" "(-288 832 352) (-288 768 352) (-288 768 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124053,10 +128413,10 @@ world } side { - "id" "48381" - "plane" "(520 -912 0) (456 -912 0) (456 -912 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 51.2001] 0.25" + "id" "23901" + "plane" "(-224 832 224) (-224 768 224) (-224 768 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124064,10 +128424,10 @@ world } side { - "id" "48380" - "plane" "(436.8 -976 0) (500.8 -976 0) (500.8 -976 -64)" + "id" "23900" + "plane" "(-224 832 352) (-288 832 352) (-288 832 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 51.2001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124075,10 +128435,10 @@ world } side { - "id" "48379" - "plane" "(436.8 -976 -64) (456 -912 -128) (456 -912 0)" + "id" "23899" + "plane" "(-224 768 224) (-288 768 224) (-288 768 352)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124086,21 +128446,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95679" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95685" + "id" "29836" side { - "id" "48390" - "plane" "(457.6 -1120 0) (393.6 -1120 0) (398.4 -1104 0)" + "id" "23910" + "plane" "(-288 832 352) (-288 768 352) (-336 768 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 25.6001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124108,8 +128468,8 @@ world } side { - "id" "48389" - "plane" "(398.4 -1104 -64) (393.6 -1120 -128) (457.6 -1120 -128)" + "id" "23909" + "plane" "(-288 768 336) (-288 832 336) (-336 832 344)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -124119,10 +128479,10 @@ world } side { - "id" "48388" - "plane" "(462.4 -1104 -64) (457.6 -1120 -128) (457.6 -1120 0)" + "id" "23908" + "plane" "(-288 768 336) (-288 768 352) (-288 832 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 2.00494] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124130,10 +128490,10 @@ world } side { - "id" "48387" - "plane" "(393.6 -1120 0) (457.6 -1120 0) (457.6 -1120 -128)" + "id" "23907" + "plane" "(-288 832 336) (-288 832 352) (-336 832 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 51.2001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124141,10 +128501,10 @@ world } side { - "id" "48386" - "plane" "(462.4 -1104 0) (398.4 -1104 0) (398.4 -1104 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 51.2001] 0.25" + "id" "23906" + "plane" "(-336 768 344) (-336 768 352) (-288 768 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124152,9 +128512,9 @@ world } side { - "id" "48385" - "plane" "(398.4 -1104 0) (393.6 -1120 0) (393.6 -1120 -128)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23905" + "plane" "(-336 832 344) (-336 832 352) (-336 768 352)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -124163,21 +128523,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95679" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95686" + "id" "29837" side { - "id" "48396" - "plane" "(476.799 -1056 0) (412.8 -1056 0) (422.4 -1024 0)" + "id" "23916" + "plane" "(-224 832 352) (-176 832 352) (-176 768 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 25.6001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124185,8 +128545,8 @@ world } side { - "id" "48395" - "plane" "(486.398 -1024 -32) (422.4 -1024 -32) (412.8 -1056 -32)" + "id" "23915" + "plane" "(-224 768 336) (-176 768 344) (-176 832 344)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -124196,10 +128556,10 @@ world } side { - "id" "48394" - "plane" "(476.799 -1056 0) (486.399 -1024 0) (486.398 -1024 -32)" + "id" "23914" + "plane" "(-224 832 336) (-224 832 352) (-224 768 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.287348 0.957826 0 2.00494] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124207,10 +128567,10 @@ world } side { - "id" "48393" - "plane" "(412.8 -1056 0) (476.799 -1056 0) (476.798 -1056 -32)" + "id" "23913" + "plane" "(-176 832 344) (-176 832 352) (-224 832 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 51.2001] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124218,10 +128578,10 @@ world } side { - "id" "48392" - "plane" "(486.399 -1024 0) (422.4 -1024 0) (422.4 -1024 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 51.2001] 0.25" + "id" "23912" + "plane" "(-224 768 336) (-224 768 352) (-176 768 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124229,9 +128589,9 @@ world } side { - "id" "48391" - "plane" "(422.4 -1024 0) (412.8 -1056 0) (412.8 -1056 -32)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23911" + "plane" "(-176 768 344) (-176 768 352) (-176 832 352)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -124240,21 +128600,21 @@ world } editor { - "color" "124 149 0" - "groupid" "95679" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95943" + "id" "29838" side { - "id" "48408" - "plane" "(1792 -256 320) (1792 -512 320) (2240 -512 320)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 64] 0.25" + "id" "23922" + "plane" "(-128 832 352) (-128 768 352) (-176 768 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124262,10 +128622,10 @@ world } side { - "id" "48407" - "plane" "(1792 -512 384) (1792 -256 384) (2240 -256 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "23921" + "plane" "(-128 768 336) (-128 832 336) (-176 832 344)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124273,64 +128633,65 @@ world } side { - "id" "48406" - "plane" "(2240 -256 320) (2240 -512 320) (2240 -512 384)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 -256] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "23920" + "plane" "(-128 768 336) (-128 768 352) (-128 832 352)" + "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" "48405" - "plane" "(1792 -512 320) (1792 -256 320) (1792 -256 384)" + "id" "23919" + "plane" "(-128 832 336) (-128 832 352) (-176 832 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48404" - "plane" "(1792 -256 320) (2240 -256 320) (2240 -256 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "23918" + "plane" "(-176 768 344) (-176 768 352) (-128 768 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48403" - "plane" "(2240 -512 320) (1792 -512 320) (1792 -512 384)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -256] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "23917" + "plane" "(-176 832 344) (-176 832 352) (-176 768 352)" + "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" "0 119 112" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "95948" + "id" "29839" side { - "id" "48420" - "plane" "(2240 -256 320) (2240 -192 320) (1984 -192 320)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 64] 0.25" + "id" "23928" + "plane" "(-384 832 352) (-336 832 352) (-336 768 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124338,10 +128699,10 @@ world } side { - "id" "48419" - "plane" "(2240 -192 384) (2240 -256 384) (1984 -256 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "23927" + "plane" "(-384 768 336) (-336 768 344) (-336 832 344)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124349,108 +128710,120 @@ world } side { - "id" "48418" - "plane" "(2240 -256 384) (2240 -192 384) (2240 -192 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 -256] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "23926" + "plane" "(-384 832 336) (-384 832 352) (-384 768 352)" + "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" "48417" - "plane" "(1984 -192 384) (1984 -256 384) (1984 -256 320)" + "id" "23925" + "plane" "(-336 832 344) (-336 832 352) (-384 832 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48416" - "plane" "(2240 -192 384) (1984 -192 384) (1984 -192 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -256] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "23924" + "plane" "(-384 768 336) (-384 768 352) (-336 768 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "48415" - "plane" "(1984 -256 384) (2240 -256 384) (2240 -256 320)" + "id" "23923" + "plane" "(-336 768 344) (-336 768 352) (-336 832 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 112" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91625" + "id" "29840" side { - "id" "46882" - "plane" "(896 -1472 264) (1024 -1472 264) (960 -1536 384)" - "material" "DEV/REFLECTIVITY_30B" + "id" "23934" + "plane" "(-448 832 352) (-384 832 352) (-384 768 352)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46881" - "plane" "(896 -1536 384) (960 -1536 384) (960 -1536 264)" + "id" "23933" + "plane" "(-448 768 224) (-384 768 224) (-384 832 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46880" - "plane" "(896 -1536 264) (896 -1472 264) (896 -1536 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "23932" + "plane" "(-448 832 352) (-448 768 352) (-448 768 224)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46879" - "plane" "(896 -1536 264) (960 -1536 264) (1024 -1472 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "23931" + "plane" "(-384 832 224) (-384 768 224) (-384 768 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46878" - "plane" "(960 -1536 264) (960 -1536 384) (1024 -1472 264)" + "id" "23930" + "plane" "(-384 832 352) (-448 832 352) (-448 832 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23929" + "plane" "(-384 768 224) (-448 768 224) (-448 768 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124458,75 +128831,76 @@ world } editor { - "color" "0 176 105" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91627" + "id" "29841" side { - "id" "46894" - "plane" "(1032 -1464 264) (1000 -1496 264) (896 -1496 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 -58.3842] 0.25" - "vaxis" "[-0.707107 -0.707107 0 21.0985] 0.25" + "id" "23940" + "plane" "(-224 832 256) (-128 832 256) (-128 768 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46893" - "plane" "(1024 -1472 256) (1032 -1464 264) (896 -1464 264)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.707107 0.707107 0 -21.0985] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23939" + "plane" "(-224 768 224) (-128 768 224) (-128 832 224)" + "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" "46892" - "plane" "(1000 -1496 264) (1000 -1496 256) (896 -1496 256)" + "id" "23938" + "plane" "(-224 832 256) (-224 768 256) (-224 768 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -21.0985] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46891" - "plane" "(896 -1496 256) (896 -1472 256) (896 -1464 264)" + "id" "23937" + "plane" "(-128 832 224) (-128 768 224) (-128 768 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 -58.3842] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46890" - "plane" "(1000 -1496 256) (1024 -1472 256) (896 -1472 256)" + "id" "23936" + "plane" "(-128 832 256) (-224 832 256) (-224 832 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 -58.3842] 0.25" - "vaxis" "[-0.707107 -0.707107 0 21.0985] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46889" - "plane" "(1000 -1496 256) (1000 -1496 264) (1032 -1464 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -58.3842] 0.25" + "id" "23935" + "plane" "(-128 768 224) (-224 768 224) (-224 768 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124534,31 +128908,32 @@ world } editor { - "color" "0 176 105" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91690" + "id" "29842" side { - "id" "46906" - "plane" "(1456 -1280 280) (1456 -896 280) (1472 -896 280)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23946" + "plane" "(-384 832 256) (-288 832 256) (-288 768 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46905" - "plane" "(1448 -896 256) (1448 -1280 256) (1480 -1280 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 -15] 0.25" + "id" "23945" + "plane" "(-384 768 224) (-288 768 224) (-288 832 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124566,9 +128941,9 @@ world } side { - "id" "46904" - "plane" "(1448 -1280 256) (1448 -896 256) (1456 -896 280)" - "material" "DEV/REFLECTIVITY_10B" + "id" "23944" + "plane" "(-384 832 256) (-384 768 256) (-384 768 224)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -124577,10 +128952,10 @@ world } side { - "id" "46903" - "plane" "(1480 -896 256) (1480 -1280 256) (1472 -1280 280)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 -15] 0.25" + "id" "23943" + "plane" "(-288 832 224) (-288 768 224) (-288 768 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124588,10 +128963,10 @@ world } side { - "id" "46902" - "plane" "(1480 -1280 256) (1448 -1280 256) (1456 -1280 280)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 -15] 0.25" + "id" "23942" + "plane" "(-288 832 256) (-384 832 256) (-384 832 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124599,10 +128974,10 @@ world } side { - "id" "46901" - "plane" "(1448 -896 256) (1480 -896 256) (1472 -896 280)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 -15] 0.25" + "id" "23941" + "plane" "(-288 768 224) (-384 768 224) (-384 768 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124610,19 +128985,20 @@ world } editor { - "color" "0 125 202" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91798" + "id" "29843" side { - "id" "47044" - "plane" "(-768 -2432 256) (-768 -2368 256) (-480 -2368 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23976" + "plane" "(-544 832 256) (-448 832 256) (-448 768 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -124631,8 +129007,8 @@ world } side { - "id" "47043" - "plane" "(-768 -2368 0) (-768 -2432 0) (-480 -2432 0)" + "id" "23975" + "plane" "(-544 768 224) (-448 768 224) (-448 832 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -124642,8 +129018,8 @@ world } side { - "id" "47042" - "plane" "(-768 -2432 0) (-768 -2368 0) (-768 -2368 256)" + "id" "23974" + "plane" "(-544 832 256) (-544 768 256) (-544 768 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -124653,9 +129029,9 @@ world } side { - "id" "47041" - "plane" "(-480 -2368 0) (-480 -2432 0) (-480 -2432 256)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23973" + "plane" "(-448 832 224) (-448 768 224) (-448 768 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -124664,8 +129040,8 @@ world } side { - "id" "47040" - "plane" "(-768 -2368 0) (-480 -2368 0) (-480 -2368 256)" + "id" "23972" + "plane" "(-448 832 256) (-544 832 256) (-544 832 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -124675,8 +129051,8 @@ world } side { - "id" "47039" - "plane" "(-480 -2432 0) (-768 -2432 0) (-768 -2432 256)" + "id" "23971" + "plane" "(-448 768 224) (-544 768 224) (-544 768 256)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -124686,18 +129062,19 @@ world } editor { - "color" "0 176 105" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91806" + "id" "29844" side { - "id" "47050" - "plane" "(-544 -2368 0) (-480 -2368 0) (-480 -1952 0)" + "id" "23982" + "plane" "(-640 832 352) (-544 832 352) (-544 768 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -124707,20 +129084,20 @@ world } side { - "id" "47049" - "plane" "(-544 -2368 0) (-544 -1952 0) (-544 -1952 96)" + "id" "23981" + "plane" "(-640 768 224) (-544 768 224) (-544 832 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47048" - "plane" "(-480 -1952 0) (-480 -2368 0) (-480 -2368 96)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23980" + "plane" "(-640 832 352) (-640 768 352) (-640 768 224)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -124729,10 +129106,10 @@ world } side { - "id" "47047" - "plane" "(-544 -1952 0) (-480 -1952 0) (-480 -1952 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "23979" + "plane" "(-544 832 224) (-544 768 224) (-544 768 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124740,8 +129117,8 @@ world } side { - "id" "47046" - "plane" "(-480 -2368 0) (-544 -2368 0) (-544 -2368 96)" + "id" "23978" + "plane" "(-544 832 352) (-640 832 352) (-640 832 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -124751,29 +129128,30 @@ world } side { - "id" "47045" - "plane" "(-544 -1952 96) (-480 -1952 96) (-480 -2368 96)" - "material" "DEV/REFLECTIVITY_30B" + "id" "23977" + "plane" "(-544 768 224) (-640 768 224) (-640 768 352)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91807" + "id" "29845" side { - "id" "47056" - "plane" "(-544 -1952 256) (-480 -1952 256) (-480 -2368 256)" + "id" "23988" + "plane" "(-544 832 352) (-496 832 352) (-496 768 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -124783,20 +129161,20 @@ world } side { - "id" "47055" - "plane" "(-544 -1952 256) (-544 -2368 256) (-544 -2368 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23987" + "plane" "(-544 768 336) (-496 768 344) (-496 832 344)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47054" - "plane" "(-480 -2368 256) (-480 -1952 256) (-480 -1952 192)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23986" + "plane" "(-544 832 336) (-544 832 352) (-544 768 352)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -124805,8 +129183,8 @@ world } side { - "id" "47053" - "plane" "(-480 -1952 256) (-544 -1952 256) (-544 -1952 192)" + "id" "23985" + "plane" "(-496 832 344) (-496 832 352) (-544 832 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -124816,9 +129194,9 @@ world } side { - "id" "47052" - "plane" "(-544 -2368 256) (-480 -2368 256) (-480 -2368 192)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23984" + "plane" "(-544 768 336) (-544 768 352) (-496 768 352)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -124827,29 +129205,30 @@ world } side { - "id" "47051" - "plane" "(-544 -2368 192) (-480 -2368 192) (-480 -1952 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "23983" + "plane" "(-496 768 344) (-496 768 352) (-496 832 352)" + "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" "0 176 105" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91812" + "id" "29846" side { - "id" "47068" - "plane" "(-544 -2176 96) (-544 -2240 96) (-480 -2240 96)" + "id" "23994" + "plane" "(-448 832 352) (-448 768 352) (-496 768 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -124859,20 +129238,20 @@ world } side { - "id" "47067" - "plane" "(-544 -2240 192) (-544 -2240 96) (-544 -2176 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23993" + "plane" "(-448 768 336) (-448 832 336) (-496 832 344)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47066" - "plane" "(-480 -2176 192) (-480 -2176 96) (-480 -2240 96)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23992" + "plane" "(-448 768 336) (-448 768 352) (-448 832 352)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -124881,9 +129260,9 @@ world } side { - "id" "47065" - "plane" "(-544 -2176 192) (-544 -2176 96) (-480 -2176 96)" - "material" "DEV/REFLECTIVITY_30B" + "id" "23991" + "plane" "(-448 832 336) (-448 832 352) (-496 832 352)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -124892,9 +129271,9 @@ world } side { - "id" "47064" - "plane" "(-480 -2240 192) (-480 -2240 96) (-544 -2240 96)" - "material" "DEV/REFLECTIVITY_30B" + "id" "23990" + "plane" "(-496 768 344) (-496 768 352) (-448 768 352)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -124903,30 +129282,31 @@ world } side { - "id" "47063" - "plane" "(-544 -2240 192) (-544 -2176 192) (-480 -2176 192)" + "id" "23989" + "plane" "(-496 832 344) (-496 832 352) (-496 768 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91826" + "id" "29848" side { - "id" "47080" - "plane" "(-544 -2080 96) (-480 -2080 96) (-480 -1952 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24006" + "plane" "(-392 768 256) (-280 768 256) (-280 760 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -124935,20 +129315,20 @@ world } side { - "id" "47079" - "plane" "(-544 -2080 96) (-544 -1952 96) (-544 -1952 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24005" + "plane" "(-392 760 248) (-280 760 248) (-280 768 248)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47078" - "plane" "(-480 -1952 96) (-480 -2080 96) (-480 -2080 192)" - "material" "DEV/REFLECTIVITY_50B" + "id" "24004" + "plane" "(-392 768 256) (-392 760 256) (-392 760 248)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -124957,10 +129337,10 @@ world } side { - "id" "47077" - "plane" "(-544 -1952 96) (-480 -1952 96) (-480 -1952 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "24003" + "plane" "(-280 768 248) (-280 760 248) (-280 760 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -124968,9 +129348,9 @@ world } side { - "id" "47076" - "plane" "(-480 -2080 96) (-544 -2080 96) (-544 -2080 192)" - "material" "DEV/REFLECTIVITY_30B" + "id" "24002" + "plane" "(-280 768 256) (-392 768 256) (-392 768 248)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -124979,30 +129359,31 @@ world } side { - "id" "47075" - "plane" "(-544 -1952 192) (-480 -1952 192) (-480 -2080 192)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24001" + "plane" "(-280 760 248) (-392 760 248) (-392 760 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 226 207" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91828" + "id" "29858" side { - "id" "47092" - "plane" "(-544 -2336 96) (-544 -2368 96) (-480 -2368 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24018" + "plane" "(-552 768 256) (-440 768 256) (-440 760 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -125011,20 +129392,20 @@ world } side { - "id" "47091" - "plane" "(-544 -2368 192) (-544 -2368 96) (-544 -2336 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24017" + "plane" "(-552 760 248) (-440 760 248) (-440 768 248)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47090" - "plane" "(-480 -2336 192) (-480 -2336 96) (-480 -2368 96)" - "material" "DEV/REFLECTIVITY_50B" + "id" "24016" + "plane" "(-552 768 256) (-552 760 256) (-552 760 248)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -125033,10 +129414,10 @@ world } side { - "id" "47089" - "plane" "(-544 -2336 192) (-544 -2336 96) (-480 -2336 96)" + "id" "24015" + "plane" "(-440 768 248) (-440 760 248) (-440 760 256)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125044,8 +129425,8 @@ world } side { - "id" "47088" - "plane" "(-480 -2368 192) (-480 -2368 96) (-544 -2368 96)" + "id" "24014" + "plane" "(-440 768 256) (-552 768 256) (-552 768 248)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -125055,30 +129436,31 @@ world } side { - "id" "47087" - "plane" "(-544 -2368 192) (-544 -2336 192) (-480 -2336 192)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24013" + "plane" "(-440 760 248) (-552 760 248) (-552 760 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 226 207" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91829" + "id" "29859" side { - "id" "47104" - "plane" "(-544 -2240 96) (-544 -2336 96) (-496 -2336 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24030" + "plane" "(-232 768 256) (-120 768 256) (-120 760 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -125087,20 +129469,20 @@ world } side { - "id" "47103" - "plane" "(-544 -2336 192) (-544 -2336 96) (-544 -2240 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24029" + "plane" "(-232 760 248) (-120 760 248) (-120 768 248)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47102" - "plane" "(-496 -2240 192) (-496 -2240 96) (-496 -2336 96)" - "material" "DEV/REFLECTIVITY_10B" + "id" "24028" + "plane" "(-232 768 256) (-232 760 256) (-232 760 248)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -125109,10 +129491,10 @@ world } side { - "id" "47101" - "plane" "(-544 -2240 192) (-544 -2240 96) (-496 -2240 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "24027" + "plane" "(-120 768 248) (-120 760 248) (-120 760 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125120,9 +129502,9 @@ world } side { - "id" "47100" - "plane" "(-496 -2336 192) (-496 -2336 96) (-544 -2336 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24026" + "plane" "(-120 768 256) (-232 768 256) (-232 768 248)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -125131,30 +129513,31 @@ world } side { - "id" "47099" - "plane" "(-544 -2336 192) (-544 -2240 192) (-496 -2240 192)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24025" + "plane" "(-120 760 248) (-232 760 248) (-232 760 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 226 207" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91831" + "id" "29860" side { - "id" "47116" - "plane" "(-544 -2080 96) (-544 -2176 96) (-496 -2176 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24048" + "plane" "(-392 768 96) (-280 768 96) (-280 760 96)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -125163,20 +129546,20 @@ world } side { - "id" "47115" - "plane" "(-544 -2176 192) (-544 -2176 96) (-544 -2080 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24047" + "plane" "(-392 760 88) (-280 760 88) (-280 768 88)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47114" - "plane" "(-496 -2080 192) (-496 -2080 96) (-496 -2176 96)" - "material" "DEV/REFLECTIVITY_10B" + "id" "24046" + "plane" "(-392 768 96) (-392 760 96) (-392 760 88)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -125185,10 +129568,10 @@ world } side { - "id" "47113" - "plane" "(-544 -2080 192) (-544 -2080 96) (-496 -2080 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "24045" + "plane" "(-280 768 88) (-280 760 88) (-280 760 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125196,8 +129579,8 @@ world } side { - "id" "47112" - "plane" "(-496 -2176 192) (-496 -2176 96) (-544 -2176 96)" + "id" "24044" + "plane" "(-280 768 96) (-392 768 96) (-392 768 88)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -125207,52 +129590,53 @@ world } side { - "id" "47111" - "plane" "(-544 -2176 192) (-544 -2080 192) (-496 -2080 192)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24043" + "plane" "(-280 760 88) (-392 760 88) (-392 760 96)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 226 207" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91845" + "id" "29861" side { - "id" "47128" - "plane" "(-496 -2124 96) (-496 -2132 96) (-492 -2132 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "24054" + "plane" "(-232 768 96) (-120 768 96) (-120 760 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47127" - "plane" "(-496 -2132 192) (-496 -2132 96) (-496 -2124 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24053" + "plane" "(-232 760 88) (-120 760 88) (-120 768 88)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47126" - "plane" "(-492 -2124 192) (-492 -2124 96) (-492 -2132 96)" - "material" "DEV/REFLECTIVITY_50B" + "id" "24052" + "plane" "(-232 768 96) (-232 760 96) (-232 760 88)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -125261,10 +129645,10 @@ world } side { - "id" "47125" - "plane" "(-496 -2124 192) (-496 -2124 96) (-492 -2124 96)" + "id" "24051" + "plane" "(-120 768 88) (-120 760 88) (-120 760 96)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125272,10 +129656,10 @@ world } side { - "id" "47124" - "plane" "(-492 -2132 192) (-492 -2132 96) (-496 -2132 96)" + "id" "24050" + "plane" "(-120 768 96) (-232 768 96) (-232 768 88)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125283,52 +129667,53 @@ world } side { - "id" "47123" - "plane" "(-496 -2132 192) (-496 -2124 192) (-492 -2124 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "24049" + "plane" "(-120 760 88) (-232 760 88) (-232 760 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 226 207" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91848" + "id" "29863" side { - "id" "47140" - "plane" "(-496 -2284 96) (-496 -2292 96) (-492 -2292 96)" + "id" "24066" + "plane" "(-640 832 384) (-128 832 384) (-128 768 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47139" - "plane" "(-496 -2292 192) (-496 -2292 96) (-496 -2284 96)" + "id" "24065" + "plane" "(-640 768 352) (-128 768 352) (-128 832 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47138" - "plane" "(-492 -2284 192) (-492 -2284 96) (-492 -2292 96)" - "material" "DEV/REFLECTIVITY_50B" + "id" "24064" + "plane" "(-640 832 384) (-640 768 384) (-640 768 352)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -125337,10 +129722,10 @@ world } side { - "id" "47137" - "plane" "(-496 -2284 192) (-496 -2284 96) (-492 -2284 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 -16] 0.25" + "id" "24063" + "plane" "(-128 832 352) (-128 768 352) (-128 768 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125348,10 +129733,10 @@ world } side { - "id" "47136" - "plane" "(-492 -2292 192) (-492 -2292 96) (-496 -2292 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 -16] 0.25" + "id" "24062" + "plane" "(-128 832 384) (-640 832 384) (-640 832 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125359,30 +129744,31 @@ world } side { - "id" "47135" - "plane" "(-496 -2292 192) (-496 -2284 192) (-492 -2284 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "24061" + "plane" "(-128 768 352) (-640 768 352) (-640 768 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91850" + "id" "29864" side { - "id" "47152" - "plane" "(-480 -2176 96) (-480 -2080 96) (-476 -2080 96)" - "material" "DEV/REFLECTIVITY_30B" + "id" "24078" + "plane" "(-640 736 400) (-640 832 400) (-128 832 400)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -125391,8 +129777,8 @@ world } side { - "id" "47151" - "plane" "(-476 -2176 92) (-476 -2080 92) (-480 -2080 88)" + "id" "24077" + "plane" "(-640 832 384) (-640 752 384) (-128 752 384)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -125402,9 +129788,9 @@ world } side { - "id" "47150" - "plane" "(-476 -2080 92) (-476 -2176 92) (-476 -2176 96)" - "material" "DEV/REFLECTIVITY_30B" + "id" "24076" + "plane" "(-640 832 384) (-640 832 400) (-640 736 400)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -125413,10 +129799,10 @@ world } side { - "id" "47149" - "plane" "(-480 -2080 88) (-476 -2080 92) (-476 -2080 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "24075" + "plane" "(-128 832 400) (-128 832 384) (-128 752 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125424,10 +129810,10 @@ world } side { - "id" "47148" - "plane" "(-480 -2176 88) (-480 -2080 88) (-480 -2080 96)" + "id" "24074" + "plane" "(-128 832 384) (-128 832 400) (-640 832 400)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125435,8 +129821,8 @@ world } side { - "id" "47147" - "plane" "(-480 -2176 96) (-476 -2176 96) (-476 -2176 92)" + "id" "24073" + "plane" "(-128 736 400) (-128 752 384) (-640 752 384)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -125446,7 +129832,7 @@ world } editor { - "color" "0 164 221" + "color" "0 250 115" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -125454,23 +129840,12 @@ world } solid { - "id" "91853" - side - { - "id" "47164" - "plane" "(-480 -2336 96) (-480 -2240 96) (-476 -2240 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "29874" side { - "id" "47163" - "plane" "(-476 -2336 92) (-476 -2240 92) (-480 -2240 88)" - "material" "DEV/REFLECTIVITY_30B" + "id" "24089" + "plane" "(-640 880 400) (-640 752 400) (-128 752 400)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -125479,9 +129854,9 @@ world } side { - "id" "47162" - "plane" "(-476 -2240 92) (-476 -2336 92) (-476 -2336 96)" - "material" "DEV/REFLECTIVITY_30B" + "id" "24088" + "plane" "(-640 880 400) (-640 880 528) (-640 752 400)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -125490,10 +129865,10 @@ world } side { - "id" "47161" - "plane" "(-480 -2240 88) (-476 -2240 92) (-476 -2240 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "24087" + "plane" "(-128 880 400) (-128 752 400) (-128 880 528)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125501,10 +129876,10 @@ world } side { - "id" "47160" - "plane" "(-480 -2336 88) (-480 -2240 88) (-480 -2240 96)" + "id" "24086" + "plane" "(-128 880 400) (-128 880 528) (-640 880 528)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125512,8 +129887,8 @@ world } side { - "id" "47159" - "plane" "(-480 -2336 96) (-476 -2336 96) (-476 -2336 92)" + "id" "24085" + "plane" "(-128 880 528) (-128 752 400) (-640 752 400)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -125523,7 +129898,7 @@ world } editor { - "color" "0 164 221" + "color" "0 186 151" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -125531,68 +129906,68 @@ world } solid { - "id" "91865" + "id" "29880" side { - "id" "47182" - "plane" "(704 -1896 264) (872 -1896 264) (904 -1928 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "24102" + "plane" "(112 920 96) (128 896 96) (-48 808 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47181" - "plane" "(896 -1920 256) (704 -1920 256) (704 -1928 264)" - "material" "DEV/REFLECTIVITY_10B" + "id" "24101" + "plane" "(128 896 64) (112 920 64) (-64 832 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47180" - "plane" "(872 -1896 264) (704 -1896 264) (704 -1896 256)" + "id" "24100" + "plane" "(-64 832 96) (-48 808 96) (-48 808 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47179" - "plane" "(872 -1896 264) (872 -1896 256) (896 -1920 256)" + "id" "24099" + "plane" "(128 896 96) (112 920 96) (112 920 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47178" - "plane" "(704 -1920 256) (896 -1920 256) (872 -1896 256)" + "id" "24098" + "plane" "(112 920 96) (-64 832 96) (-64 832 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47177" - "plane" "(704 -1920 256) (704 -1896 256) (704 -1896 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "24097" + "plane" "(-48 808 96) (128 896 96) (128 896 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125600,20 +129975,21 @@ world } editor { - "color" "0 176 105" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91867" + "id" "29890" side { - "id" "47194" - "plane" "(1000 -1496 264) (1032 -1464 264) (1032 -1800 264)" + "id" "24132" + "plane" "(-48 808 240) (-64 832 240) (-0 864 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125621,54 +129997,54 @@ world } side { - "id" "47193" - "plane" "(1032 -1464 264) (1024 -1472 256) (1024 -1792 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24131" + "plane" "(-64 832 192) (-48 808 192) (16 840 192)" + "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" "47192" - "plane" "(1000 -1496 256) (1000 -1496 264) (1000 -1768 264)" + "id" "24130" + "plane" "(0 864 192) (-0 864 240) (-64 832 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47191" - "plane" "(1032 -1464 264) (1000 -1496 264) (1000 -1496 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "24129" + "plane" "(-48 808 192) (-48 808 240) (16 840 240)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47190" - "plane" "(1000 -1768 256) (1024 -1792 256) (1024 -1472 256)" + "id" "24128" + "plane" "(-64 832 192) (-64 832 240) (-48 808 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47189" - "plane" "(1032 -1800 264) (1024 -1792 256) (1000 -1768 256)" + "id" "24127" + "plane" "(16 840 192) (16 840 240) (-0 864 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125676,64 +130052,76 @@ world } editor { - "color" "0 176 105" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91880" + "id" "29891" side { - "id" "47204" - "plane" "(1024 -1472 264) (1024 -1792 264) (960 -1728 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24138" + "plane" "(16 840 240) (0 864 240) (32 880 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47203" - "plane" "(960 -1536 384) (960 -1728 384) (960 -1728 264)" + "id" "24137" + "plane" "(0 864 96) (16 840 96) (48 856 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47202" - "plane" "(960 -1536 264) (1024 -1472 264) (960 -1536 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "24136" + "plane" "(32 880 240) (32 880 96) (48 856 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47201" - "plane" "(1024 -1792 264) (1024 -1472 264) (960 -1536 264)" + "id" "24135" + "plane" "(0 864 240) (0 864 96) (32 880 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47200" - "plane" "(960 -1728 264) (960 -1728 384) (1024 -1792 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "24134" + "plane" "(48 856 240) (48 856 96) (16 840 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24133" + "plane" "(16 840 240) (16 840 96) (0 864 96)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125741,62 +130129,74 @@ world } editor { - "color" "0 176 105" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91885" + "id" "29921" side { - "id" "47214" - "plane" "(896 -1920 264) (640 -1920 264) (704 -1856 384)" + "id" "24192" + "plane" "(32 880 192) (64 896 192) (80 872 192)" + "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" "24191" + "plane" "(48 856 176) (80 872 184) (64 896 184)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47213" - "plane" "(832 -1856 384) (704 -1856 384) (704 -1856 264)" + "id" "24190" + "plane" "(64 896 192) (32 880 192) (32 880 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47212" - "plane" "(832 -1856 264) (896 -1920 264) (832 -1856 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "24189" + "plane" "(48 856 192) (80 872 192) (80 872 184)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47211" - "plane" "(640 -1920 264) (896 -1920 264) (832 -1856 264)" + "id" "24188" + "plane" "(32 880 192) (48 856 192) (48 856 176)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47210" - "plane" "(704 -1856 264) (704 -1856 384) (640 -1920 264)" + "id" "24187" + "plane" "(80 872 192) (64 896 192) (64 896 184)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -125806,19 +130206,20 @@ world } editor { - "color" "0 176 105" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "91969" + "id" "29922" side { - "id" "47232" - "plane" "(1472 -3584 -64) (1472 -2752 -64) (1984 -2752 -64)" - "material" "LIQUIDS/INFERNO_WATER" + "id" "24198" + "plane" "(112 888 240) (48 856 240) (32 880 240)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -125827,8 +130228,8 @@ world } side { - "id" "47231" - "plane" "(1472 -2752 -128) (1472 -3584 -128) (1984 -3584 -128)" + "id" "24197" + "plane" "(96 912 192) (32 880 192) (48 856 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -125838,10 +130239,10 @@ world } side { - "id" "47230" - "plane" "(1472 -3584 -128) (1472 -2752 -128) (1472 -2752 -64)" + "id" "24196" + "plane" "(96 912 240) (32 880 240) (32 880 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125849,10 +130250,10 @@ world } side { - "id" "47229" - "plane" "(1984 -2752 -128) (1984 -3584 -128) (1984 -3584 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "24195" + "plane" "(48 856 240) (112 888 240) (112 888 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125860,10 +130261,10 @@ world } side { - "id" "47228" - "plane" "(1472 -2752 -128) (1984 -2752 -128) (1984 -2752 -64)" + "id" "24194" + "plane" "(32 880 240) (48 856 240) (48 856 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125871,10 +130272,10 @@ world } side { - "id" "47227" - "plane" "(1984 -3584 -128) (1472 -3584 -128) (1472 -3584 -64)" + "id" "24193" + "plane" "(112 888 240) (96 912 240) (96 912 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125882,113 +130283,31 @@ world } editor { - "color" "0 173 158" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92174" + "id" "29923" side { - "id" "47286" - "plane" "(1024 -3264 -63) (1024 -2752 -63) (1472 -2752 -63)" - "material" "WATERSOURCE/RIVER/FOAM2" - "uaxis" "[0 1 0 311.79] 0.438" - "vaxis" "[1 0 0 -293] 0.438" - "rotation" "90" + "id" "24204" + "plane" "(64 896 192) (96 912 192) (112 888 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "3" - "startposition" "[1024 -3264 -63]" - "flags" "14" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "1 0 0 1 0 0 0.984576 -0.174956 0 0.946704 -0.322105 0 0.916984 -0.398925 0 0.921367 -0.388694 0 0.889602 -0.456737 0 0.886408 -0.462905 0 0.936074 -0.351803 0" - "row1" "1 0 0 1 0 0 0.997666 -0.0682863 0 0.965942 -0.258759 0 0.929953 -0.36768 0 0.971373 -0.23756 0 0.986576 -0.163302 0 0.955378 -0.295387 0 0.969749 -0.244104 0" - "row2" "1 0 0 1 0 0 1 0 0 0.998533 -0.0541474 0 0.983698 -0.179827 0 0.995363 -0.0961856 0 0.99748 0.0709472 0 0.998866 0.0476028 0 0.990286 0.139044 0" - "row3" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999574 -0.0291707 0 0.999433 0.0336668 0 0.996098 0.0882552 0 0.988393 0.151917 0" - "row4" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.997023 0.0771024 0 0.974429 0.224697 0" - "row5" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.996184 0.0872739 0 0.983871 0.178881 0" - "row6" "1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.973241 0.229787 0 0.963715 0.266933 0" - "row7" "1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0.740951 0.671559 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0" - } - distances - { - "row0" "307.991 269.88 358.41 410.223 424.08 495.435 580.603 626.262 609.445" - "row1" "289.731 231.197 335.759 366.772 403.88 482.58 498.072 532.529 533.951" - "row2" "277.639 270.744 307.474 317.019 372.554 354.734 359.615 422.903 452.836" - "row3" "249.862 226.064 208.529 240.41 275.597 270.607 315.39 341.611 375.38" - "row4" "186.175 164.52 181.311 174.467 202.176 217.199 243.944 285.335 290.9" - "row5" "138.418 147.032 135.195 116.913 156.474 180.511 213.947 252.08 245.973" - "row6" "27.3528 56.3927 74.3483 58.4777 41.3984 35.3044 64.707 95.7408 164.835" - "row7" "1.87659 2.79553 1.87659 0 0 2.13928 7.22668 16.5547 65.5192" - "row8" "0 0 0 0 0 0 0 2.31946 1.68311" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0" - } - triangle_tags - { - "row0" "0 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row1" "0 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "47285" - "plane" "(1024 -2752 -64) (1024 -3264 -64) (1472 -3264 -64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24203" + "plane" "(80 872 184) (112 888 176) (96 912 176)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -125997,84 +130316,85 @@ world } side { - "id" "47284" - "plane" "(1024 -3264 -64) (1024 -2752 -64) (1024 -2752 -63)" + "id" "24202" + "plane" "(96 912 192) (64 896 192) (64 896 184)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47283" - "plane" "(1472 -2752 -64) (1472 -3264 -64) (1472 -3264 -63)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "24201" + "plane" "(80 872 192) (112 888 192) (112 888 176)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47282" - "plane" "(1024 -2752 -64) (1472 -2752 -64) (1472 -2752 -63)" + "id" "24200" + "plane" "(112 888 192) (96 912 192) (96 912 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47281" - "plane" "(1472 -3264 -64) (1024 -3264 -64) (1024 -3264 -63)" + "id" "24199" + "plane" "(64 896 192) (80 872 192) (80 872 184)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 234 195" + "color" "0 186 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92656" + "id" "29924" side { - "id" "47303" - "plane" "(1568 -2592 464) (1568 -2207.99 464) (1472 -2112 464)" + "id" "24210" + "plane" "(128 896 240) (112 888 240) (96 912 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -0.046875] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47302" - "plane" "(1472 -2112 464) (1567.99 -2207.99 464) (1568 -2208 576)" + "id" "24209" + "plane" "(112 920 96) (96 912 96) (112 888 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47301" - "plane" "(1568 -2208 576) (1567.99 -2207.99 464) (1568 -2592 464)" + "id" "24208" + "plane" "(128 896 240) (112 920 240) (112 920 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -126084,10 +130404,10 @@ world } side { - "id" "47300" - "plane" "(1472 -2688 464) (1472 -2112 464) (1568 -2208 576)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "24207" + "plane" "(112 920 240) (96 912 240) (96 912 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126095,9 +130415,20 @@ world } side { - "id" "47299" - "plane" "(1568.01 -2591.99 576.016) (1568 -2592 464) (1472 -2688 464)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24206" + "plane" "(112 888 240) (128 896 240) (128 896 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24205" + "plane" "(96 912 240) (112 888 240) (112 888 96)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -126106,7 +130437,7 @@ world } editor { - "color" "0 251 148" + "color" "0 186 151" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -126114,35 +130445,35 @@ world } solid { - "id" "92657" + "id" "27890" side { - "id" "47309" - "plane" "(1456.02 -2703.98 464) (1456.01 -2096.02 464) (1535.99 -2176 464)" + "id" "21483" + "plane" "(1471.99 -2176 448) (1471.99 -2112 448) (1807.99 -2112 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0.046875] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47308" - "plane" "(1536 -2624 448) (1536 -2175.99 448) (1472 -2112 448)" + "id" "21484" + "plane" "(1471.99 -2112 64) (1471.99 -2176 64) (1807.99 -2176 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0.046875] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47307" - "plane" "(1472 -2112 448) (1535.99 -2175.99 448) (1535.99 -2176 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.046875] 0.25" + "id" "21485" + "plane" "(1471.99 -2176 64) (1471.99 -2112 64) (1471.99 -2112 448)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126150,8 +130481,8 @@ world } side { - "id" "47306" - "plane" "(1472.01 -2687.99 448) (1472 -2112 448) (1456 -2096.02 464)" + "id" "21486" + "plane" "(1807.99 -2112 64) (1807.99 -2176 64) (1807.99 -2176 448)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -126161,10 +130492,10 @@ world } side { - "id" "47305" - "plane" "(1535.99 -2176 448) (1536 -2624 448) (1536 -2624 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "21487" + "plane" "(1471.98 -2112 64) (1807.99 -2112 64) (1807.99 -2112 448)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126172,10 +130503,10 @@ world } side { - "id" "47304" - "plane" "(1536 -2624 448) (1472.01 -2687.99 448) (1456.01 -2703.99 464)" + "id" "21488" + "plane" "(1807.99 -2176 64) (1471.99 -2176 64) (1471.98 -2176 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126183,7 +130514,7 @@ world } editor { - "color" "0 111 232" + "color" "0 174 175" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -126191,13 +130522,13 @@ world } solid { - "id" "92707" + "id" "27904" side { - "id" "47321" - "plane" "(1472 -3584 -128) (1472 -2752 -128) (1984 -2752 -128)" - "material" "RYAN_DEV/DEV_BLACK" - "uaxis" "[1 0 0 0] 0.25" + "id" "21506" + "plane" "(1920 -2176 448) (1920 -2112 448) (1952 -2080 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126205,10 +130536,10 @@ world } side { - "id" "47320" - "plane" "(1472 -2752 -192) (1472 -3584 -192) (1984 -3584 -192)" + "id" "21505" + "plane" "(1920 -2112 64) (1920 -2176 64) (2048 -2176 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126216,8 +130547,8 @@ world } side { - "id" "47319" - "plane" "(1472 -3584 -192) (1472 -2752 -192) (1472 -2752 -128)" + "id" "21504" + "plane" "(1919.99 -2176 64) (1919.99 -2112 64) (1919.99 -2112 448)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -126227,9 +130558,9 @@ world } side { - "id" "47318" - "plane" "(1984 -2752 -192) (1984 -3584 -192) (1984 -3584 -128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21503" + "plane" "(1952 -2080 64) (2048 -2176 64) (2048 -2176 448)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -126238,10 +130569,10 @@ world } side { - "id" "47317" - "plane" "(1472 -2752 -192) (1984 -2752 -192) (1984 -2752 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "21502" + "plane" "(1919.99 -2112 64) (1952 -2080 64) (1952 -2080 448)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126249,10 +130580,10 @@ world } side { - "id" "47316" - "plane" "(1984 -3584 -192) (1472 -3584 -192) (1472 -3584 -128)" + "id" "21501" + "plane" "(2048 -2176 64) (1919.99 -2176 64) (1920 -2176 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126260,42 +130591,43 @@ world } editor { - "color" "0 173 158" + "color" "0 174 175" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92754" + "id" "27906" side { - "id" "47344" - "plane" "(-64 -1856 64) (-64 -2112 64) (-128 -2048 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "21518" + "plane" "(2239.99 -1984 448) (2144 -1888 448) (2176 -1856 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.046875] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47343" - "plane" "(-128 -2048 0) (-64 -2112 0) (-64 -1856 0)" + "id" "21517" + "plane" "(2239.99 -1856 64) (2176 -1856 64) (2144 -1888 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -0.046875] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47342" - "plane" "(-64 -1856 0) (-64 -2112 0) (-64 -2112 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21516" + "plane" "(2176 -1856 64) (2239.99 -1856 64) (2239.99 -1856 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126303,10 +130635,10 @@ world } side { - "id" "47341" - "plane" "(-64 -2112 0) (-128 -2048 0) (-128 -2048 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21515" + "plane" "(2239.99 -1984 64) (2144 -1888 64) (2144 -1888 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126314,9 +130646,9 @@ world } side { - "id" "47340" - "plane" "(-128 -1920 0) (-64 -1856 0) (-64 -1856 64)" - "material" "DEV/REFLECTIVITY_50B" + "id" "21514" + "plane" "(2239.99 -1856 64) (2239.99 -1984 64) (2239.99 -1984 448)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -126325,10 +130657,10 @@ world } side { - "id" "47339" - "plane" "(-128 -2048 0) (-128 -1920 0) (-128 -1920 64)" + "id" "21513" + "plane" "(2144 -1888 64) (2176 -1856 64) (2176 -1856 448)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 -0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126336,20 +130668,21 @@ world } editor { - "color" "0 176 105" + "color" "0 174 175" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92822" + "id" "27927" side { - "id" "47418" - "plane" "(-120 -2056 176) (-128 -2048 176) (-112 -2048 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "21566" + "plane" "(2048 -2176 256) (1952 -2080 256) (2144 -1888 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126357,10 +130690,10 @@ world } side { - "id" "47417" - "plane" "(-128 -2048 64) (-120 -2056 64) (-112 -2048 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "21565" + "plane" "(2240 -1984 192) (2144 -1888 192) (1952 -2080 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126368,9 +130701,9 @@ world } side { - "id" "47416" - "plane" "(-120 -2056 64) (-128 -2048 64) (-128 -2048 176)" - "material" "DEV/REFLECTIVITY_50B" + "id" "21564" + "plane" "(2048 -2176 192) (1952 -2080 192) (1952 -2080 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -126379,10 +130712,10 @@ world } side { - "id" "47415" - "plane" "(-128 -2048 64) (-112 -2048 64) (-112 -2048 176)" + "id" "21563" + "plane" "(2144 -1888 192) (2240 -1984 192) (2240 -1984 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126390,10 +130723,21 @@ world } side { - "id" "47414" - "plane" "(-112 -2048 64) (-120 -2056 64) (-120 -2056 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21562" + "plane" "(1952 -2080 192) (2144 -1888 192) (2144 -1888 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21561" + "plane" "(2240 -1984 192) (2048 -2176 192) (2048 -2176 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126401,20 +130745,21 @@ world } editor { - "color" "0 176 105" + "color" "0 174 175" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92831" + "id" "27943" side { - "id" "47442" - "plane" "(-112 -2048 176) (-128 -2048 176) (-128 -2040 176)" + "id" "21590" + "plane" "(2160 -2064 384) (2128 -2096 384) (2032 -2000 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126422,10 +130767,10 @@ world } side { - "id" "47441" - "plane" "(-128 -2040 64) (-128 -2048 64) (-112 -2048 64)" + "id" "21589" + "plane" "(2064 -1968 256) (2032 -2000 256) (2128 -2096 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126433,10 +130778,10 @@ world } side { - "id" "47440" - "plane" "(-128 -2048 64) (-128 -2040 64) (-128 -2040 176)" + "id" "21588" + "plane" "(2032 -2000 256) (2064 -1968 256) (2064 -1968 384)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126444,10 +130789,10 @@ world } side { - "id" "47439" - "plane" "(-112 -2048 64) (-128 -2048 64) (-128 -2048 176)" + "id" "21587" + "plane" "(2160 -2064 256) (2128 -2096 256) (2128 -2096 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126455,9 +130800,9 @@ world } side { - "id" "47438" - "plane" "(-112 -2040 64) (-112 -2048 64) (-112 -2048 176)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21586" + "plane" "(2128 -2096 256) (2032 -2000 256) (2032 -2000 384)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -126466,10 +130811,10 @@ world } side { - "id" "47437" - "plane" "(-128 -2040 64) (-112 -2040 64) (-112 -2040 176)" + "id" "21585" + "plane" "(2064 -1968 256) (2160 -2064 256) (2160 -2064 384)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126477,18 +130822,19 @@ world } editor { - "color" "0 176 105" + "color" "0 174 175" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92832" + "id" "27946" side { - "id" "47448" - "plane" "(-128 -2040 176) (-128 -1928 176) (-112 -1928 176)" + "id" "21602" + "plane" "(2080 -2144 384) (2047.98 -2176 384) (1952 -2080 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -126498,9 +130844,9 @@ world } side { - "id" "47447" - "plane" "(-128 -1928 168) (-128 -2040 168) (-112 -2040 168)" - "material" "DEV/REFLECTIVITY_30B" + "id" "21601" + "plane" "(1984 -2048 256) (1952 -2080 256) (2048 -2176 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -126509,10 +130855,10 @@ world } side { - "id" "47446" - "plane" "(-128 -2040 168) (-128 -1928 168) (-128 -1928 176)" + "id" "21600" + "plane" "(1952 -2080 256) (1984 -2048 256) (1984 -2048 384)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126520,10 +130866,10 @@ world } side { - "id" "47445" - "plane" "(-112 -1928 168) (-112 -2040 168) (-112 -2040 176)" + "id" "21599" + "plane" "(2080 -2144 256) (2047.99 -2176 256) (2047.98 -2176 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126531,10 +130877,10 @@ world } side { - "id" "47444" - "plane" "(-112 -2040 168) (-128 -2040 168) (-128 -2040 176)" + "id" "21598" + "plane" "(2047.99 -2176 256) (1952 -2080 256) (1952 -2080 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126542,10 +130888,10 @@ world } side { - "id" "47443" - "plane" "(-128 -1928 168) (-112 -1928 168) (-112 -1928 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "21597" + "plane" "(1984 -2048 256) (2080 -2144 256) (2080 -2144 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126553,18 +130899,19 @@ world } editor { - "color" "0 176 105" + "color" "0 174 175" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92833" + "id" "27948" side { - "id" "47454" - "plane" "(-128 -1928 176) (-128 -1920 176) (-112 -1920 176)" + "id" "21614" + "plane" "(2240 -1984 384) (2208 -2016 384) (2112 -1920 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -126574,8 +130921,8 @@ world } side { - "id" "47453" - "plane" "(-112 -1920 64) (-128 -1920 64) (-128 -1928 64)" + "id" "21613" + "plane" "(2144 -1888 256) (2112 -1920 256) (2208 -2016 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -126585,10 +130932,10 @@ world } side { - "id" "47452" - "plane" "(-128 -1928 64) (-128 -1920 64) (-128 -1920 176)" + "id" "21612" + "plane" "(2112 -1920 256) (2144 -1888 256) (2144 -1888 384)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126596,8 +130943,8 @@ world } side { - "id" "47451" - "plane" "(-128 -1920 64) (-112 -1920 64) (-112 -1920 176)" + "id" "21611" + "plane" "(2240 -1984 256) (2208 -2016 256) (2208 -2016 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -126607,9 +130954,9 @@ world } side { - "id" "47450" - "plane" "(-112 -1920 64) (-112 -1928 64) (-112 -1928 176)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21610" + "plane" "(2208 -2016 256) (2112 -1920 256) (2112 -1920 384)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -126618,10 +130965,10 @@ world } side { - "id" "47449" - "plane" "(-112 -1928 64) (-128 -1928 64) (-128 -1928 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "21609" + "plane" "(2144 -1888 256) (2240 -1984 256) (2240 -1984 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126629,20 +130976,21 @@ world } editor { - "color" "0 176 105" + "color" "0 174 175" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92841" + "id" "27966" side { - "id" "47459" - "plane" "(-128 -1920 176) (-120 -1912 176) (-112 -1920 176)" + "id" "21650" + "plane" "(2240 -1984 448) (2047.97 -2176 448) (1952 -2080 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126650,10 +130998,10 @@ world } side { - "id" "47458" - "plane" "(-120 -1912 64) (-128 -1920 64) (-112 -1920 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "21649" + "plane" "(2144 -1888 384) (1952 -2080 384) (2047.98 -2176 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126661,10 +131009,10 @@ world } side { - "id" "47457" - "plane" "(-128 -1920 64) (-120 -1912 64) (-120 -1912 176)" + "id" "21648" + "plane" "(1952 -2080 384) (2144 -1888 384) (2144 -1888 448)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126672,10 +131020,10 @@ world } side { - "id" "47456" - "plane" "(-112 -1920 64) (-128 -1920 64) (-128 -1920 176)" + "id" "21647" + "plane" "(2240 -1984 384) (2047.98 -2176 384) (2047.97 -2176 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126683,9 +131031,20 @@ world } side { - "id" "47455" - "plane" "(-120 -1912 64) (-112 -1920 64) (-112 -1920 176)" - "material" "DEV/REFLECTIVITY_30B" + "id" "21646" + "plane" "(2047.98 -2176 384) (1952 -2080 384) (1952 -2080 448)" + "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" "21645" + "plane" "(2144 -1888 384) (2240 -1984 384) (2240 -1984 448)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -126694,42 +131053,43 @@ world } editor { - "color" "0 176 105" + "color" "0 174 175" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92847" + "id" "27987" side { - "id" "47471" - "plane" "(-112 -2048 176) (-64 -2096 176) (-72 -2104 176)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21686" + "plane" "(2016 -2144 64) (1952 -2080 64) (2144 -1888 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47470" - "plane" "(-120 -2056 168) (-72 -2104 168) (-64 -2096 168)" - "material" "DEV/REFLECTIVITY_30B" + "id" "21685" + "plane" "(2208 -1952 0) (2144 -1888 0) (1952 -2080 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47469" - "plane" "(-72 -2104 168) (-120 -2056 168) (-120 -2056 176)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21684" + "plane" "(2016 -2144 0) (1952 -2080 0) (1952 -2080 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126737,10 +131097,10 @@ world } side { - "id" "47468" - "plane" "(-112 -2048 168) (-64 -2096 168) (-64 -2096 176)" + "id" "21683" + "plane" "(2144 -1888 0) (2208 -1952 0) (2208 -1952 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126748,10 +131108,10 @@ world } side { - "id" "47467" - "plane" "(-120 -2056 168) (-112 -2048 168) (-112 -2048 176)" + "id" "21682" + "plane" "(1952 -2080 0) (2144 -1888 0) (2144 -1888 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126759,10 +131119,10 @@ world } side { - "id" "47466" - "plane" "(-64 -2096 168) (-72 -2104 168) (-72 -2104 176)" + "id" "21681" + "plane" "(2208 -1952 0) (2016 -2144 0) (2016 -2144 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126771,41 +131131,53 @@ world editor { "color" "0 176 105" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92848" + "id" "27992" side { - "id" "47476" - "plane" "(-64 -2096 176) (-64 -2112 176) (-72 -2104 176)" + "id" "21710" + "plane" "(2688 -1856 448) (2176 -1856 448) (2176 -1664 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0.046875] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47475" - "plane" "(-72 -2104 64) (-64 -2112 64) (-64 -2096 64)" + "id" "21709" + "plane" "(2688 -1664 64) (2176 -1664 64) (2176 -1856 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0.046875] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47474" - "plane" "(-64 -2096 64) (-64 -2112 64) (-64 -2112 176)" + "id" "21708" + "plane" "(2688 -1856 64) (2176 -1856 64) (2176 -1856 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21707" + "plane" "(2176 -1664 64) (2688 -1664 64) (2688 -1664 448)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126813,8 +131185,8 @@ world } side { - "id" "47473" - "plane" "(-64 -2112 64) (-72 -2104 64) (-72 -2104 176)" + "id" "21706" + "plane" "(2176 -1856 64) (2176 -1664 64) (2176 -1664 448)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -126824,9 +131196,9 @@ world } side { - "id" "47472" - "plane" "(-72 -2104 64) (-64 -2096 64) (-64 -2096 176)" - "material" "DEV/REFLECTIVITY_30B" + "id" "21705" + "plane" "(2688 -1664 64) (2688 -1856 64) (2688 -1856 448)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -126835,20 +131207,21 @@ world } editor { - "color" "0 176 105" + "color" "0 174 175" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92853" + "id" "28004" side { - "id" "47481" - "plane" "(-72 -1864 176) (-64 -1856 176) (-64 -1872 176)" + "id" "21734" + "plane" "(1887.99 -2176 448) (1887.99 -2112 448) (1919.99 -2112 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126856,10 +131229,10 @@ world } side { - "id" "47480" - "plane" "(-64 -1872 64) (-64 -1856 64) (-72 -1864 64)" + "id" "21733" + "plane" "(1887.99 -2112 64) (1887.99 -2176 64) (1919.99 -2176 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126867,9 +131240,9 @@ world } side { - "id" "47479" - "plane" "(-64 -1856 64) (-64 -1872 64) (-64 -1872 176)" - "material" "DEV/REFLECTIVITY_50B" + "id" "21732" + "plane" "(1887.99 -2176 64) (1887.99 -2112 64) (1887.99 -2112 448)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -126878,9 +131251,9 @@ world } side { - "id" "47478" - "plane" "(-72 -1864 64) (-64 -1856 64) (-64 -1856 176)" - "material" "DEV/REFLECTIVITY_50B" + "id" "21731" + "plane" "(1919.99 -2112 64) (1919.99 -2176 64) (1919.99 -2176 448)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -126889,10 +131262,21 @@ world } side { - "id" "47477" - "plane" "(-64 -1872 64) (-72 -1864 64) (-72 -1864 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21730" + "plane" "(1887.99 -2112 64) (1919.99 -2112 64) (1919.99 -2112 448)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21729" + "plane" "(1919.99 -2176 64) (1887.99 -2176 64) (1887.99 -2176 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126900,20 +131284,21 @@ world } editor { - "color" "0 176 105" + "color" "0 174 175" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92854" + "id" "28006" side { - "id" "47487" - "plane" "(-120 -1912 176) (-72 -1864 176) (-64 -1872 176)" + "id" "21746" + "plane" "(1807.99 -2176 448) (1807.99 -2112 448) (1887.99 -2112 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126921,10 +131306,10 @@ world } side { - "id" "47486" - "plane" "(-112 -1920 168) (-64 -1872 168) (-72 -1864 168)" + "id" "21745" + "plane" "(1807.99 -2112 192) (1807.99 -2176 192) (1887.99 -2176 192)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126932,9 +131317,9 @@ world } side { - "id" "47485" - "plane" "(-120 -1912 168) (-72 -1864 168) (-72 -1864 176)" - "material" "DEV/REFLECTIVITY_50B" + "id" "21744" + "plane" "(1807.99 -2176 192) (1807.99 -2112 192) (1807.99 -2112 448)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -126943,8 +131328,8 @@ world } side { - "id" "47484" - "plane" "(-64 -1872 168) (-112 -1920 168) (-112 -1920 176)" + "id" "21743" + "plane" "(1887.99 -2112 192) (1887.99 -2176 192) (1887.99 -2176 448)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -126954,10 +131339,10 @@ world } side { - "id" "47483" - "plane" "(-112 -1920 168) (-120 -1912 168) (-120 -1912 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "21742" + "plane" "(1807.99 -2112 192) (1887.99 -2112 192) (1887.99 -2112 448)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126965,10 +131350,10 @@ world } side { - "id" "47482" - "plane" "(-72 -1864 168) (-64 -1872 168) (-64 -1872 176)" + "id" "21741" + "plane" "(1887.99 -2176 192) (1807.99 -2176 192) (1807.99 -2176 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -126976,42 +131361,43 @@ world } editor { - "color" "0 176 105" + "color" "0 174 175" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92861" + "id" "28015" side { - "id" "47511" - "plane" "(-128 -2040 144) (-128 -1928 144) (-112 -1928 144)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "21770" + "plane" "(1807.99 -2256 64) (1807.99 -2240 64) (1887.99 -2240 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64.0469] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47510" - "plane" "(-128 -1928 136) (-128 -2040 136) (-112 -2040 136)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "21769" + "plane" "(1807.99 -2240 0) (1807.99 -2256 0) (1887.99 -2256 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47509" - "plane" "(-128 -2040 136) (-128 -1928 136) (-128 -1928 144)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21768" + "plane" "(1807.99 -2256 0) (1807.99 -2240 0) (1807.99 -2240 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127019,10 +131405,10 @@ world } side { - "id" "47508" - "plane" "(-112 -1928 136) (-112 -2040 136) (-112 -2040 144)" + "id" "21767" + "plane" "(1887.99 -2240 0) (1887.99 -2256 0) (1887.99 -2256 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127030,10 +131416,10 @@ world } side { - "id" "47507" - "plane" "(-112 -2040 136) (-128 -2040 136) (-128 -2040 144)" + "id" "21766" + "plane" "(1807.99 -2240 0) (1887.99 -2240 0) (1887.99 -2240 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127041,10 +131427,10 @@ world } side { - "id" "47506" - "plane" "(-128 -1928 136) (-112 -1928 136) (-112 -1928 144)" + "id" "21765" + "plane" "(1887.99 -2256 0) (1807.99 -2256 0) (1807.99 -2256 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127053,41 +131439,31 @@ world editor { "color" "0 176 105" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92862" - side - { - "id" "47517" - "plane" "(-120 -1912 144) (-72 -1864 144) (-64 -1872 144)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "28033" side { - "id" "47516" - "plane" "(-112 -1920 136) (-64 -1872 136) (-72 -1864 136)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "21817" + "plane" "(1472 -2112 464) (1568 -2208 464) (2016 -2208 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.046875] 0.25" + "vaxis" "[0 1 0 -63.998] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47515" - "plane" "(-120 -1912 136) (-72 -1864 136) (-72 -1864 144)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21816" + "plane" "(1920 -2112 464) (2016 -2208 464) (2016 -2208 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.998] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127095,10 +131471,10 @@ world } side { - "id" "47514" - "plane" "(-64 -1872 136) (-112 -1920 136) (-112 -1920 144)" + "id" "21815" + "plane" "(1568 -2208 576) (1568 -2208 464) (1472 -2112 464)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 63.998] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127106,10 +131482,10 @@ world } side { - "id" "47513" - "plane" "(-112 -1920 136) (-120 -1912 136) (-120 -1912 144)" + "id" "21814" + "plane" "(2016 -2208 576) (2016 -2208 464) (1568 -2208 464)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 -0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127117,10 +131493,10 @@ world } side { - "id" "47512" - "plane" "(-72 -1864 136) (-64 -1872 136) (-64 -1872 144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "21813" + "plane" "(1568 -2208 576) (1472 -2112 464) (1920 -2112 464)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 -0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127128,42 +131504,32 @@ world } editor { - "color" "0 176 105" + "color" "0 251 148" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92863" - side - { - "id" "47523" - "plane" "(-112 -2048 144) (-64 -2096 144) (-72 -2104 144)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "28068" side { - "id" "47522" - "plane" "(-120 -2056 136) (-72 -2104 136) (-64 -2096 136)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "21856" + "plane" "(2272 -1952 464) (2176 -1856 464) (1920 -2112 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.046875] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47521" - "plane" "(-72 -2104 136) (-120 -2056 136) (-120 -2056 144)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21855" + "plane" "(2176 -1856 464) (2272 -1952 464) (2272 -1952 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127171,10 +131537,10 @@ world } side { - "id" "47520" - "plane" "(-112 -2048 136) (-64 -2096 136) (-64 -2096 144)" + "id" "21854" + "plane" "(2016 -2208 576) (2016 -2208 464) (1920 -2112 464)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127182,10 +131548,10 @@ world } side { - "id" "47519" - "plane" "(-120 -2056 136) (-112 -2048 136) (-112 -2048 144)" + "id" "21853" + "plane" "(2272 -1952 576) (2272 -1952 464) (2016 -2208 464)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 -0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127193,10 +131559,10 @@ world } side { - "id" "47518" - "plane" "(-64 -2096 136) (-72 -2104 136) (-72 -2104 144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "21852" + "plane" "(2016 -2208 576) (1920 -2112 464) (2176 -1856.01 464)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 -0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127204,20 +131570,21 @@ world } editor { - "color" "0 176 105" + "color" "0 251 148" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92925" + "id" "28112" side { - "id" "47559" - "plane" "(-120 -2048 168) (-120 -1920 168) (-64 -1864 168)" + "id" "21974" + "plane" "(1471.99 -2752 448) (1471.99 -2176 448) (1535.99 -2176 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127225,10 +131592,10 @@ world } side { - "id" "47558" - "plane" "(-120 -1920 64) (-120 -2048 64) (-64 -2104 64)" + "id" "21973" + "plane" "(1471.99 -2176 64) (1471.99 -2752 64) (1535.99 -2752 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127236,9 +131603,9 @@ world } side { - "id" "47557" - "plane" "(-120 -2048 64) (-120 -1920 64) (-120 -1920 168)" - "material" "DEV/REFLECTIVITY_10B" + "id" "21972" + "plane" "(1471.99 -2752 64) (1471.99 -2176 64) (1471.99 -2176 448)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -127247,8 +131614,8 @@ world } side { - "id" "47556" - "plane" "(-64 -1864 64) (-64 -2104 64) (-64 -2104 168)" + "id" "21971" + "plane" "(1535.99 -2176 64) (1535.99 -2752 64) (1535.99 -2752 448)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -127258,10 +131625,10 @@ world } side { - "id" "47555" - "plane" "(-64 -2104 64) (-120 -2048 64) (-120 -2048 168)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21970" + "plane" "(1471.98 -2176 64) (1535.99 -2176 64) (1535.99 -2176 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127269,10 +131636,10 @@ world } side { - "id" "47554" - "plane" "(-120 -1920 64) (-64 -1864 64) (-64 -1864 168)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21969" + "plane" "(1535.99 -2752 64) (1471.99 -2752 64) (1471.98 -2752 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127280,42 +131647,43 @@ world } editor { - "color" "0 176 105" + "color" "0 174 175" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92977" + "id" "28550" side { - "id" "47572" - "plane" "(-136 -2048 176) (-64 -2120 176) (-64 -1856 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "22377" + "plane" "(-832 -576 272) (-848 -576 272) (-848 -416 272)" + "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" "47571" - "plane" "(-64 -1856 176) (-64 -2120 176) (-64 -2048 256)" - "material" "DEV/REFLECTIVITY_30B" + "id" "22376" + "plane" "(-832 -416 256) (-848 -416 256) (-848 -576 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47570" - "plane" "(-64 -2048 256) (-64 -2120 176) (-136 -2048 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "22375" + "plane" "(-832 -576 256) (-848 -576 256) (-848 -576 272)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127323,10 +131691,10 @@ world } side { - "id" "47569" - "plane" "(-136 -1920 176) (-72 -1856 176) (-64 -1856 184.891)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "22374" + "plane" "(-848 -416 256) (-832 -416 256) (-832 -416 272)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127334,9 +131702,9 @@ world } side { - "id" "47568" - "plane" "(-136 -2048 176) (-136 -1920 176) (-64 -1920 256)" - "material" "DEV/REFLECTIVITY_30B" + "id" "22373" + "plane" "(-848 -576 256) (-848 -416 256) (-848 -416 272)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -127345,10 +131713,10 @@ world } side { - "id" "47567" - "plane" "(-72 -1856 176) (-64 -1856 176) (-64 -1856 184.889)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "22372" + "plane" "(-832 -416 256) (-832 -576 256) (-832 -576 272)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127356,42 +131724,43 @@ world } editor { - "color" "0 176 105" + "color" "0 136 105" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92985" + "id" "28586" side { - "id" "47606" - "plane" "(-64 -1856 0) (-64 -1920 0) (320 -1920 0)" + "id" "22449" + "plane" "(-832 -560 288) (-848 -560 288) (-848 -432 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47605" - "plane" "(-64 -1920 0) (-64 -1856 0) (-64 -1856 184.889)" + "id" "22448" + "plane" "(-832 -432 272) (-848 -432 272) (-848 -560 272)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47604" - "plane" "(320 -1856 0) (320 -1920 0) (320 -1920 256)" + "id" "22447" + "plane" "(-832 -560 272) (-848 -560 272) (-848 -560 288)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127399,10 +131768,10 @@ world } side { - "id" "47603" - "plane" "(-64 -1856 0) (320 -1856 0) (320 -1856 184.889)" + "id" "22446" + "plane" "(-848 -432 272) (-832 -432 272) (-832 -432 288)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127410,10 +131779,10 @@ world } side { - "id" "47602" - "plane" "(320 -1856 184.888) (320 -1920 256) (-64 -1920 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "22445" + "plane" "(-848 -560 272) (-848 -432 272) (-848 -432 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127421,10 +131790,10 @@ world } side { - "id" "47601" - "plane" "(320 -1920 0) (-64 -1920 0) (-64 -1920 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "22444" + "plane" "(-832 -432 272) (-832 -560 272) (-832 -560 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127432,42 +131801,43 @@ world } editor { - "color" "0 176 105" + "color" "0 136 105" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "92986" + "id" "28591" side { - "id" "47618" - "plane" "(-64 -2176 256) (-64 -1920 256) (320 -1920 256)" + "id" "22461" + "plane" "(-832 -544 304) (-848 -544 304) (-848 -448 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47617" - "plane" "(-64 -1920 -7.62939e-06) (-64 -2176 -7.62939e-06) (320 -2176 -7.62939e-06)" + "id" "22460" + "plane" "(-832 -448 288) (-848 -448 288) (-848 -544 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "47616" - "plane" "(-64 -2176 -7.62939e-06) (-64 -1920 -7.62939e-06) (-64 -1920 256)" + "id" "22459" + "plane" "(-832 -544 288) (-848 -544 288) (-848 -544 304)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127475,10 +131845,10 @@ world } side { - "id" "47615" - "plane" "(320 -1920 -7.62939e-06) (320 -2176 -7.62939e-06) (320 -2176 256)" + "id" "22458" + "plane" "(-848 -448 288) (-832 -448 288) (-832 -448 304)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127486,10 +131856,10 @@ world } side { - "id" "47614" - "plane" "(-64 -1920 -7.62939e-06) (320 -1920 -7.62939e-06) (320 -1920 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "22457" + "plane" "(-848 -544 288) (-848 -448 288) (-848 -448 304)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127497,10 +131867,10 @@ world } side { - "id" "47613" - "plane" "(320 -2176 -7.62939e-06) (-64 -2176 -7.62939e-06) (-64 -2176 256)" + "id" "22456" + "plane" "(-832 -448 288) (-832 -544 288) (-832 -544 304)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127508,31 +131878,43 @@ world } editor { - "color" "0 176 105" + "color" "0 136 105" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "93008" + "id" "28594" side { - "id" "47640" - "plane" "(-72 -1984 256) (-72 -2176 256) (448 -2176 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "22473" + "plane" "(-832 -528 320) (-848 -528 320) (-848 -464 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" "47639" - "plane" "(-72 -2176 256) (-72 -1984 256) (-72 -2080 320)" - "material" "DEV/REFLECTIVITY_30B" + "id" "22472" + "plane" "(-832 -464 304) (-848 -464 304) (-848 -528 304)" + "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" "22471" + "plane" "(-832 -528 304) (-848 -528 304) (-848 -528 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127540,10 +131922,10 @@ world } side { - "id" "47638" - "plane" "(448 -1984 256) (448 -2176 256) (448 -2080 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "22470" + "plane" "(-848 -464 304) (-832 -464 304) (-832 -464 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127551,10 +131933,10 @@ world } side { - "id" "47637" - "plane" "(448 -2080 320) (448 -2176 256) (-72 -2176 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "22469" + "plane" "(-848 -528 304) (-848 -464 304) (-848 -464 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127562,10 +131944,10 @@ world } side { - "id" "47636" - "plane" "(-72 -2080 320) (-72 -1984 256) (448 -1984 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "22468" + "plane" "(-832 -464 304) (-832 -528 304) (-832 -528 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127573,125 +131955,43 @@ world } editor { - "color" "0 176 105" + "color" "0 136 105" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "87811" + "id" "28597" side { - "id" "45108" - "plane" "(-960 -2816 -40) (-960 -3520 -40) (-1536 -3520 -40)" - "material" "NATURE/BLEND_GRASS_GRAVEL_02" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -64] 0.25" + "id" "22485" + "plane" "(-832 -512 336) (-848 -512 336) (-848 -480 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "3" - "startposition" "[-1536 -3520 -40]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" - } - distances - { - "row0" "3.31994 4.28334 5.5616 9.72958 15.201 20.1282 25.4266 22.7993 15.8893" - "row1" "5.62031 8.31203 10.5971 15.7588 21.4781 29.1374 32.4485 28.8538 20.9411" - "row2" "5.62215 8.31605 9.59226 11.4375 15.7286 22.3931 24.885 20.4855 14.1129" - "row3" "1.5861 4.29119 4.28978 3.60506 2.8119 2.77571 3.29436 3.38355 0.771461" - "row4" "0 0.293415 0.968136 0.293415 0 0 0 1.07837 3.79468" - "row5" "0 0 0 0 0 0.618896 14.4587 34.6174 39.3584" - "row6" "0 0 0 0 2.52588 17.1624 56.4395 93.3813 100.481" - "row7" "0 0 0 0 4.60083 25.5525 100.464 150.244 156.737" - "row8" "0 0 0 0 2.64746 15.5247 102.691 177.151 187.702" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "147 255 255 255 255 255 255 172 0" - "row1" "196 255 255 255 255 255 255 147 49" - "row2" "245 255 255 207 255 255 255 147 0" - "row3" "49 74 48 159 207 255 255 0 0" - "row4" "144 0 0 97 255 255 250 0 0" - "row5" "144 0 0 0 147 0 0 0 0" - "row6" "120 0 0 0 0 0 0 0 0" - "row7" "111 0 0 0 0 0 0 0 0" - "row8" "48 48 0 0 0 0 0 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "45107" - "plane" "(-960 -3520 -64) (-960 -2816 -64) (-1536 -2816 -64)" + "id" "22484" + "plane" "(-832 -480 320) (-848 -480 320) (-848 -512 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45106" - "plane" "(-960 -3520 -40) (-960 -2816 -40) (-960 -2816 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "22483" + "plane" "(-832 -512 320) (-848 -512 320) (-848 -512 336)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127699,10 +131999,10 @@ world } side { - "id" "45105" - "plane" "(-1536 -2816 -40) (-1536 -3520 -40) (-1536 -3520 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "22482" + "plane" "(-848 -480 320) (-832 -480 320) (-832 -480 336)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127710,10 +132010,10 @@ world } side { - "id" "45104" - "plane" "(-1536 -3520 -40) (-960 -3520 -40) (-960 -3520 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22481" + "plane" "(-848 -512 320) (-848 -480 320) (-848 -480 336)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127721,10 +132021,10 @@ world } side { - "id" "45103" - "plane" "(-960 -2816 -40) (-1536 -2816 -40) (-1536 -2816 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22480" + "plane" "(-832 -480 320) (-832 -512 320) (-832 -512 336)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127732,42 +132032,43 @@ world } editor { - "color" "0 176 105" + "color" "0 136 105" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "88301" + "id" "28608" side { - "id" "45608" - "plane" "(-1456 -3328 128) (-1456 -3456 128) (-1040 -3456 128)" + "id" "22497" + "plane" "(-832 -504 352) (-848 -504 352) (-848 -488 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45607" - "plane" "(-1040 -3360.01 192.012) (-1040 -3328 128) (-1040 -3456 128)" + "id" "22496" + "plane" "(-832 -488 336) (-848 -488 336) (-848 -504 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45606" - "plane" "(-1456 -3456 128) (-1456 -3328 128) (-1456 -3360 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "22495" + "plane" "(-832 -504 336) (-848 -504 336) (-848 -504 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127775,54 +132076,32 @@ world } side { - "id" "45605" - "plane" "(-1456 -3360 192) (-1456 -3328 128) (-1040 -3328 128)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[-1 0 0 247] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "45604" - "plane" "(-1456 -3392 224) (-1456 -3360 192) (-1040 -3360 192)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[-1 0 0 247] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "45603" - "plane" "(-1456 -3424 240) (-1456 -3392 224) (-1040 -3392 224)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[-1 0 0 247] 0.25" - "vaxis" "[0 1 0 480.002] 0.25" + "id" "22494" + "plane" "(-848 -488 336) (-832 -488 336) (-832 -488 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45602" - "plane" "(-1456 -3456 240) (-1456 -3424 240) (-1040 -3424 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "22493" + "plane" "(-848 -504 336) (-848 -488 336) (-848 -488 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45601" - "plane" "(-1040 -3456 240) (-1040 -3456 128) (-1456 -3456 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "22492" + "plane" "(-832 -488 336) (-832 -504 336) (-832 -504 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127830,7 +132109,7 @@ world } editor { - "color" "0 145 226" + "color" "0 136 105" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -127838,23 +132117,34 @@ world } solid { - "id" "88302" + "id" "28613" side { - "id" "45613" - "plane" "(-1376 -3456 160) (-1120 -3456 160) (-1120 -3304 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "id" "22509" + "plane" "(-830 -432 274) (-848 -432 274) (-848 -414 274)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45612" - "plane" "(-1120 -3456 160) (-1376 -3456 160) (-1248 -3456 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "22508" + "plane" "(-830 -414 272) (-848 -414 272) (-848 -432 272)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22507" + "plane" "(-830 -432 272) (-848 -432 272) (-848 -432 274)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -127863,9 +132153,9 @@ world } side { - "id" "45611" - "plane" "(-1376 -3304 160) (-1120 -3304 160) (-1248 -3304 256)" - "material" "DEV/REFLECTIVITY_10B" + "id" "22506" + "plane" "(-848 -414 272) (-830 -414 272) (-830 -414 274)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -127874,29 +132164,29 @@ world } side { - "id" "45610" - "plane" "(-1248 -3304 256) (-1120 -3304 160) (-1120 -3456 160)" + "id" "22505" + "plane" "(-848 -432 272) (-848 -414 272) (-848 -414 274)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45609" - "plane" "(-1248 -3456 256) (-1376 -3456 160) (-1376 -3304 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "22504" + "plane" "(-830 -414 272) (-830 -432 272) (-830 -432 274)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 223 168" + "color" "0 220 153" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -127904,46 +132194,46 @@ world } solid { - "id" "88303" + "id" "28621" side { - "id" "45619" - "plane" "(-1232 -3304 192) (-1232 -3304 232) (-1216 -3304 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22521" + "plane" "(-830 -448 290) (-848 -448 290) (-848 -430 290)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45618" - "plane" "(-1162.66 -3296 192) (-1216 -3296 232) (-1232 -3296 232)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22520" + "plane" "(-830 -430 288) (-848 -430 288) (-848 -448 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45617" - "plane" "(-1216 -3296 232) (-1162.66 -3296 192) (-1162.67 -3304 192)" - "material" "DEV/REFLECTIVITY_10B" + "id" "22519" + "plane" "(-830 -448 288) (-848 -448 288) (-848 -448 290)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45616" - "plane" "(-1232 -3304 232) (-1232 -3304 192) (-1232 -3296 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "22518" + "plane" "(-848 -430 288) (-830 -430 288) (-830 -430 290)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -127951,29 +132241,29 @@ world } side { - "id" "45615" - "plane" "(-1232 -3304 192) (-1162.67 -3304 192) (-1162.66 -3296 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "id" "22517" + "plane" "(-848 -448 288) (-848 -430 288) (-848 -430 290)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45614" - "plane" "(-1232 -3296 232) (-1216 -3296 232) (-1216 -3304 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "id" "22516" + "plane" "(-830 -430 288) (-830 -448 288) (-830 -448 290)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 229 206" + "color" "0 220 153" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -127981,34 +132271,34 @@ world } solid { - "id" "88304" + "id" "28623" side { - "id" "45625" - "plane" "(-1376 -3304 160) (-1264 -3304 160) (-1264 -3296 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32.002] 0.25" + "id" "22533" + "plane" "(-830 -464 306) (-848 -464 306) (-848 -446 306)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45624" - "plane" "(-1264 -3304 160) (-1376 -3304 160) (-1333.33 -3304 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22532" + "plane" "(-830 -446 304) (-848 -446 304) (-848 -464 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45623" - "plane" "(-1376 -3296 160) (-1264 -3296 160) (-1264 -3296 192)" - "material" "DEV/REFLECTIVITY_50B" + "id" "22531" + "plane" "(-830 -464 304) (-848 -464 304) (-848 -464 306)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -128017,21 +132307,21 @@ world } side { - "id" "45622" - "plane" "(-1333.34 -3304 192) (-1376 -3304 160) (-1376 -3296 160)" - "material" "TOOLS/TOOLSNODRAW" + "id" "22530" + "plane" "(-848 -446 304) (-830 -446 304) (-830 -446 306)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45621" - "plane" "(-1264 -3296 192) (-1264 -3296 160) (-1264 -3304 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22529" + "plane" "(-848 -464 304) (-848 -446 304) (-848 -446 306)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128039,18 +132329,18 @@ world } side { - "id" "45620" - "plane" "(-1333.34 -3296 192) (-1264 -3296 192) (-1264 -3304 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "id" "22528" + "plane" "(-830 -446 304) (-830 -464 304) (-830 -464 306)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 120" + "color" "0 220 153" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -128058,57 +132348,46 @@ world } solid { - "id" "88305" + "id" "28624" side { - "id" "45632" - "plane" "(-1264 -3304 232) (-1264 -3304 244) (-1248 -3304 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22545" + "plane" "(-830 -480 322) (-848 -480 322) (-848 -462 322)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45631" - "plane" "(-1232 -3296 232) (-1232 -3296 244) (-1248 -3296 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22544" + "plane" "(-830 -462 320) (-848 -462 320) (-848 -480 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45630" - "plane" "(-1248 -3296 256) (-1232 -3296 244) (-1232 -3304 244)" - "material" "DEV/REFLECTIVITY_10B" + "id" "22543" + "plane" "(-830 -480 320) (-848 -480 320) (-848 -480 322)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45629" - "plane" "(-1264 -3296 244) (-1248 -3296 256) (-1248 -3304 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "22542" + "plane" "(-848 -462 320) (-830 -462 320) (-830 -462 322)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "45628" - "plane" "(-1232 -3296 244) (-1232 -3296 232) (-1232 -3304 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128116,10 +132395,10 @@ world } side { - "id" "45627" - "plane" "(-1264 -3304 244) (-1264 -3304 232) (-1264 -3296 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22541" + "plane" "(-848 -480 320) (-848 -462 320) (-848 -462 322)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128127,18 +132406,18 @@ world } side { - "id" "45626" - "plane" "(-1264 -3304 232) (-1232 -3304 232) (-1232 -3296 232)" + "id" "22540" + "plane" "(-830 -462 320) (-830 -480 320) (-830 -480 322)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 157 170" + "color" "0 220 153" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -128146,23 +132425,34 @@ world } solid { - "id" "88306" + "id" "28625" side { - "id" "45637" - "plane" "(-1232 -3304 232) (-1232 -3304 244) (-1216 -3304 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22557" + "plane" "(-830 -488 338) (-848 -488 338) (-848 -478 338)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45636" - "plane" "(-1216 -3296 232) (-1232 -3296 244) (-1232 -3296 232)" - "material" "DEV/REFLECTIVITY_50B" + "id" "22556" + "plane" "(-830 -478 336) (-848 -478 336) (-848 -488 336)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22555" + "plane" "(-830 -488 336) (-848 -488 336) (-848 -488 338)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -128171,21 +132461,21 @@ world } side { - "id" "45635" - "plane" "(-1232 -3296 244) (-1216 -3296 232) (-1216 -3304 232)" - "material" "DEV/REFLECTIVITY_10B" + "id" "22554" + "plane" "(-848 -478 336) (-830 -478 336) (-830 -478 338)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45634" - "plane" "(-1232 -3304 244) (-1232 -3304 232) (-1232 -3296 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22553" + "plane" "(-848 -488 336) (-848 -478 336) (-848 -478 338)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128193,18 +132483,18 @@ world } side { - "id" "45633" - "plane" "(-1232 -3304 232) (-1216 -3304 232) (-1216 -3296 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "id" "22552" + "plane" "(-830 -478 336) (-830 -488 336) (-830 -488 338)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 223 156" + "color" "0 220 153" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -128212,46 +132502,46 @@ world } solid { - "id" "88307" + "id" "28627" side { - "id" "45643" - "plane" "(-1333.32 -3304 192) (-1280 -3304 232) (-1264 -3304 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22569" + "plane" "(-830 -506 354) (-848 -506 354) (-848 -486 354)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45642" - "plane" "(-1264 -3296 192) (-1264 -3296 232) (-1280 -3296 232)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22568" + "plane" "(-830 -486 352) (-848 -486 352) (-848 -506 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45641" - "plane" "(-1333.33 -3296 192) (-1280 -3296 232) (-1280 -3304 232)" - "material" "TOOLS/TOOLSNODRAW" + "id" "22567" + "plane" "(-830 -506 352) (-848 -506 352) (-848 -506 354)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45640" - "plane" "(-1264 -3296 232) (-1264 -3296 192) (-1264 -3304 192)" + "id" "22566" + "plane" "(-848 -486 352) (-830 -486 352) (-830 -486 354)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128259,29 +132549,29 @@ world } side { - "id" "45639" - "plane" "(-1333.33 -3304 192) (-1264 -3304 192) (-1264 -3296 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "id" "22565" + "plane" "(-848 -506 352) (-848 -486 352) (-848 -486 354)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45638" - "plane" "(-1280 -3296 232) (-1264 -3296 232) (-1264 -3304 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "id" "22564" + "plane" "(-830 -486 352) (-830 -506 352) (-830 -506 354)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 253 190" + "color" "0 220 153" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -128289,34 +132579,34 @@ world } solid { - "id" "88308" + "id" "28629" side { - "id" "45649" - "plane" "(-1264 -3304 160) (-1232 -3304 160) (-1232 -3296 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32.002] 0.25" + "id" "22581" + "plane" "(-830 -514 338) (-848 -514 338) (-848 -504 338)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45648" - "plane" "(-1232 -3304 192) (-1232 -3304 160) (-1264 -3304 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22580" + "plane" "(-830 -504 336) (-848 -504 336) (-848 -514 336)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45647" - "plane" "(-1264 -3296 192) (-1264 -3296 160) (-1232 -3296 160)" - "material" "DEV/REFLECTIVITY_50B" + "id" "22579" + "plane" "(-830 -514 336) (-848 -514 336) (-848 -514 338)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -128325,10 +132615,10 @@ world } side { - "id" "45646" - "plane" "(-1232 -3296 192) (-1232 -3296 160) (-1232 -3304 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22578" + "plane" "(-848 -504 336) (-830 -504 336) (-830 -504 338)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128336,10 +132626,10 @@ world } side { - "id" "45645" - "plane" "(-1264 -3304 192) (-1264 -3304 160) (-1264 -3296 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22577" + "plane" "(-848 -514 336) (-848 -504 336) (-848 -504 338)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128347,18 +132637,18 @@ world } side { - "id" "45644" - "plane" "(-1264 -3296 192) (-1232 -3296 192) (-1232 -3304 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "22576" + "plane" "(-830 -504 336) (-830 -514 336) (-830 -514 338)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 187 216" + "color" "0 220 153" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -128366,23 +132656,34 @@ world } solid { - "id" "88309" + "id" "28630" side { - "id" "45654" - "plane" "(-1280 -3304 232) (-1264 -3304 244) (-1264 -3304 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22593" + "plane" "(-830 -530 322) (-848 -530 322) (-848 -512 322)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45653" - "plane" "(-1264 -3296 232) (-1264 -3296 244) (-1280 -3296 232)" - "material" "DEV/REFLECTIVITY_50B" + "id" "22592" + "plane" "(-830 -512 320) (-848 -512 320) (-848 -530 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22591" + "plane" "(-830 -530 320) (-848 -530 320) (-848 -530 322)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -128391,21 +132692,21 @@ world } side { - "id" "45652" - "plane" "(-1280 -3296 232) (-1264 -3296 244) (-1264 -3304 244)" - "material" "TOOLS/TOOLSNODRAW" + "id" "22590" + "plane" "(-848 -512 320) (-830 -512 320) (-830 -512 322)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45651" - "plane" "(-1264 -3296 244) (-1264 -3296 232) (-1264 -3304 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22589" + "plane" "(-848 -530 320) (-848 -512 320) (-848 -512 322)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128413,18 +132714,18 @@ world } side { - "id" "45650" - "plane" "(-1280 -3304 232) (-1264 -3304 232) (-1264 -3296 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "id" "22588" + "plane" "(-830 -512 320) (-830 -530 320) (-830 -530 322)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 153 214" + "color" "0 220 153" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -128432,34 +132733,34 @@ world } solid { - "id" "88310" + "id" "28631" side { - "id" "45660" - "plane" "(-1232 -3304 160) (-1120 -3304 160) (-1120 -3296 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32.002] 0.25" + "id" "22605" + "plane" "(-830 -546 306) (-848 -546 306) (-848 -528 306)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45659" - "plane" "(-1120 -3304 160) (-1232 -3304 160) (-1232 -3304 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22604" + "plane" "(-830 -528 304) (-848 -528 304) (-848 -546 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45658" - "plane" "(-1232 -3296 160) (-1120 -3296 160) (-1162.66 -3296 192)" - "material" "DEV/REFLECTIVITY_50B" + "id" "22603" + "plane" "(-830 -546 304) (-848 -546 304) (-848 -546 306)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -128468,21 +132769,21 @@ world } side { - "id" "45657" - "plane" "(-1162.66 -3296 192) (-1120 -3296 160) (-1120 -3304 160)" - "material" "DEV/REFLECTIVITY_10B" + "id" "22602" + "plane" "(-848 -528 304) (-830 -528 304) (-830 -528 306)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45656" - "plane" "(-1232 -3304 192) (-1232 -3304 160) (-1232 -3296 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22601" + "plane" "(-848 -546 304) (-848 -528 304) (-848 -528 306)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128490,18 +132791,18 @@ world } side { - "id" "45655" - "plane" "(-1232 -3296 192) (-1162.66 -3296 192) (-1162.66 -3304 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "id" "22600" + "plane" "(-830 -528 304) (-830 -546 304) (-830 -546 306)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 155 212" + "color" "0 220 153" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -128509,33 +132810,33 @@ world } solid { - "id" "88311" + "id" "28632" side { - "id" "45666" - "plane" "(-1264 -3296 188) (-1232 -3296 188) (-1232 -3292 188)" + "id" "22617" + "plane" "(-830 -562 290) (-848 -562 290) (-848 -544 290)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45665" - "plane" "(-1232 -3296 192) (-1232 -3296 188) (-1264 -3296 188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22616" + "plane" "(-830 -544 288) (-848 -544 288) (-848 -562 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45664" - "plane" "(-1264 -3292 192) (-1264 -3292 188) (-1232 -3292 188)" + "id" "22615" + "plane" "(-830 -562 288) (-848 -562 288) (-848 -562 290)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -128545,10 +132846,10 @@ world } side { - "id" "45663" - "plane" "(-1232 -3292 192) (-1232 -3292 188) (-1232 -3296 188)" + "id" "22614" + "plane" "(-848 -544 288) (-830 -544 288) (-830 -544 290)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128556,10 +132857,10 @@ world } side { - "id" "45662" - "plane" "(-1264 -3296 192) (-1264 -3296 188) (-1264 -3292 188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "22613" + "plane" "(-848 -562 288) (-848 -544 288) (-848 -544 290)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128567,18 +132868,18 @@ world } side { - "id" "45661" - "plane" "(-1264 -3292 192) (-1232 -3292 192) (-1232 -3296 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "22612" + "plane" "(-830 -544 288) (-830 -562 288) (-830 -562 290)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 153 162" + "color" "0 220 153" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -128586,35 +132887,35 @@ world } solid { - "id" "88312" + "id" "28633" side { - "id" "45672" - "plane" "(-1408 -3456 160) (-1408 -3296 160) (-1088 -3296 160)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "id" "22629" + "plane" "(-830 -578 274) (-848 -578 274) (-848 -560 274)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45671" - "plane" "(-1408 -3296 128) (-1408 -3456 128) (-1088 -3456 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "id" "22628" + "plane" "(-830 -560 272) (-848 -560 272) (-848 -578 272)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45670" - "plane" "(-1088 -3296 128) (-1088 -3456 128) (-1088 -3456 160)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22627" + "plane" "(-830 -578 272) (-848 -578 272) (-848 -578 274)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128622,10 +132923,10 @@ world } side { - "id" "45669" - "plane" "(-1408 -3456 128) (-1408 -3296 128) (-1408 -3296 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "22626" + "plane" "(-848 -560 272) (-830 -560 272) (-830 -560 274)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128633,10 +132934,10 @@ world } side { - "id" "45668" - "plane" "(-1408 -3296 128) (-1088 -3296 128) (-1088 -3296 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22625" + "plane" "(-848 -578 272) (-848 -560 272) (-848 -560 274)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128644,10 +132945,10 @@ world } side { - "id" "45667" - "plane" "(-1088 -3456 128) (-1408 -3456 128) (-1408 -3456 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "22624" + "plane" "(-830 -560 272) (-830 -578 272) (-830 -578 274)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128655,7 +132956,7 @@ world } editor { - "color" "0 159 180" + "color" "0 220 153" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -128663,35 +132964,24 @@ world } solid { - "id" "88313" - side - { - "id" "45678" - "plane" "(-1024 -3296 128) (-1024 -3312 128) (-1472 -3312 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "28678" side { - "id" "45677" - "plane" "(-1024 -3312 96) (-1024 -3296 96) (-1472 -3296 96)" + "id" "23476" + "plane" "(-1000 -648 256) (-960 -688 256) (-848 -576 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45676" - "plane" "(-1024 -3296 96) (-1024 -3312 96) (-1024 -3312 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "23475" + "plane" "(-1000 -648 336) (-960 -688 256) (-1000 -648 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128699,10 +132989,10 @@ world } side { - "id" "45675" - "plane" "(-1472 -3312 96) (-1472 -3296 96) (-1472 -3296 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "23474" + "plane" "(-848 -496 256) (-848 -576 256) (-848 -496 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128710,10 +133000,10 @@ world } side { - "id" "45674" - "plane" "(-1024 -3312 96) (-1472 -3312 96) (-1472 -3312 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "23473" + "plane" "(-848 -496 336) (-848 -576 256) (-960 -688 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128721,10 +133011,10 @@ world } side { - "id" "45673" - "plane" "(-1472 -3296 96) (-1024 -3296 96) (-1024 -3296 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "23472" + "plane" "(-1000 -648 336) (-1000 -648 256) (-848 -496 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128732,7 +133022,7 @@ world } editor { - "color" "0 189 142" + "color" "0 106 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -128740,35 +133030,24 @@ world } solid { - "id" "88315" - side - { - "id" "45690" - "plane" "(-1312 -3292 8) (-1312 -3296 8) (-1376 -3296 8)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "28682" side { - "id" "45689" - "plane" "(-1312 -3296 0) (-1312 -3292 0) (-1376 -3292 0)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "id" "22711" + "plane" "(-960 -304 256) (-1000 -344 256) (-848 -496 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45688" - "plane" "(-1312 -3292 0) (-1312 -3296 0) (-1312 -3296 8)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22710" + "plane" "(-1000 -344 256) (-960 -304 256) (-1000 -344 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128776,10 +133055,10 @@ world } side { - "id" "45687" - "plane" "(-1376 -3296 0) (-1376 -3292 0) (-1376 -3292 8)" + "id" "22709" + "plane" "(-848 -496 336) (-848 -416 256) (-848 -496 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128787,10 +133066,10 @@ world } side { - "id" "45686" - "plane" "(-1312 -3296 0) (-1376 -3296 0) (-1376 -3296 8)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22708" + "plane" "(-1000 -344 336) (-960 -304 256) (-848 -416 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128798,10 +133077,10 @@ world } side { - "id" "45685" - "plane" "(-1376 -3292 0) (-1312 -3292 0) (-1312 -3292 8)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22707" + "plane" "(-848 -496 336) (-848 -496 256) (-1000 -344 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128809,42 +133088,43 @@ world } editor { - "color" "0 241 254" + "color" "0 180 249" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "88316" + "id" "28691" side { - "id" "45696" - "plane" "(-1376 -3296 96) (-1376 -3312 96) (-1472 -3312 96)" + "id" "22723" + "plane" "(-928 -416 296) (-892 -380 296) (-868 -404 296)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45695" - "plane" "(-1376 -3312 -32) (-1376 -3296 -32) (-1472 -3296 -32)" + "id" "22722" + "plane" "(-892 -380 264) (-928 -416 264) (-904 -440 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45694" - "plane" "(-1376 -3296 -32) (-1376 -3312 -32) (-1376 -3312 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22721" + "plane" "(-928 -416 264) (-892 -380 264) (-892 -380 296)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128852,10 +133132,10 @@ world } side { - "id" "45693" - "plane" "(-1472 -3312 -32) (-1472 -3296 -32) (-1472 -3296 96)" + "id" "22720" + "plane" "(-868 -404 264) (-904 -440 264) (-904 -440 296)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128863,10 +133143,10 @@ world } side { - "id" "45692" - "plane" "(-1376 -3312 -32) (-1472 -3312 -32) (-1472 -3312 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22719" + "plane" "(-892 -380 264) (-868 -404 264) (-868 -404 296)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128874,10 +133154,10 @@ world } side { - "id" "45691" - "plane" "(-1472 -3296 -32) (-1376 -3296 -32) (-1376 -3296 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22718" + "plane" "(-904 -440 264) (-928 -416 264) (-928 -416 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128885,7 +133165,7 @@ world } editor { - "color" "0 199 116" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -128893,46 +133173,46 @@ world } solid { - "id" "88317" + "id" "28701" side { - "id" "45702" - "plane" "(-1312 -3296 8) (-1312 -3312 8) (-1376 -3312 8)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "id" "22735" + "plane" "(-984 -360 296) (-948 -324 296) (-924 -348 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45701" - "plane" "(-1312 -3312 -32) (-1312 -3296 -32) (-1376 -3296 -32)" + "id" "22734" + "plane" "(-948 -324 264) (-984 -360 264) (-960 -384 264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45700" - "plane" "(-1312 -3296 -32) (-1312 -3312 -32) (-1312 -3312 8)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22733" + "plane" "(-984 -360 264) (-948 -324 264) (-948 -324 296)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45699" - "plane" "(-1376 -3312 -32) (-1376 -3296 -32) (-1376 -3296 8)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22732" + "plane" "(-924 -348 264) (-960 -384 264) (-960 -384 296)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128940,10 +133220,10 @@ world } side { - "id" "45698" - "plane" "(-1312 -3312 -32) (-1376 -3312 -32) (-1376 -3312 8)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22731" + "plane" "(-948 -324 264) (-924 -348 264) (-924 -348 296)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128951,10 +133231,10 @@ world } side { - "id" "45697" - "plane" "(-1376 -3296 -32) (-1312 -3296 -32) (-1312 -3296 8)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22730" + "plane" "(-960 -384 264) (-984 -360 264) (-984 -360 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -128962,7 +133242,7 @@ world } editor { - "color" "0 189 194" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -128970,35 +133250,24 @@ world } solid { - "id" "88318" - side - { - "id" "45708" - "plane" "(-1280 -3296 96) (-1280 -3312 96) (-1312 -3312 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "28707" side { - "id" "45707" - "plane" "(-1280 -3312 -32) (-1280 -3296 -32) (-1312 -3296 -32)" + "id" "22752" + "plane" "(-892 -380 296) (-928 -416 296) (-904 -440 296)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45706" - "plane" "(-1280 -3296 -32) (-1280 -3312 -32) (-1280 -3312 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22751" + "plane" "(-928 -416 296) (-892 -380 296) (-928 -416 328)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129006,10 +133275,10 @@ world } side { - "id" "45705" - "plane" "(-1312 -3312 -32) (-1312 -3296 -32) (-1312 -3296 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "22750" + "plane" "(-868 -404 296) (-904 -440 296) (-904 -440 328)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129017,10 +133286,10 @@ world } side { - "id" "45704" - "plane" "(-1280 -3312 -32) (-1312 -3312 -32) (-1312 -3312 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22749" + "plane" "(-928 -416 328) (-892 -380 296) (-868 -404 296)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129028,10 +133297,10 @@ world } side { - "id" "45703" - "plane" "(-1312 -3296 -32) (-1280 -3296 -32) (-1280 -3296 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22748" + "plane" "(-904 -440 328) (-904 -440 296) (-928 -416 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129039,7 +133308,7 @@ world } editor { - "color" "0 211 204" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -129047,35 +133316,24 @@ world } solid { - "id" "88319" - side - { - "id" "45806" - "plane" "(-1472 -3456 128) (-1472 -3312 128) (-1024 -3312 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "28714" side { - "id" "45805" - "plane" "(-1472 -3312 -32) (-1472 -3456 -32) (-1024 -3456 -32)" + "id" "22769" + "plane" "(-948 -324 296) (-984 -360 296) (-960 -384 296)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45804" - "plane" "(-1024 -3312 -32) (-1024 -3456 -32) (-1024 -3456 128)" + "id" "22768" + "plane" "(-984 -360 296) (-948 -324 296) (-984 -360 328)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129083,10 +133341,10 @@ world } side { - "id" "45803" - "plane" "(-1472 -3456 -32) (-1472 -3312 -32) (-1472 -3312 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "22767" + "plane" "(-924 -348 296) (-960 -384 296) (-960 -384 328)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129094,10 +133352,10 @@ world } side { - "id" "45802" - "plane" "(-1472 -3312 -32) (-1024 -3312 -32) (-1024 -3312 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22766" + "plane" "(-984 -360 328) (-948 -324 296) (-924 -348 296)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129105,10 +133363,10 @@ world } side { - "id" "45801" - "plane" "(-1024 -3456 -32) (-1472 -3456 -32) (-1472 -3456 128)" + "id" "22765" + "plane" "(-960 -384 328) (-960 -384 296) (-984 -360 296)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129116,7 +133374,7 @@ world } editor { - "color" "0 193 250" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -129124,46 +133382,46 @@ world } solid { - "id" "88320" + "id" "28733" side { - "id" "45720" - "plane" "(-1232 -3312 96) (-1280 -3312 96) (-1280 -3296 96)" + "id" "22787" + "plane" "(-960 -288 160) (-832 -416 160) (-848 -416 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45719" - "plane" "(-1232 -3296 72) (-1280 -3296 64) (-1280 -3312 64)" + "id" "22786" + "plane" "(-832 -416 128) (-960 -288 128) (-976 -288 128)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45718" - "plane" "(-1280 -3312 64) (-1280 -3296 64) (-1280 -3296 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22785" + "plane" "(-832 -416 128) (-832 -416 160) (-960 -288 160)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45717" - "plane" "(-1280 -3312 96) (-1232 -3312 96) (-1232 -3312 72)" + "id" "22784" + "plane" "(-960 -288 128) (-960 -288 160) (-976 -288 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129171,10 +133429,10 @@ world } side { - "id" "45716" - "plane" "(-1280 -3296 64) (-1232 -3296 72) (-1232 -3296 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22783" + "plane" "(-848 -416 128) (-848 -416 160) (-832 -416 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129182,10 +133440,10 @@ world } side { - "id" "45715" - "plane" "(-1232 -3296 72) (-1232 -3312 72) (-1232 -3312 96)" + "id" "22782" + "plane" "(-976 -288 128) (-976 -288 160) (-848 -416 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129193,7 +133451,7 @@ world } editor { - "color" "0 199 136" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -129201,57 +133459,57 @@ world } solid { - "id" "88321" + "id" "28779" side { - "id" "45726" - "plane" "(-1312 -3296 96) (-1312 -3312 96) (-1344 -3312 96)" + "id" "22859" + "plane" "(-832 -416 128) (-848 -416 128) (-864 -400 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45725" - "plane" "(-1312 -3312 64) (-1312 -3296 64) (-1344 -3296 72)" + "id" "22858" + "plane" "(-848 -416 48) (-832 -416 48) (-856 -392 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45724" - "plane" "(-1312 -3296 64) (-1312 -3312 64) (-1312 -3312 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "22857" + "plane" "(-832 -416 48) (-832 -416 128) (-856 -392 128)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45723" - "plane" "(-1312 -3312 64) (-1344 -3312 72) (-1344 -3312 96)" + "id" "22856" + "plane" "(-848 -416 48) (-848 -416 128) (-832 -416 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45722" - "plane" "(-1312 -3296 96) (-1344 -3296 96) (-1344 -3296 72)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22855" + "plane" "(-864 -400 48) (-864 -400 128) (-848 -416 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129259,10 +133517,10 @@ world } side { - "id" "45721" - "plane" "(-1344 -3312 72) (-1344 -3296 72) (-1344 -3296 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22854" + "plane" "(-856 -392 48) (-856 -392 128) (-864 -400 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129270,7 +133528,7 @@ world } editor { - "color" "0 173 122" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -129278,57 +133536,57 @@ world } solid { - "id" "88322" + "id" "28781" side { - "id" "45732" - "plane" "(-1344 -3312 96) (-1376 -3312 96) (-1376 -3296 96)" + "id" "22871" + "plane" "(-918 -346 128) (-910 -338 128) (-888 -360 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45731" - "plane" "(-1344 -3296 72) (-1376 -3296 64) (-1376 -3312 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "id" "22870" + "plane" "(-896 -368 48) (-888 -360 48) (-910 -338 48)" + "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" "45730" - "plane" "(-1376 -3312 64) (-1376 -3296 64) (-1376 -3296 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "22869" + "plane" "(-888 -360 48) (-888 -360 128) (-910 -338 128)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45729" - "plane" "(-1376 -3312 96) (-1344 -3312 96) (-1344 -3312 72)" + "id" "22868" + "plane" "(-918 -346 48) (-918 -346 128) (-896 -368 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45728" - "plane" "(-1376 -3296 64) (-1344 -3296 72) (-1344 -3296 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22867" + "plane" "(-896 -368 48) (-896 -368 128) (-888 -360 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129336,10 +133594,10 @@ world } side { - "id" "45727" - "plane" "(-1344 -3296 72) (-1344 -3312 72) (-1344 -3312 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22866" + "plane" "(-910 -338 48) (-910 -338 128) (-918 -346 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129347,7 +133605,7 @@ world } editor { - "color" "0 255 220" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -129355,46 +133613,46 @@ world } solid { - "id" "88323" + "id" "28782" side { - "id" "45738" - "plane" "(-1184 -3296 96) (-1184 -3312 96) (-1232 -3312 96)" + "id" "22877" + "plane" "(-976 -288 128) (-960 -288 128) (-938 -310 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45737" - "plane" "(-1184 -3312 64) (-1184 -3296 64) (-1232 -3296 72)" + "id" "22876" + "plane" "(-960 -288 48) (-976 -288 48) (-946 -318 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45736" - "plane" "(-1184 -3296 64) (-1184 -3312 64) (-1184 -3312 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22875" + "plane" "(-938 -310 48) (-938 -310 128) (-960 -288 128)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45735" - "plane" "(-1184 -3312 64) (-1232 -3312 72) (-1232 -3312 96)" + "id" "22874" + "plane" "(-960 -288 48) (-960 -288 128) (-976 -288 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129402,10 +133660,10 @@ world } side { - "id" "45734" - "plane" "(-1184 -3296 96) (-1232 -3296 96) (-1232 -3296 72)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22873" + "plane" "(-976 -288 48) (-976 -288 128) (-946 -318 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129413,10 +133671,10 @@ world } side { - "id" "45733" - "plane" "(-1232 -3312 72) (-1232 -3296 72) (-1232 -3296 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22872" + "plane" "(-946 -318 48) (-946 -318 128) (-938 -310 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129424,7 +133682,7 @@ world } editor { - "color" "0 129 202" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -129432,35 +133690,35 @@ world } solid { - "id" "88324" + "id" "28783" side { - "id" "45744" - "plane" "(-1024 -3296 96) (-1024 -3312 96) (-1184 -3312 96)" + "id" "22883" + "plane" "(-928 -352 128) (-952 -328 128) (-944 -320 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45743" - "plane" "(-1024 -3312 -32) (-1024 -3296 -32) (-1184 -3296 -32)" + "id" "22882" + "plane" "(-952 -328 48) (-928 -352 48) (-920 -344 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45742" - "plane" "(-1024 -3296 -32) (-1024 -3312 -32) (-1024 -3312 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" + "id" "22881" + "plane" "(-944 -320 48) (-920 -344 48) (-920 -344 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129468,10 +133726,10 @@ world } side { - "id" "45741" - "plane" "(-1184 -3312 -32) (-1184 -3296 -32) (-1184 -3296 96)" + "id" "22880" + "plane" "(-928 -352 48) (-952 -328 48) (-952 -328 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129479,10 +133737,10 @@ world } side { - "id" "45740" - "plane" "(-1024 -3312 -32) (-1184 -3312 -32) (-1184 -3312 96)" + "id" "22879" + "plane" "(-920 -344 48) (-928 -352 48) (-928 -352 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129490,10 +133748,10 @@ world } side { - "id" "45739" - "plane" "(-1184 -3296 -32) (-1024 -3296 -32) (-1024 -3296 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22878" + "plane" "(-952 -328 48) (-944 -320 48) (-944 -320 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129501,7 +133759,8 @@ world } editor { - "color" "0 139 240" + "color" "190 203 0" + "groupid" "28788" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -129509,46 +133768,46 @@ world } solid { - "id" "88328" + "id" "28792" side { - "id" "45800" - "plane" "(-1456 -3456 128) (-1456 -3296 128) (-1472 -3296 128)" + "id" "22937" + "plane" "(-910 -338 240) (-882 -366 240) (-890 -374 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45799" - "plane" "(-1456 -3304 144) (-1456 -3296 128) (-1456 -3456 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22936" + "plane" "(-882 -366 160) (-910 -338 160) (-918 -346 160)" + "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" "45798" - "plane" "(-1472 -3456 128) (-1472 -3296 128) (-1472 -3304 144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22935" + "plane" "(-882 -366 240) (-910 -338 240) (-910 -338 160)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45797" - "plane" "(-1472 -3304 144) (-1472 -3296 128) (-1456 -3296 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22934" + "plane" "(-918 -346 240) (-890 -374 240) (-890 -374 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129556,10 +133815,10 @@ world } side { - "id" "45796" - "plane" "(-1456 -3456 144) (-1456 -3456 128) (-1472 -3456 128)" + "id" "22933" + "plane" "(-890 -374 240) (-882 -366 240) (-882 -366 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129567,18 +133826,18 @@ world } side { - "id" "45795" - "plane" "(-1456 -3304 144) (-1456 -3456 144) (-1472 -3456 144)" + "id" "22932" + "plane" "(-910 -338 240) (-918 -346 240) (-918 -346 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 151 252" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -129586,46 +133845,46 @@ world } solid { - "id" "88329" + "id" "28793" side { - "id" "45775" - "plane" "(-1456 -3328 192) (-1456 -3304 144) (-1456 -3432 144)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22943" + "plane" "(-976 -288 256) (-960 -288 256) (-832 -416 256)" + "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" "45774" - "plane" "(-1472 -3304 144) (-1472 -3328 192) (-1472 -3432 192)" + "id" "22942" + "plane" "(-848 -416 240) (-832 -416 240) (-960 -288 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45773" - "plane" "(-1472 -3328 192) (-1472 -3304 144) (-1456 -3304 144)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22941" + "plane" "(-960 -288 240) (-832 -416 240) (-832 -416 256)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45772" - "plane" "(-1456 -3432 192) (-1456 -3432 144) (-1472 -3432 144)" + "id" "22940" + "plane" "(-976 -288 240) (-960 -288 240) (-960 -288 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129633,29 +133892,29 @@ world } side { - "id" "45771" - "plane" "(-1456 -3328 192) (-1456 -3432 192) (-1472 -3432 192)" + "id" "22939" + "plane" "(-832 -416 240) (-848 -416 240) (-848 -416 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45770" - "plane" "(-1456 -3432 144) (-1456 -3304 144) (-1472 -3304 144)" + "id" "22938" + "plane" "(-848 -416 240) (-976 -288 240) (-976 -288 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 225 170" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -129663,46 +133922,46 @@ world } solid { - "id" "88330" + "id" "28794" side { - "id" "45781" - "plane" "(-1456 -3376 272) (-1456 -3376 256) (-1472 -3376 256)" + "id" "22949" + "plane" "(-832 -416 240) (-848 -416 240) (-862 -402 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45780" - "plane" "(-1456 -3344 240) (-1456 -3344 224) (-1456 -3376 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22948" + "plane" "(-848 -416 160) (-832 -416 160) (-854 -394 160)" + "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" "45779" - "plane" "(-1472 -3376 272) (-1472 -3376 256) (-1472 -3344 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22947" + "plane" "(-832 -416 160) (-832 -416 240) (-854 -394 240)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45778" - "plane" "(-1472 -3344 240) (-1472 -3344 224) (-1456 -3344 224)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22946" + "plane" "(-848 -416 160) (-848 -416 240) (-832 -416 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129710,10 +133969,10 @@ world } side { - "id" "45777" - "plane" "(-1456 -3344 240) (-1456 -3376 272) (-1472 -3376 272)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "22945" + "plane" "(-862 -402 160) (-862 -402 240) (-848 -416 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129721,10 +133980,10 @@ world } side { - "id" "45776" - "plane" "(-1472 -3344 224) (-1472 -3376 256) (-1456 -3376 256)" + "id" "22944" + "plane" "(-854 -394 160) (-854 -394 240) (-862 -402 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129732,7 +133991,7 @@ world } editor { - "color" "0 199 216" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -129740,46 +133999,46 @@ world } solid { - "id" "88331" + "id" "28795" side { - "id" "45787" - "plane" "(-1456 -3456 272) (-1456 -3456 256) (-1472 -3456 256)" + "id" "22955" + "plane" "(-976 -288 240) (-960 -288 240) (-938 -310 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45786" - "plane" "(-1456 -3376 272) (-1456 -3376 256) (-1456 -3456 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22954" + "plane" "(-960 -288 160) (-976 -288 160) (-946 -318 160)" + "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" "45785" - "plane" "(-1472 -3456 272) (-1472 -3456 256) (-1472 -3376 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22953" + "plane" "(-938 -310 160) (-938 -310 240) (-960 -288 240)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45784" - "plane" "(-1472 -3376 272) (-1472 -3376 256) (-1456 -3376 256)" + "id" "22952" + "plane" "(-960 -288 160) (-960 -288 240) (-976 -288 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129787,29 +134046,29 @@ world } side { - "id" "45783" - "plane" "(-1456 -3376 272) (-1456 -3456 272) (-1472 -3456 272)" + "id" "22951" + "plane" "(-976 -288 160) (-976 -288 240) (-946 -318 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45782" - "plane" "(-1472 -3456 256) (-1456 -3456 256) (-1456 -3376 256)" + "id" "22950" + "plane" "(-946 -318 160) (-946 -318 240) (-938 -310 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 117 250" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -129817,57 +134076,46 @@ world } solid { - "id" "88332" - side - { - "id" "45794" - "plane" "(-1456 -3376 256) (-1456 -3456 256) (-1472 -3456 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.00195313] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "28823" side { - "id" "45793" - "plane" "(-1456 -3456 192) (-1456 -3456 256) (-1456 -3376 256)" + "id" "22961" + "plane" "(-896 -368 48) (-976 -288 48) (-960 -288 48)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 -0.00195313] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45792" - "plane" "(-1472 -3328 192) (-1472 -3344 224) (-1472 -3376 256)" + "id" "22960" + "plane" "(-888 -360 0) (-960 -288 0) (-976 -288 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45791" - "plane" "(-1456 -3328 192) (-1456 -3344 224) (-1472 -3344 224)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22959" + "plane" "(-960 -288 0) (-888 -360 0) (-888 -360 48)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "45790" - "plane" "(-1456 -3344 224) (-1456 -3376 256) (-1472 -3376 256)" + "id" "22958" + "plane" "(-976 -288 0) (-960 -288 0) (-960 -288 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129875,10 +134123,10 @@ world } side { - "id" "45789" - "plane" "(-1472 -3456 192) (-1472 -3456 256) (-1456 -3456 256)" + "id" "22957" + "plane" "(-896 -368 0) (-976 -288 0) (-976 -288 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129886,18 +134134,18 @@ world } side { - "id" "45788" - "plane" "(-1456 -3456 192) (-1456 -3328 192) (-1472 -3328 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "22956" + "plane" "(-888 -360 0) (-896 -368 0) (-896 -368 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 163 216" + "color" "0 238 147" "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" @@ -129905,46 +134153,46 @@ world } solid { - "id" "89906" + "id" "28824" side { - "id" "46112" - "plane" "(-2048 -3520 -48) (-2048 -2592 -48) (-1856 -2592 -48)" - "material" "DE_CBBLE/GRASSFLOOR01" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -64] 0.25" + "id" "22967" + "plane" "(-856 -392 48) (-832 -416 48) (-848 -416 48)" + "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" "46111" - "plane" "(-2048 -2592 -64) (-2048 -3520 -64) (-1856 -3520 -64)" + "id" "22966" + "plane" "(-864 -400 0) (-848 -416 0) (-832 -416 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46110" - "plane" "(-1856 -2592 -64) (-1856 -3520 -64) (-1856 -3520 -48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22965" + "plane" "(-856 -392 0) (-832 -416 0) (-832 -416 48)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46109" - "plane" "(-2048 -3520 -64) (-2048 -2592 -64) (-2048 -2592 -48)" + "id" "22964" + "plane" "(-832 -416 0) (-848 -416 0) (-848 -416 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129952,10 +134200,10 @@ world } side { - "id" "46108" - "plane" "(-1856 -3520 -64) (-2048 -3520 -64) (-2048 -3520 -48)" + "id" "22963" + "plane" "(-848 -416 0) (-864 -400 0) (-864 -400 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -129963,30 +134211,31 @@ world } side { - "id" "46107" - "plane" "(-2048 -2592 -64) (-1856 -2592 -64) (-1856 -2592 -48)" - "material" "DE_CBBLE/GRASSFLOOR01" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" + "id" "22962" + "plane" "(-864 -400 0) (-856 -392 0) (-856 -392 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "89921" + "id" "28828" side { - "id" "46130" - "plane" "(880 -1200 256) (880 -1184 256) (896 -1184 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "22991" + "plane" "(-864 -400 32) (-896 -368 32) (-888 -360 32)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -129995,8 +134244,8 @@ world } side { - "id" "46129" - "plane" "(880 -1184 64) (880 -1200 64) (896 -1204 64)" + "id" "22990" + "plane" "(-856 -392 0) (-888 -360 0) (-896 -368 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -130006,10 +134255,10 @@ world } side { - "id" "46128" - "plane" "(880 -1184 64) (880 -1184 256) (880 -1200 256)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 -128] 0.25" + "id" "22989" + "plane" "(-888 -360 0) (-856 -392 0) (-856 -392 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130017,10 +134266,10 @@ world } side { - "id" "46127" - "plane" "(896 -1184 256) (896 -1184 64) (896 -1204 64)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 -128] 0.25" + "id" "22988" + "plane" "(-896 -368 0) (-888 -360 0) (-888 -360 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130028,10 +134277,10 @@ world } side { - "id" "46126" - "plane" "(896 -1184 64) (896 -1184 256) (880 -1184 256)" + "id" "22987" + "plane" "(-864 -400 0) (-896 -368 0) (-896 -368 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130039,10 +134288,10 @@ world } side { - "id" "46125" - "plane" "(896 -1204 256) (896 -1204 64) (880 -1200 64)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "id" "22986" + "plane" "(-856 -392 0) (-864 -400 0) (-864 -400 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130050,41 +134299,42 @@ world } editor { - "color" "0 125 202" + "color" "0 198 239" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "89931" + "id" "28836" side { - "id" "46148" - "plane" "(766 -1184 256) (718 -1360 256) (706 -1360 256)" + "id" "23003" + "plane" "(-872 -408 128) (-904 -376 128) (-896 -368 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46147" - "plane" "(718 -1360 224) (766 -1184 224) (754 -1184 224)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "23002" + "plane" "(-864 -400 32) (-896 -368 32) (-904 -376 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46146" - "plane" "(754 -1184 256) (706 -1360 256) (706 -1360 224)" - "material" "DEV/REFLECTIVITY_30B" + "id" "23001" + "plane" "(-896 -368 32) (-864 -400 32) (-864 -400 128)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -130093,10 +134343,10 @@ world } side { - "id" "46145" - "plane" "(718 -1360 256) (766 -1184 256) (766 -1184 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "23000" + "plane" "(-904 -376 32) (-896 -368 32) (-896 -368 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130104,10 +134354,10 @@ world } side { - "id" "46144" - "plane" "(706 -1360 256) (718 -1360 256) (718 -1360 224)" + "id" "22999" + "plane" "(-872 -408 32) (-904 -376 32) (-904 -376 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130115,10 +134365,10 @@ world } side { - "id" "46143" - "plane" "(766 -1184 256) (754 -1184 256) (754 -1184 224)" + "id" "22998" + "plane" "(-864 -400 32) (-872 -408 32) (-872 -408 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130126,19 +134376,20 @@ world } editor { - "color" "0 125 202" + "color" "0 164 221" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "89932" + "id" "28845" side { - "id" "46430" - "plane" "(768 -1160 256) (766 -1184 256) (754 -1184 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23015" + "plane" "(-856 -392 136) (-888 -360 136) (-888 -352 136)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -130147,9 +134398,9 @@ world } side { - "id" "46429" - "plane" "(766 -1184 64) (768 -1160 64) (752 -1152 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23014" + "plane" "(-848 -392 132) (-888 -352 132) (-888 -360 128)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -130158,8 +134409,8 @@ world } side { - "id" "46428" - "plane" "(752 -1152 256) (754 -1184 256) (754 -1184 64)" + "id" "23013" + "plane" "(-888 -352 132) (-848 -392 132) (-848 -392 136)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -130169,8 +134420,8 @@ world } side { - "id" "46427" - "plane" "(766 -1184 256) (768 -1160 256) (768 -1160 64)" + "id" "23012" + "plane" "(-888 -360 128) (-888 -352 132) (-888 -352 136)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -130180,20 +134431,20 @@ world } side { - "id" "46426" - "plane" "(768 -1160 256) (752 -1152 256) (752 -1152 64)" + "id" "23011" + "plane" "(-856 -392 128) (-888 -360 128) (-888 -360 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46425" - "plane" "(754 -1184 256) (766 -1184 256) (766 -1184 64)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23010" + "plane" "(-856 -392 136) (-848 -392 136) (-848 -392 132)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -130202,40 +134453,41 @@ world } editor { - "color" "0 125 202" + "color" "0 164 221" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90070" + "id" "28852" side { - "id" "46286" - "plane" "(736 -1294 224) (727 -1327 224) (715 -1327 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -36] 0.25" - "vaxis" "[0 -1 0 36] 0.25" + "id" "23027" + "plane" "(-832 -416 256) (-960 -288 256) (-960 -280 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46285" - "plane" "(727 -1327 177) (735.998 -1294 214) (723.997 -1294 214)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -36] 0.25" - "vaxis" "[0 -1 0 36] 0.25" + "id" "23026" + "plane" "(-828 -412 252) (-960 -280 252) (-960 -288 248)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46284" - "plane" "(724 -1294 224) (715 -1327 224) (715 -1327 177)" + "id" "23025" + "plane" "(-960 -280 252) (-828 -412 252) (-828 -412 256)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -130245,10 +134497,10 @@ world } side { - "id" "46283" - "plane" "(727 -1327 224) (736 -1294 224) (735.998 -1294 214)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "23024" + "plane" "(-960 -288 248) (-960 -280 252) (-960 -280 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130256,10 +134508,10 @@ world } side { - "id" "46282" - "plane" "(715 -1327 224) (727 -1327 224) (727 -1327 177)" + "id" "23023" + "plane" "(-832 -416 248) (-960 -288 248) (-960 -288 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -36] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130267,10 +134519,10 @@ world } side { - "id" "46281" - "plane" "(736 -1294 224) (724 -1294 224) (723.997 -1294 214)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -36] 0.25" + "id" "23022" + "plane" "(-832 -416 256) (-828 -412 256) (-828 -412 252)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130278,42 +134530,43 @@ world } editor { - "color" "0 125 202" + "color" "0 164 221" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90073" + "id" "28856" side { - "id" "46304" - "plane" "(745 -1217 224) (757 -1217 224) (748 -1250 224)" + "id" "23039" + "plane" "(-1024 -288 160) (-1024 -272 160) (-960 -272 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 28] 0.25" - "vaxis" "[0 1 0 36] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46303" - "plane" "(736 -1250 214) (748 -1250 214) (757 -1217 177)" + "id" "23038" + "plane" "(-1024 -272 32) (-1024 -288 32) (-960 -288 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 28] 0.25" - "vaxis" "[0 1 0 36] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46302" - "plane" "(748 -1250 214) (748 -1250 224) (757 -1217 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "23037" + "plane" "(-1024 -288 32) (-1024 -272 32) (-1024 -272 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130321,32 +134574,32 @@ world } side { - "id" "46301" - "plane" "(736 -1250 224) (736 -1250 214) (745 -1217 177)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23036" + "plane" "(-960 -272 32) (-960 -288 32) (-960 -288 160)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46300" - "plane" "(757 -1217 177) (757 -1217 224) (745 -1217 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 28] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23035" + "plane" "(-1024 -272 32) (-960 -272 32) (-960 -272 160)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46299" - "plane" "(736 -1250 214) (736 -1250 224) (748 -1250 224)" + "id" "23034" + "plane" "(-960 -288 32) (-1024 -288 32) (-1024 -288 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 28] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130354,42 +134607,43 @@ world } editor { - "color" "0 125 202" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90079" + "id" "28860" side { - "id" "46322" - "plane" "(736 -1294 224) (724 -1294 224) (736 -1250 224)" + "id" "23051" + "plane" "(-1024 -144 160) (-1024 -128 160) (-960 -128 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -20] 0.25" - "vaxis" "[0 1 0 20] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46321" - "plane" "(748 -1250 218) (736 -1250 218) (724.002 -1294 218)" + "id" "23050" + "plane" "(-1024 -128 32) (-1024 -144 32) (-960 -144 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -20] 0.25" - "vaxis" "[0 1 0 20] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46320" - "plane" "(736.003 -1294 218) (736 -1294 224) (748 -1250 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "23049" + "plane" "(-1024 -144 32) (-1024 -128 32) (-1024 -128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130397,21 +134651,21 @@ world } side { - "id" "46319" - "plane" "(736 -1250 218) (736 -1250 224) (724 -1294 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23048" + "plane" "(-960 -128 32) (-960 -144 32) (-960 -144 160)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46318" - "plane" "(748 -1250 218) (748 -1250 224) (736 -1250 224)" + "id" "23047" + "plane" "(-1024 -128 32) (-960 -128 32) (-960 -128 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -20] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130419,53 +134673,54 @@ world } side { - "id" "46317" - "plane" "(724.002 -1294 218) (724 -1294 224) (736 -1294 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -20] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23046" + "plane" "(-960 -144 32) (-1024 -144 32) (-1024 -144 160)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 125 202" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90083" + "id" "28861" side { - "id" "46323" - "plane" "(754 -1224.85 186) (823.345 -1170.67 186) (825.808 -1173.82 186)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.788011 0.615662 0 -14.6686] 0.25" - "vaxis" "[0.615662 -0.788011 0 10.8477] 0.25" + "id" "23063" + "plane" "(-1024 -272 160) (-1024 -144 160) (-976 -144 160)" + "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" "46324" - "plane" "(756.463 -1228 64) (825.808 -1173.82 64) (823.345 -1170.67 64)" + "id" "23062" + "plane" "(-1024 -144 32) (-1024 -272 32) (-976 -272 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.788011 0.615662 0 -0.272707] 0.25" - "vaxis" "[0.615662 -0.788011 0 26.3911] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46325" - "plane" "(754 -1224.85 186) (756.463 -1228 186) (756.463 -1228 64)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.615662 0.788011 0 -10.8477] 0.25" + "id" "23061" + "plane" "(-1024 -272 32) (-1024 -144 32) (-1024 -144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130473,21 +134728,21 @@ world } side { - "id" "46326" - "plane" "(823.345 -1170.67 64) (825.808 -1173.82 64) (825.808 -1173.82 186)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-0.615662 0.788011 0 -10.8477] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23060" + "plane" "(-976 -144 32) (-976 -272 32) (-976 -272 160)" + "material" "CS_ASSAULT/METALWALL002A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46327" - "plane" "(823.345 -1170.67 186) (754 -1224.85 186) (754 -1224.85 64)" + "id" "23059" + "plane" "(-1024 -144 32) (-976 -144 32) (-976 -144 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.788011 0.615662 0 -0.272707] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130495,10 +134750,10 @@ world } side { - "id" "46328" - "plane" "(825.808 -1173.82 64) (756.463 -1228 64) (756.463 -1228 186)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.788011 0.615662 0 0] 0.25" + "id" "23058" + "plane" "(-976 -272 32) (-1024 -272 32) (-1024 -272 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130506,118 +134761,120 @@ world } editor { - "color" "0 199 224" + "color" "0 102 211" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90089" + "id" "28887" side { - "id" "46340" - "plane" "(749 -1217 218) (753 -1217 218) (722.997 -1327 218)" + "id" "23111" + "plane" "(-1024 -176 160) (-1024 -144 160) (-960 -144 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -20] 0.25" - "vaxis" "[0 1 0 20] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46339" - "plane" "(718.999 -1327 182) (723 -1327 182) (753 -1217 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -20] 0.25" - "vaxis" "[0 1 0 20] 0.25" + "id" "23110" + "plane" "(-1024 -144 128) (-1024 -176 136) (-960 -176 136)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0.970142 -0.242536 341.96] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46338" - "plane" "(753 -1217 218) (753 -1217 182) (723 -1327 182)" - "material" "CS_ASSAULT/METALWALL002A" - "uaxis" "[0 -1 0 256] 0.25" - "vaxis" "[0 0 -1 128] 0.25" + "id" "23109" + "plane" "(-1024 -144 160) (-1024 -176 160) (-1024 -176 136)" + "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" "46337" - "plane" "(718.997 -1327 218) (718.999 -1327 182) (749 -1217 182)" - "material" "CS_ASSAULT/METALWALL002A" - "uaxis" "[0 -1 0 256] 0.25" - "vaxis" "[0 0 -1 128] 0.25" + "id" "23108" + "plane" "(-960 -144 128) (-960 -176 136) (-960 -176 160)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46336" - "plane" "(749 -1217 218) (749 -1217 182) (753 -1217 182)" + "id" "23107" + "plane" "(-1024 -144 128) (-960 -144 128) (-960 -144 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -20] 0.25" - "vaxis" "[0 0 -1 -24] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46335" - "plane" "(722.997 -1327 218) (723 -1327 182) (718.999 -1327 182)" + "id" "23106" + "plane" "(-960 -176 136) (-1024 -176 136) (-1024 -176 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -20] 0.25" - "vaxis" "[0 0 -1 -24] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 125 202" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90095" + "id" "28888" side { - "id" "46352" - "plane" "(754 -1217 182) (724 -1327 182) (718 -1327 182)" + "id" "23117" + "plane" "(-1024 -272 160) (-1024 -240 160) (-960 -240 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -20] 0.25" - "vaxis" "[0 1 0 20] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46351" - "plane" "(724.003 -1327 180) (754 -1217 180) (748 -1217 180)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "23116" + "plane" "(-1024 -240 136) (-1024 -272 128) (-960 -272 128)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0.970142 0.242536 -202.083] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46350" - "plane" "(754 -1217 180) (724.003 -1327 180) (724 -1327 182)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "23115" + "plane" "(-1024 -272 128) (-1024 -240 136) (-1024 -240 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130625,51 +134882,52 @@ world } side { - "id" "46349" - "plane" "(718.002 -1327 180) (748 -1217 180) (748 -1217 182)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23114" + "plane" "(-960 -272 160) (-960 -240 160) (-960 -240 136)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46348" - "plane" "(748 -1217 180) (754 -1217 180) (754 -1217 182)" + "id" "23113" + "plane" "(-960 -272 128) (-1024 -272 128) (-1024 -272 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -20] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46347" - "plane" "(724.003 -1327 180) (718.002 -1327 180) (718 -1327 182)" + "id" "23112" + "plane" "(-1024 -240 136) (-960 -240 136) (-960 -240 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -20] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 125 202" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90153" + "id" "28889" side { - "id" "46364" - "plane" "(768 -1184 280) (720 -1360 280) (704 -1360 280)" + "id" "23123" + "plane" "(-1024 -240 160) (-1024 -208 160) (-960 -208 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -130679,20 +134937,20 @@ world } side { - "id" "46363" - "plane" "(728 -1360 256) (776 -1184 256) (744 -1184 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 -15] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "23122" + "plane" "(-1024 -208 138) (-1024 -240 136) (-960 -240 136)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0.998052 0.0623794 47.514] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46362" - "plane" "(752 -1184 280) (704 -1360 280) (696 -1360 256)" - "material" "DEV/REFLECTIVITY_10B" + "id" "23121" + "plane" "(-1024 -240 136) (-1024 -208 138) (-1024 -208 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -130701,19 +134959,19 @@ world } side { - "id" "46361" - "plane" "(720 -1360 280) (768 -1184 280) (776 -1184 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 -15] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23120" + "plane" "(-960 -240 160) (-960 -208 160) (-960 -208 138)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46360" - "plane" "(704 -1360 280) (720 -1360 280) (728 -1360 256)" + "id" "23119" + "plane" "(-1024 -208 138) (-960 -208 138) (-960 -208 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -130723,8 +134981,8 @@ world } side { - "id" "46359" - "plane" "(768 -1184 280) (752 -1184 280) (744 -1184 256)" + "id" "23118" + "plane" "(-960 -240 136) (-1024 -240 136) (-1024 -240 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -130734,18 +134992,19 @@ world } editor { - "color" "0 125 202" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90169" + "id" "28890" side { - "id" "46376" - "plane" "(720 -1392 280) (703.999 -1392 280) (704 -1360 280)" + "id" "23129" + "plane" "(-1024 -208 160) (-1024 -176 160) (-960 -176 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -130755,20 +135014,20 @@ world } side { - "id" "46375" - "plane" "(728 -1360 256) (696 -1360 256) (696 -1392 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 -15] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "23128" + "plane" "(-1024 -176 136) (-1024 -208 138) (-960 -208 138)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0.998052 -0.0623775 185.246] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46374" - "plane" "(703.999 -1392 280) (696 -1392 256) (696 -1360 256)" - "material" "DEV/REFLECTIVITY_10B" + "id" "23127" + "plane" "(-1024 -176 160) (-1024 -208 160) (-1024 -208 138)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -130777,19 +135036,19 @@ world } side { - "id" "46373" - "plane" "(720 -1360 280) (728 -1360 256) (728 -1392 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 17] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23126" + "plane" "(-960 -176 136) (-960 -208 138) (-960 -208 160)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46372" - "plane" "(720 -1392 280) (728 -1392 256) (696 -1392 256)" + "id" "23125" + "plane" "(-960 -208 138) (-1024 -208 138) (-1024 -208 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -130799,8 +135058,8 @@ world } side { - "id" "46371" - "plane" "(704 -1360 280) (696 -1360 256) (728 -1360 256)" + "id" "23124" + "plane" "(-1024 -176 136) (-960 -176 136) (-960 -176 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -130810,31 +135069,32 @@ world } editor { - "color" "0 125 202" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90171" + "id" "28902" side { - "id" "46388" - "plane" "(768 -1184 280) (751.999 -1184 280) (752 -1152 280)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23141" + "plane" "(-976 -272 32) (-976 -144 32) (-960 -144 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46387" - "plane" "(776 -1152 256) (744 -1152 256) (744 -1184 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 -15] 0.25" + "id" "23140" + "plane" "(-976 -144 0) (-976 -272 0) (-960 -272 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130842,9 +135102,9 @@ world } side { - "id" "46386" - "plane" "(751.999 -1184 280) (744 -1184 256) (744 -1152 256)" - "material" "DEV/REFLECTIVITY_10B" + "id" "23139" + "plane" "(-976 -272 0) (-976 -144 0) (-976 -144 32)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -130853,10 +135113,10 @@ world } side { - "id" "46385" - "plane" "(768 -1152 280) (776 -1152 256) (776 -1184 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 -15] 0.25" + "id" "23138" + "plane" "(-960 -144 0) (-960 -272 0) (-960 -272 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130864,8 +135124,8 @@ world } side { - "id" "46384" - "plane" "(768 -1184 280) (776 -1184 256) (744 -1184 256)" + "id" "23137" + "plane" "(-976 -144 0) (-960 -144 0) (-960 -144 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -130875,8 +135135,8 @@ world } side { - "id" "46383" - "plane" "(752 -1152 280) (744 -1152 256) (776 -1152 256)" + "id" "23136" + "plane" "(-960 -272 0) (-976 -272 0) (-976 -272 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -130886,42 +135146,43 @@ world } editor { - "color" "0 125 202" + "color" "0 138 183" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90210" + "id" "28938" side { - "id" "46454" - "plane" "(766 -1184 224) (757 -1217 224) (745 -1217 224)" + "id" "23153" + "plane" "(-1024 -288 164) (-1024 -128 164) (-960 -128 164)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46453" - "plane" "(766 -1184 224) (766 -1184 112) (757 -1217 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23152" + "plane" "(-1024 -128 160) (-1024 -288 160) (-960 -288 160)" + "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" "46452" - "plane" "(745 -1217 224) (745 -1217 112) (754 -1184 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "23151" + "plane" "(-1024 -288 160) (-1024 -128 160) (-1024 -128 164)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130929,21 +135190,21 @@ world } side { - "id" "46451" - "plane" "(754 -1184 224) (754 -1184 112) (766 -1184 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23150" + "plane" "(-960 -128 160) (-960 -288 160) (-960 -288 164)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46450" - "plane" "(757 -1217 224) (757 -1217 112) (745 -1217 112)" + "id" "23149" + "plane" "(-1024 -128 160) (-960 -128 160) (-960 -128 164)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -130951,75 +135212,76 @@ world } side { - "id" "46449" - "plane" "(757 -1217 112) (766 -1184 112) (754 -1184 112)" + "id" "23148" + "plane" "(-960 -288 160) (-1024 -288 160) (-1024 -288 164)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 125 202" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90211" + "id" "28942" side { - "id" "46460" - "plane" "(754 -1184 64) (745 -1217 64) (757 -1217 64)" + "id" "23165" + "plane" "(-1024 -288 244) (-1024 -268 244) (-960 -268 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46459" - "plane" "(766 -1184 64) (757 -1217 64) (757 -1217 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23164" + "plane" "(-1024 -268 164) (-1024 -288 164) (-960 -288 164)" + "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" "46458" - "plane" "(745 -1217 64) (754 -1184 64) (754 -1184 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23163" + "plane" "(-1024 -288 164) (-1024 -268 164) (-1024 -268 244)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46457" - "plane" "(754 -1184 64) (766 -1184 64) (766 -1184 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23162" + "plane" "(-960 -268 164) (-960 -288 164) (-960 -288 244)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46456" - "plane" "(757 -1217 64) (745 -1217 64) (745 -1217 112)" + "id" "23161" + "plane" "(-1024 -268 164) (-960 -268 164) (-960 -268 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131027,149 +135289,151 @@ world } side { - "id" "46455" - "plane" "(745 -1217 112) (754 -1184 112) (766 -1184 112)" + "id" "23160" + "plane" "(-960 -288 164) (-1024 -288 164) (-1024 -288 244)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 125 202" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90212" + "id" "28945" side { - "id" "46466" - "plane" "(706 -1360 224) (715 -1327 224) (727 -1327 224)" + "id" "23177" + "plane" "(-1024 -148 244) (-1024 -128 244) (-960 -128 244)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46465" - "plane" "(715 -1327 112) (715 -1327 224) (706 -1360 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23176" + "plane" "(-1024 -128 164) (-1024 -148 164) (-960 -148 164)" + "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" "46464" - "plane" "(718 -1360 112) (718 -1360 224) (727 -1327 224)" - "material" "DEV/REFLECTIVITY_30B" + "id" "23175" + "plane" "(-1024 -148 164) (-1024 -128 164) (-1024 -128 244)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46463" - "plane" "(706 -1360 112) (706 -1360 224) (718 -1360 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23174" + "plane" "(-960 -128 164) (-960 -148 164) (-960 -148 244)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46462" - "plane" "(727 -1327 112) (727 -1327 224) (715 -1327 224)" + "id" "23173" + "plane" "(-1024 -128 164) (-960 -128 164) (-960 -128 244)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46461" - "plane" "(715 -1327 112) (706 -1360 112) (718 -1360 112)" + "id" "23172" + "plane" "(-960 -148 164) (-1024 -148 164) (-1024 -148 244)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 125 202" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90213" + "id" "28946" side { - "id" "46472" - "plane" "(715 -1327 64) (706 -1360 64) (718 -1360 64)" + "id" "23189" + "plane" "(-1024 -228 244) (-1024 -188 244) (-960 -188 244)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46471" - "plane" "(706 -1360 64) (715 -1327 64) (715 -1327 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23188" + "plane" "(-1024 -188 164) (-1024 -228 164) (-960 -228 164)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46470" - "plane" "(727 -1327 64) (718 -1360 64) (718 -1360 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23187" + "plane" "(-1024 -228 164) (-1024 -188 164) (-1024 -188 244)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46469" - "plane" "(718 -1360 64) (706 -1360 64) (706 -1360 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23186" + "plane" "(-960 -188 164) (-960 -228 164) (-960 -228 244)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46468" - "plane" "(715 -1327 64) (727 -1327 64) (727 -1327 112)" + "id" "23185" + "plane" "(-1024 -188 164) (-960 -188 164) (-960 -188 244)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -131179,140 +135443,142 @@ world } side { - "id" "46467" - "plane" "(706 -1360 112) (715 -1327 112) (727 -1327 112)" + "id" "23184" + "plane" "(-960 -228 164) (-1024 -228 164) (-1024 -228 244)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 125 202" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90214" + "id" "28964" side { - "id" "46478" - "plane" "(896 -1472 256) (640 -1472 256) (640 -1440 256)" + "id" "23225" + "plane" "(-1024 -288 256) (-1024 -128 256) (-960 -128 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46477" - "plane" "(640 -1440 112) (640 -1440 256) (640 -1472 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23224" + "plane" "(-1024 -128 244) (-1024 -288 244) (-960 -288 244)" + "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" "46476" - "plane" "(640 -1472 112) (640 -1472 256) (896 -1472 256)" + "id" "23223" + "plane" "(-1024 -288 244) (-1024 -128 244) (-1024 -128 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46475" - "plane" "(896 -1472 112) (896 -1472 256) (704 -1376 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23222" + "plane" "(-960 -128 244) (-960 -288 244) (-960 -288 256)" + "material" "BRICK/HR_BRICK/BRICK_C" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46474" - "plane" "(704 -1376 112) (704 -1376 256) (640 -1440 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23221" + "plane" "(-1024 -128 244) (-960 -128 244) (-960 -128 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46473" - "plane" "(640 -1440 112) (640 -1472 112) (896 -1472 112)" + "id" "23220" + "plane" "(-960 -288 244) (-1024 -288 244) (-1024 -288 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90215" + "id" "28968" side { - "id" "46484" - "plane" "(640 -1440 64) (640 -1472 64) (896 -1472 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23237" + "plane" "(-1024 -328 304) (-1024 -128 304) (-984 -128 304)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46483" - "plane" "(640 -1472 64) (640 -1440 64) (640 -1440 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23236" + "plane" "(-1024 -128 256) (-1024 -328 256) (-960 -328 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46482" - "plane" "(896 -1472 64) (640 -1472 64) (640 -1472 112)" + "id" "23235" + "plane" "(-1024 -328 256) (-1024 -128 256) (-1024 -128 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46481" - "plane" "(704 -1376 64) (896 -1472 64) (896 -1472 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "23234" + "plane" "(-960 -128 256) (-960 -328 256) (-984 -328 304)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131320,64 +135586,65 @@ world } side { - "id" "46480" - "plane" "(640 -1440 64) (704 -1376 64) (704 -1376 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23233" + "plane" "(-1024 -128 256) (-960 -128 256) (-984 -128 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46479" - "plane" "(896 -1472 112) (640 -1472 112) (640 -1440 112)" + "id" "23232" + "plane" "(-960 -328 256) (-1024 -328 256) (-1024 -328 304)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 160 237" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90216" + "id" "28986" side { - "id" "46490" - "plane" "(706 -1360 256) (718 -1360 256) (720 -1384 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23285" + "plane" "(-848 -576 160) (-832 -576 160) (-960 -704 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46489" - "plane" "(706 -1360 256) (704 -1376 256) (704 -1376 112)" + "id" "23284" + "plane" "(-976 -704 128) (-960 -704 128) (-832 -576 128)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46488" - "plane" "(720 -1384 256) (718 -1360 256) (718 -1360 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "23283" + "plane" "(-832 -576 128) (-960 -704 128) (-960 -704 160)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131385,9 +135652,9 @@ world } side { - "id" "46487" - "plane" "(704 -1376 256) (720 -1384 256) (720 -1384 112)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23282" + "plane" "(-960 -704 128) (-976 -704 128) (-976 -704 160)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -131396,9 +135663,9 @@ world } side { - "id" "46486" - "plane" "(718 -1360 256) (706 -1360 256) (706 -1360 112)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23281" + "plane" "(-848 -576 128) (-832 -576 128) (-832 -576 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -131407,53 +135674,54 @@ world } side { - "id" "46485" - "plane" "(704 -1376 112) (720 -1384 112) (718 -1360 112)" + "id" "23280" + "plane" "(-976 -704 128) (-848 -576 128) (-848 -576 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 125 202" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90217" + "id" "28987" side { - "id" "46496" - "plane" "(704 -1376 64) (720 -1384 64) (718 -1360 64)" + "id" "23291" + "plane" "(-864 -592 240) (-848 -576 240) (-832 -576 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46495" - "plane" "(704 -1376 64) (706 -1360 64) (706 -1360 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23290" + "plane" "(-856 -600 160) (-832 -576 160) (-848 -576 160)" + "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" "46494" - "plane" "(718 -1360 64) (720 -1384 64) (720 -1384 112)" + "id" "23289" + "plane" "(-832 -576 160) (-856 -600 160) (-856 -600 240)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131461,8 +135729,8 @@ world } side { - "id" "46493" - "plane" "(720 -1384 64) (704 -1376 64) (704 -1376 112)" + "id" "23288" + "plane" "(-848 -576 160) (-832 -576 160) (-832 -576 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -131472,10 +135740,10 @@ world } side { - "id" "46492" - "plane" "(706 -1360 64) (718 -1360 64) (718 -1360 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "23287" + "plane" "(-864 -592 160) (-848 -576 160) (-848 -576 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131483,53 +135751,54 @@ world } side { - "id" "46491" - "plane" "(706 -1360 112) (718 -1360 112) (720 -1384 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "23286" + "plane" "(-856 -600 160) (-864 -592 160) (-864 -592 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 125 202" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90253" + "id" "28989" side { - "id" "46502" - "plane" "(640 -1728 64) (640 -1920 64) (704 -1920 64)" + "id" "23297" + "plane" "(-952 -664 240) (-928 -640 240) (-920 -648 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46501" - "plane" "(640 -1920 64) (640 -1728 64) (640 -1728 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23296" + "plane" "(-928 -640 160) (-952 -664 160) (-944 -672 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46500" - "plane" "(704 -1728 64) (704 -1920 64) (704 -1920 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "23295" + "plane" "(-920 -648 160) (-944 -672 160) (-944 -672 240)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131537,10 +135806,10 @@ world } side { - "id" "46499" - "plane" "(640 -1728 64) (704 -1728 64) (704 -1728 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "23294" + "plane" "(-952 -664 160) (-928 -640 160) (-928 -640 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131548,10 +135817,10 @@ world } side { - "id" "46498" - "plane" "(704 -1920 64) (640 -1920 64) (640 -1920 112)" + "id" "23293" + "plane" "(-928 -640 160) (-920 -648 160) (-920 -648 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131559,53 +135828,55 @@ world } side { - "id" "46497" - "plane" "(640 -1920 112) (640 -1728 112) (704 -1728 112)" + "id" "23292" + "plane" "(-944 -672 160) (-952 -664 160) (-952 -664 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "190 203 0" + "groupid" "28988" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90254" + "id" "28990" side { - "id" "46508" - "plane" "(640 -1920 256) (640 -1856 256) (704 -1856 256)" + "id" "23303" + "plane" "(-896 -608 240) (-872 -584 240) (-864 -592 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46507" - "plane" "(640 -1856 112) (640 -1856 256) (640 -1920 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23302" + "plane" "(-872 -584 160) (-896 -608 160) (-888 -616 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46506" - "plane" "(704 -1920 112) (704 -1920 256) (704 -1856 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "23301" + "plane" "(-864 -592 160) (-888 -616 160) (-888 -616 240)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131613,10 +135884,10 @@ world } side { - "id" "46505" - "plane" "(704 -1856 112) (704 -1856 256) (640 -1856 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "23300" + "plane" "(-896 -608 160) (-872 -584 160) (-872 -584 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131624,10 +135895,10 @@ world } side { - "id" "46504" - "plane" "(640 -1920 112) (640 -1920 256) (704 -1920 256)" + "id" "23299" + "plane" "(-872 -584 160) (-864 -592 160) (-864 -592 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131635,53 +135906,55 @@ world } side { - "id" "46503" - "plane" "(640 -1856 112) (640 -1920 112) (704 -1920 112)" + "id" "23298" + "plane" "(-888 -616 160) (-896 -608 160) (-896 -608 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "190 203 0" + "groupid" "28988" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90270" + "id" "28991" side { - "id" "46544" - "plane" "(640 -1728 256) (640 -1664 256) (704 -1664 256)" + "id" "23309" + "plane" "(-920 -648 240) (-888 -616 240) (-880 -624 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46543" - "plane" "(640 -1664 192) (640 -1664 256) (640 -1728 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23308" + "plane" "(-888 -616 160) (-920 -648 160) (-912 -656 160)" + "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" "46542" - "plane" "(704 -1728 192) (704 -1728 256) (704 -1664 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "23307" + "plane" "(-880 -624 160) (-912 -656 160) (-912 -656 240)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131689,10 +135962,10 @@ world } side { - "id" "46541" - "plane" "(704 -1664 192) (704 -1664 256) (640 -1664 256)" + "id" "23306" + "plane" "(-920 -648 160) (-888 -616 160) (-888 -616 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131700,10 +135973,10 @@ world } side { - "id" "46540" - "plane" "(640 -1728 192) (640 -1728 256) (704 -1728 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "23305" + "plane" "(-888 -616 160) (-880 -624 160) (-880 -624 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131711,53 +135984,54 @@ world } side { - "id" "46539" - "plane" "(640 -1664 192) (640 -1728 192) (704 -1728 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "23304" + "plane" "(-912 -656 160) (-920 -648 160) (-920 -648 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90301" + "id" "28992" side { - "id" "46592" - "plane" "(704 -1712 192) (640 -1712 192) (640 -1696 192)" + "id" "23315" + "plane" "(-936 -680 240) (-960 -704 240) (-976 -704 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46591" - "plane" "(640 -1712 192) (640 -1712 176) (640 -1696 180)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23314" + "plane" "(-944 -672 160) (-976 -704 160) (-960 -704 160)" + "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" "46590" - "plane" "(704 -1712 176) (704 -1712 192) (704 -1696 192)" + "id" "23313" + "plane" "(-936 -680 160) (-960 -704 160) (-960 -704 240)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131765,21 +136039,21 @@ world } side { - "id" "46589" - "plane" "(640 -1712 176) (704 -1712 176) (704 -1696 180)" + "id" "23312" + "plane" "(-960 -704 160) (-976 -704 160) (-976 -704 240)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46588" - "plane" "(704 -1696 192) (640 -1696 192) (640 -1696 180)" + "id" "23311" + "plane" "(-976 -704 160) (-944 -672 160) (-944 -672 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131787,10 +136061,10 @@ world } side { - "id" "46587" - "plane" "(640 -1712 192) (704 -1712 192) (704 -1712 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "23310" + "plane" "(-944 -672 160) (-936 -680 160) (-936 -680 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131798,42 +136072,43 @@ world } editor { - "color" "0 176 105" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90302" + "id" "28993" side { - "id" "46598" - "plane" "(640 -1728 192) (640 -1712 192) (704 -1712 192)" + "id" "23321" + "plane" "(-848 -576 256) (-832 -576 256) (-960 -704 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46597" - "plane" "(640 -1728 192) (704 -1728 192) (704 -1728 168)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23320" + "plane" "(-976 -704 240) (-960 -704 240) (-832 -576 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46596" - "plane" "(640 -1728 192) (640 -1728 168) (640 -1712 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "23319" + "plane" "(-832 -576 240) (-960 -704 240) (-960 -704 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131841,10 +136116,10 @@ world } side { - "id" "46595" - "plane" "(704 -1728 192) (704 -1712 192) (704 -1712 176)" + "id" "23318" + "plane" "(-960 -704 240) (-976 -704 240) (-976 -704 256)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131852,21 +136127,21 @@ world } side { - "id" "46594" - "plane" "(640 -1728 168) (704 -1728 168) (704 -1712 176)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "23317" + "plane" "(-848 -576 240) (-832 -576 240) (-832 -576 256)" + "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" "46593" - "plane" "(704 -1712 192) (640 -1712 192) (640 -1712 176)" + "id" "23316" + "plane" "(-976 -704 240) (-848 -576 240) (-848 -576 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131874,42 +136149,43 @@ world } editor { - "color" "0 176 105" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90303" + "id" "29010" side { - "id" "46604" - "plane" "(704 -1696 192) (640 -1696 192) (640 -1680 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "23363" + "plane" "(-848 -576 48) (-832 -576 48) (-960 -704 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46603" - "plane" "(640 -1680 176) (640 -1680 192) (640 -1696 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23362" + "plane" "(-976 -704 16) (-960 -704 16) (-832 -576 16)" + "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" "46602" - "plane" "(704 -1696 180) (704 -1696 192) (704 -1680 192)" + "id" "23361" + "plane" "(-832 -576 16) (-960 -704 16) (-960 -704 48)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131917,21 +136193,21 @@ world } side { - "id" "46601" - "plane" "(640 -1696 180) (704 -1696 180) (704 -1680 176)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "23360" + "plane" "(-960 -704 16) (-976 -704 16) (-976 -704 48)" + "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" "46600" - "plane" "(640 -1696 192) (704 -1696 192) (704 -1696 180)" + "id" "23359" + "plane" "(-848 -576 16) (-832 -576 16) (-832 -576 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131939,10 +136215,10 @@ world } side { - "id" "46599" - "plane" "(704 -1680 192) (640 -1680 192) (640 -1680 176)" + "id" "23358" + "plane" "(-976 -704 16) (-848 -576 16) (-848 -576 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131950,42 +136226,43 @@ world } editor { - "color" "0 176 105" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90304" + "id" "29011" side { - "id" "46610" - "plane" "(640 -1664 192) (704 -1664 192) (704 -1680 192)" + "id" "23369" + "plane" "(-864 -592 128) (-848 -576 128) (-832 -576 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46609" - "plane" "(704 -1664 192) (640 -1664 192) (640 -1664 168)" + "id" "23368" + "plane" "(-856 -600 48) (-832 -576 48) (-848 -576 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46608" - "plane" "(640 -1664 168) (640 -1664 192) (640 -1680 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "23367" + "plane" "(-832 -576 48) (-856 -600 48) (-856 -600 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -131993,10 +136270,10 @@ world } side { - "id" "46607" - "plane" "(704 -1664 192) (704 -1664 168) (704 -1680 176)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "23366" + "plane" "(-848 -576 48) (-832 -576 48) (-832 -576 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132004,21 +136281,21 @@ world } side { - "id" "46606" - "plane" "(704 -1664 168) (640 -1664 168) (640 -1680 176)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "23365" + "plane" "(-864 -592 48) (-848 -576 48) (-848 -576 128)" + "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" "46605" - "plane" "(640 -1680 192) (704 -1680 192) (704 -1680 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "23364" + "plane" "(-856 -600 48) (-864 -592 48) (-864 -592 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132026,42 +136303,43 @@ world } editor { - "color" "0 176 105" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90313" + "id" "29013" side { - "id" "46622" - "plane" "(704 -1728 64) (640 -1728 64) (640 -1664 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "23375" + "plane" "(-952 -664 128) (-928 -640 128) (-920 -648 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46621" - "plane" "(704 -1664 0) (640 -1664 0) (640 -1728 0)" + "id" "23374" + "plane" "(-928 -640 48) (-952 -664 48) (-944 -672 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46620" - "plane" "(640 -1728 0) (640 -1664 0) (640 -1664 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 16] 0.25" + "id" "23373" + "plane" "(-920 -648 48) (-944 -672 48) (-944 -672 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132069,10 +136347,10 @@ world } side { - "id" "46619" - "plane" "(640 -1664 0) (704 -1664 0) (704 -1664 64)" + "id" "23372" + "plane" "(-952 -664 48) (-928 -640 48) (-928 -640 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132080,10 +136358,10 @@ world } side { - "id" "46618" - "plane" "(704 -1728 0) (640 -1728 0) (640 -1728 64)" + "id" "23371" + "plane" "(-928 -640 48) (-920 -648 48) (-920 -648 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132091,10 +136369,10 @@ world } side { - "id" "46617" - "plane" "(704 -1664 0) (704 -1728 0) (704 -1728 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 16] 0.25" + "id" "23370" + "plane" "(-944 -672 48) (-952 -664 48) (-952 -664 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132102,42 +136380,44 @@ world } editor { - "color" "0 176 105" + "color" "190 203 0" + "groupid" "29012" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90318" + "id" "29014" side { - "id" "46634" - "plane" "(656 -1664 64) (656 -1728 64) (704 -1728 64)" + "id" "23381" + "plane" "(-896 -608 128) (-872 -584 128) (-864 -592 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46633" - "plane" "(656 -1728 64) (656 -1664 64) (656 -1664 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23380" + "plane" "(-872 -584 48) (-896 -608 48) (-888 -616 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46632" - "plane" "(704 -1664 64) (704 -1728 64) (704 -1728 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "23379" + "plane" "(-864 -592 48) (-888 -616 48) (-888 -616 128)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132145,10 +136425,10 @@ world } side { - "id" "46631" - "plane" "(656 -1664 64) (704 -1664 64) (704 -1664 192)" + "id" "23378" + "plane" "(-896 -608 48) (-872 -584 48) (-872 -584 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132156,10 +136436,10 @@ world } side { - "id" "46630" - "plane" "(704 -1728 64) (656 -1728 64) (656 -1728 192)" + "id" "23377" + "plane" "(-872 -584 48) (-864 -592 48) (-864 -592 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132167,53 +136447,55 @@ world } side { - "id" "46629" - "plane" "(656 -1728 192) (656 -1664 192) (704 -1664 192)" + "id" "23376" + "plane" "(-888 -616 48) (-896 -608 48) (-896 -608 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "190 203 0" + "groupid" "29012" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90341" + "id" "29015" side { - "id" "46646" - "plane" "(640 -1792 256) (640 -1728 256) (704 -1728 256)" + "id" "23387" + "plane" "(-920 -648 128) (-888 -616 128) (-880 -624 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46645" - "plane" "(640 -1728 112) (640 -1728 256) (640 -1792 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23386" + "plane" "(-888 -616 48) (-920 -648 48) (-912 -656 48)" + "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" "46644" - "plane" "(704 -1792 112) (704 -1792 256) (704 -1728 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "23385" + "plane" "(-880 -624 48) (-912 -656 48) (-912 -656 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132221,10 +136503,10 @@ world } side { - "id" "46643" - "plane" "(704 -1728 112) (704 -1728 256) (640 -1728 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "23384" + "plane" "(-920 -648 48) (-888 -616 48) (-888 -616 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132232,10 +136514,10 @@ world } side { - "id" "46642" - "plane" "(640 -1792 112) (640 -1792 256) (704 -1792 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "23383" + "plane" "(-888 -616 48) (-880 -624 48) (-880 -624 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132243,53 +136525,54 @@ world } side { - "id" "46641" - "plane" "(640 -1728 112) (640 -1792 112) (704 -1792 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "23382" + "plane" "(-912 -656 48) (-920 -648 48) (-920 -648 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90342" + "id" "29016" side { - "id" "46658" - "plane" "(640 -1856 256) (640 -1792 256) (704 -1792 256)" + "id" "23393" + "plane" "(-936 -680 128) (-960 -704 128) (-976 -704 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46657" - "plane" "(640 -1792 208) (640 -1792 256) (640 -1856 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23392" + "plane" "(-944 -672 48) (-976 -704 48) (-960 -704 48)" + "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" "46656" - "plane" "(704 -1856 208) (704 -1856 256) (704 -1792 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "23391" + "plane" "(-936 -680 48) (-960 -704 48) (-960 -704 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132297,9 +136580,9 @@ world } side { - "id" "46655" - "plane" "(704 -1792 208) (704 -1792 256) (640 -1792 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23390" + "plane" "(-960 -704 48) (-976 -704 48) (-976 -704 128)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -132308,10 +136591,10 @@ world } side { - "id" "46654" - "plane" "(640 -1856 208) (640 -1856 256) (704 -1856 256)" + "id" "23389" + "plane" "(-976 -704 48) (-944 -672 48) (-944 -672 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132319,30 +136602,31 @@ world } side { - "id" "46653" - "plane" "(640 -1792 208) (640 -1856 208) (704 -1856 208)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "23388" + "plane" "(-944 -672 48) (-936 -680 48) (-936 -680 128)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90348" + "id" "29018" side { - "id" "46670" - "plane" "(640 -1856 128) (640 -1792 128) (704 -1792 128)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23405" + "plane" "(-1024 -704 16) (-1024 -576 16) (-832 -576 16)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -132351,19 +136635,19 @@ world } side { - "id" "46669" - "plane" "(640 -1792 112) (640 -1792 128) (640 -1856 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23404" + "plane" "(-1024 -576 0) (-1024 -704 0) (-960 -704 0)" + "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" "46668" - "plane" "(704 -1856 112) (704 -1856 128) (704 -1792 128)" + "id" "23403" + "plane" "(-1024 -704 0) (-1024 -576 0) (-1024 -576 16)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -132373,10 +136657,10 @@ world } side { - "id" "46667" - "plane" "(704 -1792 112) (704 -1792 128) (640 -1792 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "23402" + "plane" "(-832 -576 0) (-960 -704 0) (-960 -704 16)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132384,8 +136668,8 @@ world } side { - "id" "46666" - "plane" "(640 -1856 112) (640 -1856 128) (704 -1856 128)" + "id" "23401" + "plane" "(-1024 -576 0) (-832 -576 0) (-832 -576 16)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -132395,42 +136679,43 @@ world } side { - "id" "46665" - "plane" "(640 -1792 112) (640 -1856 112) (704 -1856 112)" + "id" "23400" + "plane" "(-960 -704 0) (-1024 -704 0) (-1024 -704 16)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 194 151" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90351" + "id" "29021" side { - "id" "46682" - "plane" "(656 -1856 208) (656 -1792 208) (704 -1792 208)" + "id" "23415" + "plane" "(-1216 -688 256) (-960 -688 256) (-1000 -648 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46681" - "plane" "(656 -1792 128) (656 -1792 208) (656 -1856 208)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" + "id" "23414" + "plane" "(-1176 -648 256) (-1176 -648 336) (-1216 -688 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132438,8 +136723,8 @@ world } side { - "id" "46680" - "plane" "(704 -1856 128) (704 -1856 208) (704 -1792 208)" + "id" "23413" + "plane" "(-960 -688 256) (-1000 -648 336) (-1000 -648 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -132449,9 +136734,9 @@ world } side { - "id" "46679" - "plane" "(704 -1792 128) (704 -1792 208) (656 -1792 208)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23412" + "plane" "(-1216 -688 256) (-1176 -648 336) (-1000 -648 336)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -132460,40 +136745,30 @@ world } side { - "id" "46678" - "plane" "(656 -1856 128) (656 -1856 208) (704 -1856 208)" + "id" "23411" + "plane" "(-1176 -648 256) (-1000 -648 256) (-1000 -648 336)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - side - { - "id" "46677" - "plane" "(656 -1792 128) (656 -1856 128) (704 -1856 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } editor { - "color" "0 176 105" + "color" "0 106 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90370" + "id" "29024" side { - "id" "46718" - "plane" "(640 -1472 64) (640 -1664 64) (704 -1664 64)" + "id" "23427" + "plane" "(-1216 -704 256) (-1216 -688 256) (-976 -688 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -132503,19 +136778,19 @@ world } side { - "id" "46717" - "plane" "(640 -1664 64) (640 -1472 64) (640 -1472 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23426" + "plane" "(-1216 -688 0) (-1216 -704 0) (-976 -704 0)" + "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" "46716" - "plane" "(704 -1472 64) (704 -1664 64) (704 -1664 112)" + "id" "23425" + "plane" "(-1216 -704 0) (-1216 -688 0) (-1216 -688 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -132525,10 +136800,10 @@ world } side { - "id" "46715" - "plane" "(640 -1472 64) (704 -1472 64) (704 -1472 112)" + "id" "23424" + "plane" "(-976 -688 0) (-976 -704 0) (-976 -704 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132536,9 +136811,9 @@ world } side { - "id" "46714" - "plane" "(704 -1664 64) (640 -1664 64) (640 -1664 112)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23423" + "plane" "(-1216 -688 0) (-976 -688 0) (-976 -688 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -132547,53 +136822,54 @@ world } side { - "id" "46713" - "plane" "(640 -1664 112) (640 -1472 112) (704 -1472 112)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23422" + "plane" "(-976 -704 0) (-1216 -704 0) (-1216 -704 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 238 147" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90371" + "id" "29061" side { - "id" "46724" - "plane" "(640 -1536 256) (640 -1472 256) (704 -1472 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23554" + "plane" "(-852 -604 160) (-876 -628 160) (-880 -624 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46723" - "plane" "(640 -1472 112) (640 -1472 256) (640 -1536 256)" + "id" "23553" + "plane" "(-856 -600 152) (-880 -624 152) (-876 -628 156)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46722" - "plane" "(704 -1536 112) (704 -1536 256) (704 -1472 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "23552" + "plane" "(-852 -604 156) (-876 -628 156) (-876 -628 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132601,10 +136877,10 @@ world } side { - "id" "46721" - "plane" "(704 -1472 112) (704 -1472 256) (640 -1472 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "23551" + "plane" "(-880 -624 160) (-876 -628 160) (-876 -628 156)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132612,10 +136888,10 @@ world } side { - "id" "46720" - "plane" "(640 -1536 112) (640 -1536 256) (704 -1536 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "23550" + "plane" "(-880 -624 152) (-856 -600 152) (-856 -600 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132623,53 +136899,54 @@ world } side { - "id" "46719" - "plane" "(640 -1472 112) (640 -1536 112) (704 -1536 112)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23549" + "plane" "(-856 -600 152) (-852 -604 156) (-852 -604 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 164 221" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90372" + "id" "29062" side { - "id" "46730" - "plane" "(640 -1600 128) (640 -1536 128) (704 -1536 128)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23560" + "plane" "(-908 -660 160) (-932 -684 160) (-936 -680 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46729" - "plane" "(640 -1536 112) (640 -1536 128) (640 -1600 128)" + "id" "23559" + "plane" "(-912 -656 152) (-936 -680 152) (-932 -684 156)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46728" - "plane" "(704 -1600 112) (704 -1600 128) (704 -1536 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "23558" + "plane" "(-908 -660 156) (-932 -684 156) (-932 -684 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132677,10 +136954,10 @@ world } side { - "id" "46727" - "plane" "(704 -1536 112) (704 -1536 128) (640 -1536 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "23557" + "plane" "(-936 -680 160) (-932 -684 160) (-932 -684 156)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132688,10 +136965,10 @@ world } side { - "id" "46726" - "plane" "(640 -1600 112) (640 -1600 128) (704 -1600 128)" + "id" "23556" + "plane" "(-936 -680 152) (-912 -656 152) (-912 -656 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132699,53 +136976,54 @@ world } side { - "id" "46725" - "plane" "(640 -1536 112) (640 -1600 112) (704 -1600 112)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23555" + "plane" "(-912 -656 152) (-908 -660 156) (-908 -660 160)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 164 221" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90373" + "id" "29067" side { - "id" "46736" - "plane" "(640 -1664 256) (640 -1600 256) (704 -1600 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23578" + "plane" "(-852 -604 48) (-876 -628 48) (-880 -624 48)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46735" - "plane" "(640 -1600 112) (640 -1600 256) (640 -1664 256)" + "id" "23577" + "plane" "(-856 -600 40) (-880 -624 40) (-876 -628 44)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46734" - "plane" "(704 -1664 112) (704 -1664 256) (704 -1600 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "23576" + "plane" "(-852 -604 44) (-876 -628 44) (-876 -628 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132753,10 +137031,10 @@ world } side { - "id" "46733" - "plane" "(704 -1600 112) (704 -1600 256) (640 -1600 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "id" "23575" + "plane" "(-880 -624 48) (-876 -628 48) (-876 -628 44)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132764,10 +137042,10 @@ world } side { - "id" "46732" - "plane" "(640 -1664 112) (640 -1664 256) (704 -1664 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "23574" + "plane" "(-880 -624 40) (-856 -600 40) (-856 -600 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132775,53 +137053,54 @@ world } side { - "id" "46731" - "plane" "(640 -1600 112) (640 -1664 112) (704 -1664 112)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23573" + "plane" "(-856 -600 40) (-852 -604 44) (-852 -604 48)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 164 221" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90374" + "id" "29068" side { - "id" "46742" - "plane" "(640 -1600 256) (640 -1536 256) (704 -1536 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23584" + "plane" "(-908 -660 48) (-932 -684 48) (-936 -680 48)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46741" - "plane" "(640 -1536 208) (640 -1536 256) (640 -1600 256)" + "id" "23583" + "plane" "(-912 -656 40) (-936 -680 40) (-932 -684 44)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46740" - "plane" "(704 -1600 208) (704 -1600 256) (704 -1536 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "23582" + "plane" "(-908 -660 44) (-932 -684 44) (-932 -684 48)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132829,10 +137108,10 @@ world } side { - "id" "46739" - "plane" "(704 -1536 208) (704 -1536 256) (640 -1536 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "23581" + "plane" "(-936 -680 48) (-932 -684 48) (-932 -684 44)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132840,10 +137119,10 @@ world } side { - "id" "46738" - "plane" "(640 -1600 208) (640 -1600 256) (704 -1600 256)" + "id" "23580" + "plane" "(-936 -680 40) (-912 -656 40) (-912 -656 48)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132851,53 +137130,54 @@ world } side { - "id" "46737" - "plane" "(640 -1536 208) (640 -1600 208) (704 -1600 208)" - "material" "DEV/REFLECTIVITY_50B" + "id" "23579" + "plane" "(-912 -656 40) (-908 -660 44) (-908 -660 48)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 164 221" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90375" + "id" "29387" side { - "id" "46754" - "plane" "(656 -1600 208) (656 -1536 208) (704 -1536 208)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23596" + "plane" "(-828 -580 256) (-960 -712 256) (-960 -704 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46753" - "plane" "(656 -1536 128) (656 -1536 208) (656 -1600 208)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23595" + "plane" "(-832 -576 248) (-960 -704 248) (-960 -712 252)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46752" - "plane" "(704 -1600 128) (704 -1600 208) (704 -1536 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "23594" + "plane" "(-828 -580 252) (-960 -712 252) (-960 -712 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132905,10 +137185,10 @@ world } side { - "id" "46751" - "plane" "(704 -1536 128) (704 -1536 208) (656 -1536 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "23593" + "plane" "(-960 -704 256) (-960 -712 256) (-960 -712 252)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132916,10 +137196,10 @@ world } side { - "id" "46750" - "plane" "(656 -1600 128) (656 -1600 208) (704 -1600 208)" + "id" "23592" + "plane" "(-960 -704 248) (-832 -576 248) (-832 -576 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132927,31 +137207,32 @@ world } side { - "id" "46749" - "plane" "(656 -1536 128) (656 -1600 128) (704 -1600 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23591" + "plane" "(-832 -576 248) (-828 -580 252) (-828 -580 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 164 221" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90382" + "id" "29465" side { - "id" "46766" - "plane" "(656 -1920 264) (632 -1920 264) (632 -1432 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "23620" + "plane" "(1456 -2768 64) (1456 -2120 64) (1472 -2120 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -132959,128 +137240,129 @@ world } side { - "id" "46765" - "plane" "(640 -1920 256) (640 -1440 256) (632 -1432 264)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23619" + "plane" "(1456 -2120 -128) (1456 -2768 -128) (1472 -2768 -128)" + "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" "46764" - "plane" "(656 -1456 256) (656 -1920 256) (656 -1920 264)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23618" + "plane" "(1456 -2768 -128) (1456 -2120 -128) (1456 -2120 64)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46763" - "plane" "(640 -1440 256) (656 -1456 256) (656 -1456 264)" + "id" "23617" + "plane" "(1472 -2120 -128) (1472 -2768 -128) (1472 -2768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46762" - "plane" "(656 -1920 256) (640 -1920 256) (632 -1920 264)" + "id" "23616" + "plane" "(1456 -2120 -128) (1472 -2120 -128) (1472 -2120 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46761" - "plane" "(656 -1456 256) (640 -1440 256) (640 -1920 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23615" + "plane" "(1472 -2768 -128) (1456 -2768 -128) (1456 -2768 64)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 149 238" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90402" + "id" "29476" side { - "id" "46784" - "plane" "(696 -1368 264) (720 -1392 264) (656 -1456 264)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23660" + "plane" "(1024 -3584 -128) (1024 -1312 -128) (1472 -1312 -128)" + "material" "RYAN_DEV/DEV_BLACK" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46783" - "plane" "(632 -1432 264) (640 -1440 256) (704 -1376 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23659" + "plane" "(1024 -1312 -192) (1024 -3584 -192) (1472 -3584 -192)" + "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" "46782" - "plane" "(656 -1456 264) (720 -1392 264) (720 -1392 256)" + "id" "23658" + "plane" "(1024 -3584 -192) (1024 -1312 -192) (1024 -1312 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46781" - "plane" "(632 -1432 264) (656 -1456 264) (656 -1456 256)" + "id" "23657" + "plane" "(1472 -1312 -192) (1472 -3584 -192) (1472 -3584 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46780" - "plane" "(640 -1440 256) (656 -1456 256) (720 -1392 256)" + "id" "23656" + "plane" "(1024 -1312 -192) (1472 -1312 -192) (1472 -1312 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46779" - "plane" "(696 -1368 264) (704 -1376 256) (720 -1392 256)" + "id" "23655" + "plane" "(1472 -3584 -192) (1024 -3584 -192) (1024 -3584 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -133090,259 +137372,284 @@ world } editor { - "color" "0 176 105" + "color" "0 173 158" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90407" + "id" "26658" side { - "id" "46795" - "plane" "(704 -1440 384) (704 -1856 384) (640 -1920 264)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20441" + "plane" "(320 -2304 256) (320 -1984 256) (640 -1984 256)" + "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" "46794" - "plane" "(704 -1856 384) (704 -1440 384) (704 -1440 264)" + "id" "20440" + "plane" "(320 -1984 240) (320 -2304 240) (640 -2304 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46793" - "plane" "(640 -1440 264) (704 -1440 264) (704 -1440 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "20439" + "plane" "(320 -2304 240) (320 -1984 240) (320 -1984 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 1 0 133] 0.25" + "vaxis" "[0 0 -1 91] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46792" - "plane" "(704 -1856 384) (704 -1856 264) (640 -1920 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "20438" + "plane" "(640 -1984 240) (640 -2304 240) (640 -2304 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 1 0 133] 0.25" + "vaxis" "[0 0 -1 91] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46791" - "plane" "(640 -1920 264) (704 -1856 264) (704 -1440 264)" + "id" "20437" + "plane" "(320 -1984 240) (640 -1984 240) (640 -1984 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20436" + "plane" "(640 -2304 240) (320 -2304 240) (320 -2304 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 133] 0.25" + "vaxis" "[0 0 -1 91] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 218 103" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90417" + "id" "26703" side { - "id" "46811" - "plane" "(704 -1376 264) (704 -1440 384) (640 -1440 264)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20510" + "plane" "(272 -2016 240) (272 -2272 240) (688 -2272 240)" + "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" "46809" - "plane" "(640 -1440 264) (704 -1440 384) (704 -1440 264)" + "id" "20509" + "plane" "(272 -2208 336) (272 -2240 304) (272 -2272 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46808" - "plane" "(704 -1376 264) (640 -1440 264) (704 -1440 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "20508" + "plane" "(688 -2016 240) (688 -2272 240) (688 -2240 304)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46807" - "plane" "(704 -1440 384) (704 -1376 264) (704 -1440 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20507" + "plane" "(688 -2240 304) (688 -2272 240) (272 -2272 240)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[1 0 0 247] 0.25" + "vaxis" "[0 0 -1 416] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor + side { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "20506" + "plane" "(688 -2208 336) (688 -2240 304) (272 -2240 304)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[1 0 0 247] 0.25" + "vaxis" "[0 0 -1 416] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - solid - { - "id" "90426" side { - "id" "46836" - "plane" "(704 -1376 264) (896 -1472 264) (896 -1536 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20505" + "plane" "(272 -2208 336) (272 -2176 352) (688 -2176 352)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[1 0 0 247] 0.25" + "vaxis" "[0 -1 0 96] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46835" - "plane" "(896 -1536 384) (896 -1536 264) (704 -1440 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "20504" + "plane" "(272 -2048 304) (272 -2016 240) (688 -2016 240)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[1 0 0 247] 0.25" + "vaxis" "[0 0 -1 416] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46834" - "plane" "(704 -1440 264) (704 -1376 264) (704 -1440 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "20503" + "plane" "(272 -2080 336) (272 -2048 304) (688 -2048 304)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[1 0 0 247] 0.25" + "vaxis" "[0 0 -1 416] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46833" - "plane" "(704 -1440 264) (896 -1536 264) (896 -1472 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "20502" + "plane" "(272 -2112 352) (272 -2080 336) (688 -2080 336)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[1 0 0 247] 0.25" + "vaxis" "[0 -1 0 96] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46832" - "plane" "(896 -1536 264) (896 -1536 384) (896 -1472 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20501" + "plane" "(272 -2176 352) (272 -2112 352) (688 -2112 352)" + "material" "DE_CBBLE/ROOFTILE_A_01" + "uaxis" "[1 0 0 247] 0.25" + "vaxis" "[0 -1 0 96] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 196 165" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90433" + "id" "26785" side { - "id" "46848" - "plane" "(704 -1364.69 264) (896 -1464 264) (896 -1496 264)" + "id" "20657" + "plane" "(256 -2224 368) (256 -2144 368) (272 -2144 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 -25.0496] 0.25" - "vaxis" "[-0.707107 -0.707107 0 56.3167] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46847" - "plane" "(704 -1376 256) (896 -1472 256) (896 -1464 264)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.707107 0.707107 0 -24.3167] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20656" + "plane" "(256 -2144 240) (256 -2304 240) (272 -2304 240)" + "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" "46846" - "plane" "(704 -1398.63 264) (896 -1496 264) (896 -1496 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -56.3167] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "20655" + "plane" "(256 -2304 240) (256 -2144 240) (256 -2144 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46845" - "plane" "(704 -1398.63 264) (704 -1398.63 256) (704 -1376 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 -25.0496] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "20654" + "plane" "(272 -2144 240) (272 -2304 240) (272 -2256 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46844" - "plane" "(704 -1398.63 256) (896 -1496 256) (896 -1472 256)" + "id" "20653" + "plane" "(272 -2304 240) (256 -2304 240) (256 -2256 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20652" + "plane" "(256 -2256 336) (256 -2224 368) (272 -2224 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 -25.0496] 0.25" - "vaxis" "[-0.707107 -0.707107 0 56.3167] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46843" - "plane" "(896 -1472 256) (896 -1496 256) (896 -1496 264)" + "id" "20651" + "plane" "(256 -2144 240) (272 -2144 240) (272 -2144 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 -25.0496] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -133350,31 +137657,33 @@ world } editor { - "color" "0 176 105" + "color" "0 202 115" + "groupid" "26784" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90448" + "id" "26786" side { - "id" "46860" - "plane" "(652 -1828 208) (652 -1820 208) (656 -1820 208)" + "id" "20663" + "plane" "(256 -2224 384) (256 -2224 368) (272 -2224 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46859" - "plane" "(652 -1820 128) (652 -1820 208) (652 -1828 208)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "20662" + "plane" "(256 -2256 352) (256 -2256 336) (256 -2224 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -133382,10 +137691,10 @@ world } side { - "id" "46858" - "plane" "(656 -1828 128) (656 -1828 208) (656 -1820 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "id" "20661" + "plane" "(272 -2224 384) (272 -2224 368) (272 -2256 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -133393,63 +137702,65 @@ world } side { - "id" "46857" - "plane" "(656 -1820 128) (656 -1820 208) (652 -1820 208)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "20660" + "plane" "(272 -2256 352) (272 -2256 336) (256 -2256 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46856" - "plane" "(652 -1828 128) (652 -1828 208) (656 -1828 208)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "20659" + "plane" "(256 -2256 352) (256 -2224 384) (272 -2224 384)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46855" - "plane" "(652 -1820 128) (652 -1828 128) (656 -1828 128)" + "id" "20658" + "plane" "(272 -2256 336) (272 -2224 368) (256 -2224 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 202 115" + "groupid" "26784" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "90458" + "id" "26787" side { - "id" "46872" - "plane" "(652 -1572 208) (652 -1564 208) (656 -1564 208)" + "id" "20669" + "plane" "(256 -2144 384) (256 -2144 368) (272 -2144 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46871" - "plane" "(652 -1564 128) (652 -1564 208) (652 -1572 208)" - "material" "DEV/REFLECTIVITY_50B" + "id" "20668" + "plane" "(256 -2224 384) (256 -2224 368) (256 -2144 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -133458,10 +137769,10 @@ world } side { - "id" "46870" - "plane" "(656 -1572 128) (656 -1572 208) (656 -1564 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" + "id" "20667" + "plane" "(272 -2144 384) (272 -2144 368) (272 -2224 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -133469,9 +137780,9 @@ world } side { - "id" "46869" - "plane" "(656 -1564 128) (656 -1564 208) (652 -1564 208)" - "material" "DEV/REFLECTIVITY_50B" + "id" "20666" + "plane" "(272 -2224 384) (272 -2224 368) (256 -2224 368)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -133480,75 +137791,77 @@ world } side { - "id" "46868" - "plane" "(652 -1572 128) (652 -1572 208) (656 -1572 208)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "20665" + "plane" "(256 -2224 384) (256 -2144 384) (272 -2144 384)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 1 0 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "46867" - "plane" "(652 -1564 128) (652 -1572 128) (656 -1572 128)" + "id" "20664" + "plane" "(272 -2144 368) (256 -2144 368) (256 -2224 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 202 115" + "groupid" "26784" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "86214" + "id" "26789" side { - "id" "44463" - "plane" "(-2304 -2560 -128.032) (-2048 -2816 -128.032) (-2048 -2560 -128.032)" + "id" "20676" + "plane" "(256 -2144 368) (256 -2064 368) (272 -2064 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "44462" - "plane" "(-2048 -2816 -128.032) (-2304 -2560 -128.032) (-2304 -2560 576)" + "id" "20675" + "plane" "(256 -1984 240) (256 -2144 240) (272 -2144 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "44461" - "plane" "(-2176 -2432 -128.032) (-2048 -2560 -128.032) (-2048 -2560 576)" - "material" "TEROUST/ARPEGGIO/TREELINE/TREELINE_LONG" - "uaxis" "[0 1 0 0] 1" - "vaxis" "[0 0 -1 896] 1" + "id" "20674" + "plane" "(256 -2144 240) (256 -1984 240) (256 -2032 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "44460" - "plane" "(-2304 -2560 -128.032) (-2176 -2432 -128.032) (-2176 -2432 576)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "20673" + "plane" "(272 -1984 240) (272 -2144 240) (272 -2144 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -133556,53 +137869,66 @@ world } side { - "id" "44459" - "plane" "(-2048 -2560 -128.032) (-2048 -2816 -128.032) (-2048 -2816 576)" - "material" "TEROUST/ARPEGGIO/TREELINE/TREELINE_LONG" - "uaxis" "[0 1 0 0] 1" - "vaxis" "[0 0 -1 896] 1" + "id" "20672" + "plane" "(256 -1984 240) (272 -1984 240) (272 -2032 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20671" + "plane" "(272 -2032 336) (272 -2064 368) (256 -2064 368)" + "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" "44458" - "plane" "(-2048 -2816 576) (-2304 -2560 576) (-2176 -2432 576)" + "id" "20670" + "plane" "(272 -2144 240) (256 -2144 240) (256 -2144 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 192 189" + "color" "0 192 105" + "groupid" "26788" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "86215" + "id" "26790" side { - "id" "44469" - "plane" "(-2176 -3584 -128.032) (-2048 -3584 -128.032) (-2048 -2816 -128.032)" + "id" "20682" + "plane" "(272 -2064 384) (272 -2064 368) (256 -2064 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "44468" - "plane" "(-2048 -3584 -128.032) (-2176 -3584 -128.032) (-2176 -3584 576)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "20681" + "plane" "(256 -2064 384) (256 -2064 368) (256 -2032 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -133610,9 +137936,9 @@ world } side { - "id" "44467" - "plane" "(-2176 -2688 -128.032) (-2048 -2816 -128.032) (-2048 -2816 576)" - "material" "TOOLS/TOOLSNODRAW" + "id" "20680" + "plane" "(272 -2032 352) (272 -2032 336) (272 -2064 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -133621,74 +137947,76 @@ world } side { - "id" "44466" - "plane" "(-2176 -3584 -128.032) (-2176 -2688 -128.032) (-2176 -2688 576)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "20679" + "plane" "(256 -2032 352) (256 -2032 336) (272 -2032 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "44465" - "plane" "(-2048 -2816 -128.032) (-2048 -3584 -128.032) (-2048 -3584 576)" - "material" "TEROUST/ARPEGGIO/TREELINE/TREELINE_LONG" - "uaxis" "[0 1 0 0] 1" - "vaxis" "[0 0 -1 896] 1" - "rotation" "0" + "id" "20678" + "plane" "(272 -2032 352) (272 -2064 384) (256 -2064 384)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "44464" - "plane" "(-2048 -3584 576) (-2176 -3584 576) (-2176 -2688 576)" + "id" "20677" + "plane" "(256 -2032 336) (256 -2064 368) (272 -2064 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 192 189" + "color" "0 192 105" + "groupid" "26788" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83458" + "id" "26791" side { - "id" "42388" - "plane" "(-960 -2976 -32) (-960 -3264 -32) (-1120 -3232 -32)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "20688" + "plane" "(272 -2144 384) (272 -2144 368) (256 -2144 368)" + "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" "42387" - "plane" "(-960 -3264 -64) (-960 -2976 -64) (-1024 -2944 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "20687" + "plane" "(256 -2144 384) (256 -2144 368) (256 -2064 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42386" - "plane" "(-1024 -2944 -32) (-1120 -3232 -32) (-1120 -3232 -64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "20686" + "plane" "(272 -2064 384) (272 -2064 368) (272 -2144 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -133697,10 +138025,10 @@ world } side { - "id" "42385" - "plane" "(-960 -3264 -32) (-960 -2976 -32) (-960 -2976 -64)" + "id" "20685" + "plane" "(256 -2064 384) (256 -2064 368) (272 -2064 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -133708,42 +138036,44 @@ world } side { - "id" "42384" - "plane" "(-960 -2976 -32) (-1024 -2944 -32) (-1024 -2944 -64)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "20684" + "plane" "(272 -2144 384) (256 -2144 384) (256 -2064 384)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 -1 0 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42383" - "plane" "(-1120 -3232 -32) (-960 -3264 -32) (-960 -3264 -64)" + "id" "20683" + "plane" "(256 -2064 368) (256 -2144 368) (272 -2144 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 192 105" + "groupid" "26788" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83461" + "id" "26792" side { - "id" "42400" - "plane" "(-1280 -3136 -32) (-1056 -2912 -32) (-1024 -2944 -32)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" + "id" "20700" + "plane" "(672 -1984 224) (672 -1920 224) (704 -1920 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -133751,8 +138081,8 @@ world } side { - "id" "42399" - "plane" "(-1056 -2912 -64) (-1280 -3136 -64) (-1120 -3232 -64)" + "id" "20699" + "plane" "(672 -1920 64) (672 -1984 64) (704 -1984 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -133762,8 +138092,8 @@ world } side { - "id" "42398" - "plane" "(-1280 -3136 -64) (-1056 -2912 -64) (-1056 -2912 -32)" + "id" "20698" + "plane" "(672 -1984 64) (672 -1920 64) (672 -1920 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -133773,9 +138103,9 @@ world } side { - "id" "42397" - "plane" "(-1024 -2944 -64) (-1120 -3232 -64) (-1120 -3232 -32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "20697" + "plane" "(704 -1920 64) (704 -1984 64) (704 -1984 224)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -133784,9 +138114,9 @@ world } side { - "id" "42396" - "plane" "(-1056 -2912 -64) (-1024 -2944 -64) (-1024 -2944 -32)" - "material" "DEV/REFLECTIVITY_10B" + "id" "20696" + "plane" "(672 -1920 64) (704 -1920 64) (704 -1920 224)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -133795,8 +138125,8 @@ world } side { - "id" "42395" - "plane" "(-1120 -3232 -64) (-1280 -3136 -64) (-1280 -3136 -32)" + "id" "20695" + "plane" "(704 -1984 64) (672 -1984 64) (672 -1984 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -133806,42 +138136,32 @@ world } editor { - "color" "0 176 105" + "color" "0 183 200" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83464" - side - { - "id" "42412" - "plane" "(-1088 -2848 -32) (-1056 -2912 -32) (-1280 -3136 -32)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "26801" side { - "id" "42411" - "plane" "(-1344 -3040 -64) (-1280 -3136 -64) (-1056 -2912 -64)" + "id" "20717" + "plane" "(576 -1952 224) (448 -1952 224) (448 -2136 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42410" - "plane" "(-1088 -2848 -64) (-1088 -2848 -32) (-1344 -3040 -32)" + "id" "20716" + "plane" "(448 -1952 320) (448 -1952 224) (576 -1952 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -133849,10 +138169,10 @@ world } side { - "id" "42409" - "plane" "(-1280 -3136 -64) (-1280 -3136 -32) (-1056 -2912 -32)" + "id" "20715" + "plane" "(576 -2136 224) (448 -2136 224) (448 -2136 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -133860,10 +138180,10 @@ world } side { - "id" "42408" - "plane" "(-1056 -2912 -64) (-1056 -2912 -32) (-1088 -2848 -32)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" + "id" "20714" + "plane" "(448 -2136 320) (448 -2136 224) (448 -1952 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -133871,31 +138191,32 @@ world } side { - "id" "42407" - "plane" "(-1344 -3040 -64) (-1344 -3040 -32) (-1280 -3136 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20713" + "plane" "(448 -1952 320) (576 -1952 224) (576 -2136 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 183 200" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83466" + "id" "26810" side { - "id" "42424" - "plane" "(-1408 -2944 -32) (-1152 -2752 -32) (-1088 -2848 -32)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" + "id" "20729" + "plane" "(448 -1952 352) (448 -1920 352) (576 -1920 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -133903,9 +138224,9 @@ world } side { - "id" "42423" - "plane" "(-1344 -3040 -64) (-1088 -2848 -64) (-1151.99 -2752 -64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "20728" + "plane" "(448 -1920 224) (448 -1952 224) (576 -1952 224)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -133914,8 +138235,8 @@ world } side { - "id" "42422" - "plane" "(-1152 -2752 -32) (-1408 -2944 -32) (-1408 -2944 -64)" + "id" "20727" + "plane" "(448 -1952 224) (448 -1920 224) (448 -1920 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -133925,9 +138246,9 @@ world } side { - "id" "42421" - "plane" "(-1344 -3040 -32) (-1088 -2848 -32) (-1088 -2848 -64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "20726" + "plane" "(576 -1920 224) (576 -1952 224) (576 -1952 256)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -133936,9 +138257,9 @@ world } side { - "id" "42420" - "plane" "(-1088 -2848 -32) (-1152 -2752 -32) (-1151.99 -2752 -64)" - "material" "DEV/REFLECTIVITY_10B" + "id" "20725" + "plane" "(448 -1920 224) (576 -1920 224) (576 -1920 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -133947,9 +138268,9 @@ world } side { - "id" "42419" - "plane" "(-1408 -2944 -32) (-1344 -3040 -32) (-1344 -3040 -64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "20724" + "plane" "(448 -1952 352) (576 -1952 256) (576 -1952 224)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -133958,42 +138279,32 @@ world } editor { - "color" "0 176 105" + "color" "0 110 163" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83468" - side - { - "id" "42448" - "plane" "(-1408 -2944 -32) (-1440 -2880 -32) (-1216 -2656 -32)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "26823" side { - "id" "42447" - "plane" "(-1152 -2752 -64) (-1216 -2656 -64) (-1440 -2880 -64)" + "id" "20739" + "plane" "(448 -1952 224) (320 -1952 224) (320 -2136 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42446" - "plane" "(-1408 -2944 -64) (-1408 -2944 -32) (-1152 -2752 -32)" + "id" "20738" + "plane" "(320 -1952 224) (448 -1952 224) (448 -1952 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134001,10 +138312,10 @@ world } side { - "id" "42445" - "plane" "(-1216 -2656 -64) (-1216 -2656 -32) (-1440 -2880 -32)" + "id" "20737" + "plane" "(448 -2136 320) (448 -2136 224) (320 -2136 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134012,10 +138323,10 @@ world } side { - "id" "42444" - "plane" "(-1440 -2880 -64) (-1440 -2880 -32) (-1408 -2944 -32)" + "id" "20736" + "plane" "(448 -1952 320) (448 -1952 224) (448 -2136 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134023,53 +138334,54 @@ world } side { - "id" "42443" - "plane" "(-1152 -2752 -64) (-1152 -2752 -32) (-1216 -2656 -32)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20735" + "plane" "(448 -2136 320) (320 -2136 224) (320 -1952 224)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 183 200" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83469" + "id" "26825" side { - "id" "42454" - "plane" "(-1216 -2656 -32) (-1440 -2880 -32) (-1472 -2848 -32)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "20751" + "plane" "(320 -1952 256) (320 -1920 256) (448 -1920 352)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42453" - "plane" "(-1440 -2880 -64) (-1216 -2656 -64) (-1376 -2560 -64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "20750" + "plane" "(320 -1920 224) (320 -1952 224) (448 -1952 224)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42452" - "plane" "(-1216 -2656 -64) (-1440 -2880 -64) (-1440 -2880 -32)" + "id" "20749" + "plane" "(448 -1920 224) (448 -1952 224) (448 -1952 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134077,10 +138389,10 @@ world } side { - "id" "42451" - "plane" "(-1472 -2848 -64) (-1376 -2560 -64) (-1376 -2560 -32)" + "id" "20748" + "plane" "(320 -1952 224) (320 -1920 224) (320 -1920 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134088,9 +138400,9 @@ world } side { - "id" "42450" - "plane" "(-1440 -2880 -64) (-1472 -2848 -64) (-1472 -2848 -32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "20747" + "plane" "(448 -1920 352) (320 -1920 256) (320 -1920 224)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -134099,9 +138411,9 @@ world } side { - "id" "42449" - "plane" "(-1376 -2560 -64) (-1216 -2656 -64) (-1216 -2656 -32)" - "material" "DEV/REFLECTIVITY_10B" + "id" "20746" + "plane" "(448 -1952 224) (320 -1952 224) (320 -1952 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -134110,42 +138422,43 @@ world } editor { - "color" "0 176 105" + "color" "0 110 163" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83470" + "id" "26853" side { - "id" "42460" - "plane" "(-1536 -2816 -32) (-1536 -2528 -32) (-1376 -2560 -32)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "20811" + "plane" "(256 -2304 240) (256 -2296 240) (704 -2296 240)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42459" - "plane" "(-1536 -2528 -64) (-1536 -2816 -64) (-1472 -2848 -64)" + "id" "20810" + "plane" "(256 -2296 208) (256 -2304 208) (704 -2304 208)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42458" - "plane" "(-1472 -2848 -32) (-1376 -2560 -32) (-1376 -2560 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "20809" + "plane" "(256 -2304 208) (256 -2296 208) (256 -2296 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134153,10 +138466,10 @@ world } side { - "id" "42457" - "plane" "(-1536 -2528 -32) (-1536 -2816 -32) (-1536 -2816 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "20808" + "plane" "(704 -2296 208) (704 -2304 208) (704 -2304 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134164,10 +138477,10 @@ world } side { - "id" "42456" - "plane" "(-1536 -2816 -32) (-1472 -2848 -32) (-1472 -2848 -64)" + "id" "20807" + "plane" "(256 -2296 208) (704 -2296 208) (704 -2296 240)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134175,10 +138488,10 @@ world } side { - "id" "42455" - "plane" "(-1376 -2560 -32) (-1536 -2528 -32) (-1536 -2528 -64)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "20806" + "plane" "(704 -2304 208) (256 -2304 208) (256 -2304 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134186,42 +138499,43 @@ world } editor { - "color" "0 176 105" + "color" "0 218 199" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83504" + "id" "26860" side { - "id" "42472" - "plane" "(-1888 -2528 -32) (-1536 -2528 -32) (-1536 -2816 -32)" + "id" "20823" + "plane" "(416 -2304 64) (416 -2288 64) (512 -2288 64)" "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42471" - "plane" "(-1888 -2816 -64) (-1536 -2816 -64) (-1536 -2528 -64)" + "id" "20822" + "plane" "(416 -2288 0) (416 -2304 0) (512 -2304 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42470" - "plane" "(-1536 -2528 -32) (-1536 -2528 -64) (-1536 -2816 -64)" + "id" "20821" + "plane" "(416 -2304 0) (416 -2288 0) (416 -2288 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134229,10 +138543,10 @@ world } side { - "id" "42469" - "plane" "(-1888 -2816 -32) (-1888 -2816 -64) (-1888 -2528 -64)" + "id" "20820" + "plane" "(512 -2288 0) (512 -2304 0) (512 -2304 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134240,10 +138554,10 @@ world } side { - "id" "42468" - "plane" "(-1536 -2816 -32) (-1536 -2816 -64) (-1888 -2816 -64)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "20819" + "plane" "(416 -2288 0) (512 -2288 0) (512 -2288 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134251,10 +138565,10 @@ world } side { - "id" "42467" - "plane" "(-1888 -2528 -32) (-1888 -2528 -64) (-1536 -2528 -64)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "20818" + "plane" "(512 -2304 0) (416 -2304 0) (416 -2304 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134269,57 +138583,57 @@ world } solid { - "id" "83587" + "id" "26863" side { - "id" "42544" - "plane" "(-832 -2976 -4) (-832 -3264 -4) (-864 -3264 -12)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "20835" + "plane" "(544 -2308 116) (544 -2296 116) (608 -2296 116)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -116.314] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42543" - "plane" "(-832 -3264 -64) (-832 -2976 -64) (-864 -2976 -64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "20834" + "plane" "(544 -2296 112) (544 -2308 112) (608 -2308 112)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 36.1348] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42542" - "plane" "(-864 -2976 -12) (-864 -2976 -64) (-832 -2976 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20833" + "plane" "(544 -2308 112) (544 -2296 112) (544 -2296 116)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[0 -1 0 -384] 0.25" + "vaxis" "[0 0 -1 135] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42541" - "plane" "(-864 -3264 -64) (-864 -3264 -12) (-832 -3264 -4)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20832" + "plane" "(608 -2296 112) (608 -2308 112) (608 -2308 116)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[0 1 0 384] 0.25" + "vaxis" "[0 0 -1 135] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42540" - "plane" "(-864 -2976 -64) (-864 -2976 -12) (-864 -3264 -12)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 0] 0.25" + "id" "20831" + "plane" "(544 -2296 112) (608 -2296 112) (608 -2296 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134327,53 +138641,53 @@ world } side { - "id" "42539" - "plane" "(-832 -3264 -64) (-832 -3264 -4) (-832 -2976 -4)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20830" + "plane" "(608 -2308 112) (544 -2308 112) (544 -2308 116)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 135] 0.123" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 176 237" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83588" + "id" "26918" side { - "id" "42550" - "plane" "(-800 -2976 0) (-800 -3264 0) (-832 -3264 -4)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "20962" + "plane" "(344 -2296 256) (344 -2304 256) (448 -2304 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42549" - "plane" "(-800 -3264 -64) (-800 -2976 -64) (-832 -2976 -64)" + "id" "20961" + "plane" "(448 -2296 256) (448 -2296 320) (408 -2296 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42548" - "plane" "(-800 -3264 -64) (-800 -3264 0) (-800 -2976 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "20960" + "plane" "(344 -2304 256) (408.004 -2304 320) (448 -2304 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134381,21 +138695,21 @@ world } side { - "id" "42547" - "plane" "(-832 -2976 -4) (-832 -2976 -64) (-800 -2976 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20959" + "plane" "(344 -2304 256) (344 -2296 256) (408 -2296 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 133] 0.25" + "vaxis" "[0 -1 0 91] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42546" - "plane" "(-832 -3264 -64) (-832 -3264 -4) (-800 -3264 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "20958" + "plane" "(448 -2296 256) (448 -2304 256) (448 -2304 320)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134403,53 +138717,43 @@ world } side { - "id" "42545" - "plane" "(-832 -2976 -64) (-832 -2976 -4) (-832 -3264 -4)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20957" + "plane" "(408.004 -2304 320) (408 -2296 320) (448 -2296 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" } editor { - "color" "0 176 105" + "color" "0 106 211" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83589" - side - { - "id" "42556" - "plane" "(-960 -3264 -32) (-960 -2976 -32) (-928 -2976 -28.0002)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "26921" side { - "id" "42555" - "plane" "(-960 -2976 -64) (-960 -3264 -64) (-928 -3264 -64)" + "id" "20979" + "plane" "(464 -2296 376) (424 -2296 336) (464 -2296 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42554" - "plane" "(-960 -2976 -64) (-960 -2976 -32) (-960 -3264 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "20978" + "plane" "(464 -2304 376) (464 -2304 336) (424 -2304 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134457,74 +138761,64 @@ world } side { - "id" "42553" - "plane" "(-960 -2976 -32) (-960 -2976 -64) (-928 -2976 -64)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20977" + "plane" "(424 -2304 336) (424 -2296 336) (464 -2296 376)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 133] 0.25" + "vaxis" "[0 -1 0 91] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42552" - "plane" "(-960 -3264 -64) (-960 -3264 -32) (-928 -3264 -28)" + "id" "20976" + "plane" "(464 -2296 336) (464 -2304 336) (464 -2304 376)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42551" - "plane" "(-928 -3264 -64) (-928 -3264 -28) (-928 -2976 -28.0002)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20975" + "plane" "(424 -2296 336) (424 -2304 336) (464 -2304 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 248 209" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83590" - side - { - "id" "42562" - "plane" "(-928 -3264 -28) (-928 -2976 -28.0011) (-896 -2976 -20)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "26925" side { - "id" "42561" - "plane" "(-928 -2976 -64) (-928 -3264 -64) (-896 -3264 -64)" + "id" "21003" + "plane" "(496 -2296 376) (496 -2296 336) (536 -2296 336)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42560" - "plane" "(-928 -2976 -28.0011) (-928 -2976 -64) (-896 -2976 -64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21002" + "plane" "(496 -2304 376) (536 -2304 336) (496 -2304 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -134533,53 +138827,54 @@ world } side { - "id" "42559" - "plane" "(-928 -3264 -64) (-928 -3264 -28) (-896 -3264 -19.9987)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "21001" + "plane" "(496 -2304 376) (496 -2296 376) (536 -2296 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[1 0 0 133] 0.25" + "vaxis" "[0 -1 0 91] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42558" - "plane" "(-928 -2976 -64) (-928 -2976 -28.0011) (-928 -3264 -28)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "21000" + "plane" "(496 -2304 336) (496 -2296 336) (496 -2296 376)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42557" - "plane" "(-896 -3264 -64) (-896 -3264 -19.9987) (-896 -2976 -20)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "20999" + "plane" "(496 -2296 336) (496 -2304 336) (536 -2304 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 186 239" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83591" + "id" "26962" side { - "id" "42568" - "plane" "(-896 -3264 -20) (-896 -2976 -19.9996) (-864 -2976 -11.9995)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" + "id" "21077" + "plane" "(688 -2144 240) (688 -2304 240) (704 -2304 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134587,21 +138882,21 @@ world } side { - "id" "42567" - "plane" "(-896 -2976 -64) (-896 -3264 -64) (-864 -3264 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "21076" + "plane" "(688 -2296 256) (688 -2304 240) (688 -2144 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42566" - "plane" "(-896 -2976 -19.9996) (-896 -2976 -64) (-864 -2976 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "21075" + "plane" "(704 -2144 240) (704 -2304 240) (704 -2296 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134609,21 +138904,21 @@ world } side { - "id" "42565" - "plane" "(-896 -3264 -64) (-896 -3264 -20) (-864 -3264 -12)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "21074" + "plane" "(704 -2296 256) (704 -2304 240) (688 -2304 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42564" - "plane" "(-896 -2976 -64) (-896 -2976 -19.9996) (-896 -3264 -20)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21073" + "plane" "(688 -2144 256) (688 -2144 240) (704 -2144 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134631,64 +138926,66 @@ world } side { - "id" "42563" - "plane" "(-864 -3264 -64) (-864 -3264 -12) (-864 -2976 -11.9995)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "21072" + "plane" "(688 -2296 256) (688 -2144 256) (704 -2144 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 154 255" + "groupid" "26754" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83610" + "id" "26963" side { - "id" "42621" - "plane" "(-1952 -2752 -64) (-1933 -2797 -64) (-1888 -2816 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "21083" + "plane" "(688 -2272 304) (688 -2296 256) (688 -2168 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42620" - "plane" "(-1888 -2816 -32) (-1933 -2797 -32) (-1952 -2752 -32)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "21082" + "plane" "(704 -2296 256) (704 -2272 304) (704 -2168 304)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42619" - "plane" "(-1888 -2816 -64) (-1933 -2797 -64) (-1933 -2797 -32)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "21081" + "plane" "(704 -2272 304) (704 -2296 256) (688 -2296 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42618" - "plane" "(-1933 -2797 -64) (-1952 -2752 -64) (-1952 -2752 -32)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21080" + "plane" "(688 -2168 304) (688 -2168 256) (704 -2168 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[-1 0 0 -224] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134696,64 +138993,66 @@ world } side { - "id" "42617" - "plane" "(-1952 -2752 -64) (-1888 -2752 -64) (-1888 -2752 -32)" + "id" "21079" + "plane" "(688 -2272 304) (688 -2168 304) (704 -2168 304)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42616" - "plane" "(-1888 -2752 -64) (-1888 -2816 -64) (-1888 -2816 -32)" + "id" "21078" + "plane" "(688 -2168 256) (688 -2296 256) (704 -2296 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 170 115" + "color" "0 154 255" + "groupid" "26754" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83611" + "id" "26964" side { - "id" "42633" - "plane" "(-1888 -2528 -64) (-1933 -2547 -64) (-1952 -2592 -64)" + "id" "21089" + "plane" "(688 -2224 384) (688 -2224 368) (704 -2224 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42632" - "plane" "(-1952 -2592 -32) (-1933 -2547 -32) (-1888 -2528 -32)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 -64] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "21088" + "plane" "(688 -2256 352) (688 -2256 336) (688 -2224 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42631" - "plane" "(-1952 -2592 -64) (-1933 -2547 -64) (-1933 -2547 -32)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "21087" + "plane" "(704 -2224 384) (704 -2224 368) (704 -2256 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134761,30 +139060,30 @@ world } side { - "id" "42630" - "plane" "(-1933 -2547 -64) (-1888 -2528 -64) (-1888 -2528 -32)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "21086" + "plane" "(704 -2256 352) (704 -2256 336) (688 -2256 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42629" - "plane" "(-1888 -2528 -64) (-1888 -2592 -64) (-1888 -2592 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "21085" + "plane" "(688 -2256 352) (688 -2224 384) (704 -2224 384)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42628" - "plane" "(-1888 -2592 -64) (-1952 -2592 -64) (-1952 -2592 -32)" + "id" "21084" + "plane" "(704 -2256 336) (704 -2224 368) (688 -2224 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -134794,42 +139093,44 @@ world } editor { - "color" "0 170 115" + "color" "0 154 255" + "groupid" "26754" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83660" + "id" "26965" side { - "id" "42723" - "plane" "(-1952 -2592 -32) (-1888 -2592 -32) (-1888 -2752 -32)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" + "id" "21095" + "plane" "(688 -2144 384) (688 -2144 368) (704 -2144 368)" + "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" "42722" - "plane" "(-1952 -2752 -64) (-1888 -2752 -64) (-1888 -2592 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "21094" + "plane" "(688 -2224 384) (688 -2224 368) (688 -2144 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42721" - "plane" "(-1888 -2592 -32) (-1888 -2592 -64) (-1888 -2752 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "21093" + "plane" "(704 -2144 384) (704 -2144 368) (704 -2224 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134837,10 +139138,10 @@ world } side { - "id" "42720" - "plane" "(-1952 -2752 -32) (-1952 -2752 -64) (-1952 -2592 -64)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" + "id" "21092" + "plane" "(704 -2224 384) (704 -2224 368) (688 -2224 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134848,64 +139149,66 @@ world } side { - "id" "42719" - "plane" "(-1888 -2752 -32) (-1888 -2752 -64) (-1952 -2752 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "21091" + "plane" "(688 -2224 384) (688 -2144 384) (704 -2144 384)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 1 0 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42718" - "plane" "(-1952 -2592 -32) (-1952 -2592 -64) (-1888 -2592 -64)" + "id" "21090" + "plane" "(704 -2144 368) (688 -2144 368) (688 -2224 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 154 255" + "groupid" "26754" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "83752" + "id" "26966" side { - "id" "42735" - "plane" "(-1856 -3520 -32) (-1856 -2816 -32) (-1536 -2816 -32)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "21102" + "plane" "(688 -2224 368) (688 -2144 368) (704 -2144 368)" + "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" "42734" - "plane" "(-1856 -2816 -64) (-1856 -3520 -64) (-1536 -3520 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "21101" + "plane" "(688 -2144 304) (688 -2144 368) (688 -2224 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "42733" - "plane" "(-1536 -2816 -64) (-1536 -3520 -64) (-1536 -3520 -32)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 -1 0 64] 0.25" + "id" "21100" + "plane" "(704 -2272 304) (704 -2256 336) (704 -2224 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134913,10 +139216,21 @@ world } side { - "id" "42732" - "plane" "(-1856 -3520 -64) (-1856 -2816 -64) (-1856 -2816 -32)" + "id" "21099" + "plane" "(688 -2272 304) (688 -2256 336) (704 -2256 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21098" + "plane" "(688 -2256 336) (688 -2224 368) (704 -2224 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134924,10 +139238,10 @@ world } side { - "id" "42731" - "plane" "(-1536 -3520 -64) (-1856 -3520 -64) (-1856 -3520 -32)" + "id" "21097" + "plane" "(704 -2144 304) (704 -2144 368) (688 -2144 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134935,52 +139249,54 @@ world } side { - "id" "42730" - "plane" "(-1856 -2816 -64) (-1536 -2816 -64) (-1536 -2816 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "21096" + "plane" "(688 -2144 304) (688 -2272 304) (704 -2272 304)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 154 255" + "groupid" "26754" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "76759" + "id" "26967" side { - "id" "38601" - "plane" "(2752 -320 96) (2432 -320 96) (2432 -192 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "21108" + "plane" "(688 -1984 240) (688 -2144 240) (704 -2144 240)" + "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" "38600" - "plane" "(2752 -192 64) (2432 -192 64) (2432 -320 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "21107" + "plane" "(688 -2144 240) (688 -1984 240) (688 -1992 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38599" - "plane" "(2432 -320 64) (2432 -192 64) (2432 -192 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21106" + "plane" "(704 -1992 256) (704 -1984 240) (704 -2144 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -134989,19 +139305,19 @@ world } side { - "id" "38598" - "plane" "(2432 -192 64) (2752 -192 64) (2752 -192 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "21105" + "plane" "(688 -1992 256) (688 -1984 240) (704 -1984 240)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38597" - "plane" "(2752 -320 64) (2432 -320 64) (2432 -320 96)" + "id" "21104" + "plane" "(704 -2144 256) (704 -2144 240) (688 -2144 240)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -135011,280 +139327,77 @@ world } side { - "id" "38596" - "plane" "(2752 -192 64) (2752 -320 64) (2752 -320 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "21103" + "plane" "(688 -2144 256) (688 -1992 256) (704 -1992 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 217 190" - "visgroupid" "23" + "color" "0 136 201" + "groupid" "26755" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } - hidden + solid { - solid + "id" "26968" + side { - "id" "76765" - side - { - "id" "38611" - "plane" "(2464 128 96) (2400 128 96) (2464 64 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38609" - "plane" "(2464 64 96) (2464 128 128) (2464 128 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38608" - "plane" "(2464 128 128) (2464 64 96) (2400 128 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38607" - "plane" "(2464 128 128) (2400 128 96) (2464 128 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 119 112" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "21114" + "plane" "(688 -1992 256) (688 -2016 304) (688 -2120 304)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - hidden - { - solid + side { - "id" "76767" - side - { - "id" "38621" - "plane" "(2816 128 96) (2464 128 96) (2464 64 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38620" - "plane" "(2816 128 128) (2464 128 128) (2464 128 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38619" - "plane" "(2816 64 96) (2816 128 128) (2816 128 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38618" - "plane" "(2464 128 128) (2816 128 128) (2816 64 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38617" - "plane" "(2464 128 128) (2464 64 96) (2464 128 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 119 112" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "21113" + "plane" "(704 -2016 304) (704 -1992 256) (704 -2120 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - hidden - { - solid + side { - "id" "76840" - side - { - "id" "38628" - "plane" "(2357 281 128) (2348 284 128) (2339 281 128)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38629" - "plane" "(2348 284 320) (2357 281 320) (2360 272 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38630" - "plane" "(2348 284 128) (2357 281 128) (2357 281 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38631" - "plane" "(2357 281 128) (2360 272 128) (2360 272 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38632" - "plane" "(2360 272 128) (2357 263 128) (2357 263 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38633" - "plane" "(2357 263 128) (2348 260 128) (2348 260 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38634" - "plane" "(2348 260 128) (2339 263 128) (2339 263 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38635" - "plane" "(2339 263 128) (2336 272 128) (2336 272 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38636" - "plane" "(2336 272 128) (2339 281 128) (2339 281 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38637" - "plane" "(2339 281 128) (2348 284 128) (2348 284 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 204 113" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "21112" + "plane" "(688 -2016 304) (688 -1992 256) (704 -1992 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - solid - { - "id" "76905" side { - "id" "38679" - "plane" "(480 -938.667 64) (480 -672 64) (512 -672 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 78.2222] 0.25" + "id" "21111" + "plane" "(704 -2120 304) (704 -2120 256) (688 -2120 256)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[1 0 0 -31.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21110" + "plane" "(688 -2120 304) (688 -2016 304) (704 -2016 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135292,21 +139405,33 @@ world } side { - "id" "38678" - "plane" "(480 -672 0) (480 -938.667 0) (512 -832 0)" + "id" "21109" + "plane" "(688 -1992 256) (688 -2120 256) (704 -2120 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 14.2222] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + editor + { + "color" "0 136 201" + "groupid" "26755" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "26969" side { - "id" "38677" - "plane" "(480 -938.667 0) (480 -672 0) (480 -672 64)" + "id" "21120" + "plane" "(704 -2064 384) (704 -2064 368) (688 -2064 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135314,10 +139439,10 @@ world } side { - "id" "38676" - "plane" "(512 -672 0) (512 -832 0) (512 -832 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21119" + "plane" "(688 -2064 384) (688 -2064 368) (688 -2032 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135325,10 +139450,10 @@ world } side { - "id" "38675" - "plane" "(480 -672 0) (512 -672 0) (512 -672 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 14.2222] 0.25" + "id" "21118" + "plane" "(704 -2032 352) (704 -2032 336) (704 -2064 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135336,10 +139461,32 @@ world } side { - "id" "38674" - "plane" "(512 -832 0) (480 -938.668 0) (480 -938.668 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21117" + "plane" "(688 -2032 352) (688 -2032 336) (704 -2032 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21116" + "plane" "(704 -2032 352) (704 -2064 384) (688 -2064 384)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21115" + "plane" "(688 -2032 336) (688 -2064 368) (704 -2064 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135347,44 +139494,44 @@ world } editor { - "color" "0 226 179" - "groupid" "21153" - "visgroupid" "23" + "color" "0 136 201" + "groupid" "26755" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "77002" + "id" "26970" side { - "id" "38757" - "plane" "(1024 -1152 64) (1024 -1472 64) (896 -1472 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "21126" + "plane" "(704 -2144 384) (704 -2144 368) (688 -2144 368)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38756" - "plane" "(1024 -1472 32) (1024 -1152 32) (896 -1152 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "21125" + "plane" "(688 -2144 384) (688 -2144 368) (688 -2064 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38755" - "plane" "(1024 -1472 64) (1024 -1472 32) (896 -1472 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "21124" + "plane" "(704 -2064 384) (704 -2064 368) (704 -2144 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135392,10 +139539,10 @@ world } side { - "id" "38754" - "plane" "(896 -1472 64) (896 -1472 32) (896 -1152 32)" + "id" "21123" + "plane" "(688 -2064 384) (688 -2064 368) (704 -2064 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135403,42 +139550,43 @@ world } side { - "id" "38753" - "plane" "(896 -1152 64) (896 -1152 32) (1024 -1152 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "21122" + "plane" "(704 -2144 384) (688 -2144 384) (688 -2064 384)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 -1 0 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38752" - "plane" "(1024 -1152 64) (1024 -1152 32) (1024 -1472 32)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "21121" + "plane" "(688 -2064 368) (688 -2144 368) (704 -2144 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 147 140" - "visgroupid" "23" + "color" "0 136 201" + "groupid" "26755" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "77004" + "id" "26971" side { - "id" "38769" - "plane" "(896 -1472 64) (672 -1472 64) (752 -1152 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "21133" + "plane" "(688 -2144 368) (688 -2064 368) (704 -2064 368)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" @@ -135447,21 +139595,21 @@ world } side { - "id" "38768" - "plane" "(896 -1152 32) (752 -1152 32) (672 -1472 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "21132" + "plane" "(688 -2016 304) (688 -2032 336) (688 -2064 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38767" - "plane" "(896 -1472 32) (672 -1472 32) (672 -1472 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "21131" + "plane" "(704 -2144 304) (704 -2144 368) (704 -2064 368)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135469,10 +139617,21 @@ world } side { - "id" "38766" - "plane" "(672 -1472 32) (752 -1152 32) (752 -1152 64)" + "id" "21130" + "plane" "(704 -2016 304) (704 -2032 336) (688 -2032 336)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" + "uaxis" "[0 0 1 133] 0.25" + "vaxis" "[1 0 0 91] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21129" + "plane" "(704 -2032 336) (704 -2064 368) (688 -2064 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135480,8 +139639,8 @@ world } side { - "id" "38765" - "plane" "(752 -1152 32) (896 -1152 32) (896 -1152 64)" + "id" "21128" + "plane" "(688 -2144 304) (688 -2144 368) (704 -2144 368)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -135491,65 +139650,55 @@ world } side { - "id" "38764" - "plane" "(896 -1152 32) (896 -1472 32) (896 -1472 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" + "id" "21127" + "plane" "(688 -2016 304) (688 -2144 304) (704 -2144 304)" + "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 147 140" - "visgroupid" "23" + "color" "0 136 201" + "groupid" "26755" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "77017" + "id" "26982" side { - "id" "38776" - "plane" "(896 -1184 256) (880 -1184 256) (752 -1152 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21145" + "plane" "(704 -2176 256) (704 -2112 256) (708 -2112 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38775" - "plane" "(832 -832 64) (752 -1152 64) (880 -1184 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21144" + "plane" "(704 -2112 248) (704 -2176 248) (708 -2176 248)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38774" - "plane" "(896 -1184 256) (896 -832 256) (896 -832 64)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38773" - "plane" "(896 -832 256) (832 -832 256) (832 -832 64)" + "id" "21143" + "plane" "(704 -2176 248) (704 -2112 248) (704 -2112 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135557,10 +139706,10 @@ world } side { - "id" "38772" - "plane" "(752 -1152 256) (880 -1184 256) (880 -1184 64)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 256] 0.25" + "id" "21142" + "plane" "(708 -2112 248) (708 -2176 248) (708 -2176 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135568,10 +139717,10 @@ world } side { - "id" "38771" - "plane" "(832 -832 256) (752 -1152 256) (752 -1152 64)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "21141" + "plane" "(704 -2112 248) (708 -2112 248) (708 -2112 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135579,9 +139728,9 @@ world } side { - "id" "38770" - "plane" "(880 -1184 256) (896 -1184 256) (896 -1184 64)" - "material" "DEV/GRAYGRID" + "id" "21140" + "plane" "(708 -2176 248) (704 -2176 248) (704 -2176 256)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -135590,42 +139739,43 @@ world } editor { - "color" "0 137 234" + "color" "0 100 221" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "77074" + "id" "26992" side { - "id" "38787" - "plane" "(-192 -1768 48) (-192 -1760 48) (-64 -1760 48)" - "material" "TEROUST/ARPEGGIO/COURTYARD/COURTYARD_EDGETILES" - "uaxis" "[0 1 0 160] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "21169" + "plane" "(576 -2624 256) (608 -2624 256) (608 -2816 448)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38786" - "plane" "(-192 -1760 32) (-192 -1760 48) (-192 -1768 48)" + "id" "21168" + "plane" "(576 -2816 64) (608 -2816 64) (608 -2624 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38785" - "plane" "(-64 -1768 32) (-64 -1768 48) (-64 -1760 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "id" "21167" + "plane" "(576 -2624 64) (576 -2624 256) (576 -2816 448)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135633,10 +139783,10 @@ world } side { - "id" "38784" - "plane" "(-64 -1760 32) (-64 -1760 48) (-192 -1760 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "21166" + "plane" "(608 -2624 256) (608 -2624 64) (608 -2816 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135644,65 +139794,76 @@ world } side { - "id" "38783" - "plane" "(-192 -1768 32) (-192 -1768 48) (-64 -1768 48)" - "material" "TEROUST/ARPEGGIO/COURTYARD/COURTYARD_EDGETILES" - "uaxis" "[0 0 1 -448] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "90" + "id" "21165" + "plane" "(608 -2624 64) (608 -2624 256) (576 -2624 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38782" - "plane" "(-192 -1760 32) (-192 -1768 32) (-64 -1768 32)" + "id" "21164" + "plane" "(576 -2816 64) (576 -2816 448) (608 -2816 448)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" - "visgroupid" "23" + "color" "0 148 141" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "77087" + "id" "27001" side { - "id" "38804" - "plane" "(1664 448 320) (1536 448 320) (1664 576 320)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21181" + "plane" "(608 -2624 224) (1056 -2624 224) (1056 -2816 416)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38803" - "plane" "(1664 576 64) (1536 448 64) (1664 448 64)" + "id" "21180" + "plane" "(608 -2816 64) (1056 -2816 64) (1056 -2624 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38802" - "plane" "(1664 448 64) (1536 448 64) (1536 448 320)" + "id" "21179" + "plane" "(608 -2624 64) (608 -2624 224) (608 -2816 416)" + "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" "21178" + "plane" "(1056 -2624 224) (1056 -2624 64) (1056 -2816 64)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135710,10 +139871,10 @@ world } side { - "id" "38801" - "plane" "(1664 576 64) (1664 448 64) (1664 448 320)" + "id" "21177" + "plane" "(1056 -2624 64) (1056 -2624 224) (608 -2624 224)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135721,10 +139882,10 @@ world } side { - "id" "38800" - "plane" "(1536 448 64) (1664 576 64) (1664 576 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 256] 0.25" + "id" "21176" + "plane" "(608 -2816 64) (608 -2816 416) (1056 -2816 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135732,19 +139893,20 @@ world } editor { - "color" "0 137 234" + "color" "0 232 205" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "77089" + "id" "27003" side { - "id" "38816" - "plane" "(-576 -144 48) (-576 0 48) (-560 0 48)" - "material" "DEV/REFLECTIVITY_30B" + "id" "21182" + "plane" "(704 -2640 320) (800 -2640 320) (800 -2720 320)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -135753,8 +139915,8 @@ world } side { - "id" "38815" - "plane" "(-576 0 0) (-576 -144 0) (-560 -144 0)" + "id" "21183" + "plane" "(704 -2720 224) (800 -2720 224) (800 -2640 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -135764,9 +139926,9 @@ world } side { - "id" "38814" - "plane" "(-576 -144 0) (-576 0 0) (-576 0 48)" - "material" "DEV/REFLECTIVITY_30B" + "id" "21184" + "plane" "(704 -2640 224) (704 -2640 320) (704 -2720 320)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -135775,8 +139937,8 @@ world } side { - "id" "38813" - "plane" "(-560 0 0) (-560 -144 0) (-560 -144 48)" + "id" "21185" + "plane" "(800 -2720 224) (800 -2720 320) (800 -2640 320)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -135786,9 +139948,9 @@ world } side { - "id" "38812" - "plane" "(-576 0 0) (-560 0 0) (-560 0 48)" - "material" "DEV/REFLECTIVITY_30B" + "id" "21186" + "plane" "(800 -2640 224) (800 -2640 320) (704 -2640 320)" + "material" "DEV/REFLECTIVITY_10B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -135797,9 +139959,9 @@ world } side { - "id" "38811" - "plane" "(-560 -144 0) (-576 -144 0) (-576 -144 48)" - "material" "DEV/REFLECTIVITY_30B" + "id" "21187" + "plane" "(704 -2720 224) (704 -2720 320) (800 -2720 320)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -135808,20 +139970,19 @@ world } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "0 168 249" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "77095" + "id" "27010" side { - "id" "38834" - "plane" "(-832 -560 48) (-832 -512 48) (-828 -512 48)" - "material" "DEV/REFLECTIVITY_30B" + "id" "21199" + "plane" "(384 -2640 320) (480 -2640 320) (480 -2720 320)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -135830,9 +139991,9 @@ world } side { - "id" "38833" - "plane" "(-828 -560 44) (-828 -512 44) (-832 -512 40)" - "material" "DEV/REFLECTIVITY_30B" + "id" "21198" + "plane" "(384 -2720 224) (480 -2720 224) (480 -2640 224)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -135841,9 +140002,9 @@ world } side { - "id" "38832" - "plane" "(-828 -512 44) (-828 -560 44) (-828 -560 48)" - "material" "DEV/REFLECTIVITY_30B" + "id" "21197" + "plane" "(384 -2640 224) (384 -2640 320) (384 -2720 320)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -135852,10 +140013,10 @@ world } side { - "id" "38831" - "plane" "(-832 -512 40) (-828 -512 44) (-828 -512 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "id" "21196" + "plane" "(480 -2720 224) (480 -2720 320) (480 -2640 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135863,10 +140024,10 @@ world } side { - "id" "38830" - "plane" "(-832 -560 40) (-832 -512 40) (-832 -512 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "id" "21195" + "plane" "(480 -2640 224) (480 -2640 320) (384 -2640 320)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135874,9 +140035,9 @@ world } side { - "id" "38829" - "plane" "(-832 -560 48) (-828 -560 48) (-828 -560 44)" - "material" "DEV/REFLECTIVITY_30B" + "id" "21194" + "plane" "(384 -2720 224) (384 -2720 320) (480 -2720 320)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -135885,19 +140046,18 @@ world } editor { - "color" "0 164 221" - "visgroupid" "18" + "color" "0 168 249" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "77096" + "id" "27034" side { - "id" "38840" - "plane" "(-832 -480 48) (-832 -432 48) (-828 -432 48)" + "id" "21226" + "plane" "(704 -2624 320) (704 -2816 320) (800 -2816 320)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -135907,19 +140067,30 @@ world } side { - "id" "38839" - "plane" "(-828 -480 44) (-828 -432 44) (-832 -432 40)" - "material" "DEV/REFLECTIVITY_30B" + "id" "21225" + "plane" "(800 -2624 320) (752 -2624 368) (704 -2624 320)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38838" - "plane" "(-828 -432 44) (-828 -480 44) (-828 -480 48)" + "id" "21224" + "plane" "(704 -2816 320) (752 -2816 368) (800 -2816 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" "21223" + "plane" "(704 -2816 320) (704 -2624 320) (752 -2624 368)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -135929,10 +140100,42 @@ world } side { - "id" "38837" - "plane" "(-832 -432 40) (-828 -432 44) (-828 -432 48)" + "id" "21222" + "plane" "(800 -2624 320) (800 -2816 320) (752 -2816 368)" + "material" "DEV/REFLECTIVITY_30B" + "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 249" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "27038" + side + { + "id" "21251" + "plane" "(384 -2624 320) (384 -2816 320) (480 -2816 320)" "material" "DEV/REFLECTIVITY_30B" "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21250" + "plane" "(480 -2624 320) (432 -2624 368) (384 -2624 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135940,10 +140143,10 @@ world } side { - "id" "38836" - "plane" "(-832 -480 40) (-832 -432 40) (-832 -432 48)" + "id" "21249" + "plane" "(384 -2816 320) (432 -2816 368) (480 -2816 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135951,10 +140154,21 @@ world } side { - "id" "38835" - "plane" "(-832 -480 48) (-828 -480 48) (-828 -480 44)" + "id" "21248" + "plane" "(384 -2816 320) (384 -2624 320) (432 -2624 368)" "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21247" + "plane" "(480 -2624 320) (480 -2816 320) (432 -2816 368)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -135962,370 +140176,29 @@ world } editor { - "color" "0 164 221" - "visgroupid" "18" + "color" "0 168 249" "visgroupshown" "1" "visgroupautoshown" "1" } } - hidden + solid { - solid + "id" "27042" + side { - "id" "77099" - side - { - "id" "38852" - "plane" "(-832 -564 0) (-832 -428 0) (-832 -428 48)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38851" - "plane" "(-828 -432 0) (-828 -560 0) (-828 -560 48)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38850" - "plane" "(-832 -428 0) (-828 -432 0) (-828 -432 48)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38849" - "plane" "(-828 -560 0) (-832 -564 0) (-832 -564 48)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38848" - "plane" "(-832 -564 0) (-828 -560 0) (-828 -432 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38847" - "plane" "(-832 -428 48) (-828 -432 48) (-828 -560 48)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "74806" - side - { - "id" "38568" - "plane" "(1600 448 64) (2112 448 64) (2112 960 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38567" - "plane" "(2112 960 128) (2112 960 64) (2112 448 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38566" - "plane" "(2112 448 128) (2112 448 64) (1600 448 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38565" - "plane" "(1600 960 64) (2112 960 64) (2112 960 128)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38564" - "plane" "(2112 960 128) (2112 448 128) (1600 448 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 144 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "74812" - side - { - "id" "38578" - "plane" "(1856 544 96) (1856 448 96) (2112 448 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38577" - "plane" "(2112 448 128) (2112 448 96) (1856 448 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38576" - "plane" "(1856 448 128) (1856 448 96) (1856 544 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38575" - "plane" "(2112 544 96) (2112 448 96) (2112 448 128)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38574" - "plane" "(2112 448 128) (1856 448 128) (1856 544 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 144 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "73875" - side - { - "id" "38548" - "plane" "(-256 -2272 0) (0 -2272 64) (0 -2432 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38547" - "plane" "(-256 -2432 0) (0 -2432 0) (0 -2272 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38545" - "plane" "(0 -2432 0) (0 -2432 64) (0 -2272 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38544" - "plane" "(-256 -2432 0) (0 -2432 64) (0 -2432 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38543" - "plane" "(0 -2272 0) (0 -2272 64) (-256 -2272 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "73879" - side - { - "id" "38558" - "plane" "(-224 -2272 8) (-256 -2272 0) (-224 -2240 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38557" - "plane" "(-224 -2272 0) (-224 -2240 0) (-256 -2272 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38555" - "plane" "(-224 -2272 8) (-224 -2272 0) (-256 -2272 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38554" - "plane" "(-224 -2272 8) (-224 -2240 0) (-224 -2272 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - solid - { - "id" "72464" - side - { - "id" "50100" - "plane" "(164 -636 96) (164 -528 96) (196 -528 96)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[0 1 0 0] 0.2" - "vaxis" "[1 0 0 0] 0.2" - "rotation" "90" + "id" "21263" + "plane" "(704 -2624 320) (720 -2624 320) (720 -2640 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" "50099" - "plane" "(164 -528 -128) (164 -636 -128) (196 -636 -128)" + "id" "21262" + "plane" "(704 -2640 224) (720 -2640 224) (720 -2624 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -136335,9 +140208,9 @@ world } side { - "id" "50098" - "plane" "(164 -636 -128) (164 -528 -128) (164 -528 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21261" + "plane" "(704 -2624 224) (704 -2624 320) (704 -2640 320)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -136346,9 +140219,9 @@ world } side { - "id" "50097" - "plane" "(196 -528 -128) (196 -636 -128) (196 -636 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21260" + "plane" "(720 -2640 224) (720 -2640 320) (720 -2624 320)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -136357,9 +140230,9 @@ world } side { - "id" "50096" - "plane" "(164 -528 -128) (196 -528 -128) (196 -528 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21259" + "plane" "(720 -2624 224) (720 -2624 320) (704 -2624 320)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -136368,10 +140241,10 @@ world } side { - "id" "50095" - "plane" "(196 -636 -128) (164 -636 -128) (164 -636 96)" + "id" "21258" + "plane" "(704 -2640 224) (704 -2640 320) (720 -2640 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136379,43 +140252,42 @@ world } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "0 168 249" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "70093" + "id" "27044" side { - "id" "37571" - "plane" "(1280 -64 320) (1280 0 320) (1296 0 320)" + "id" "21275" + "plane" "(784 -2624 320) (800 -2624 320) (800 -2640 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37570" - "plane" "(1296 -64 128) (1296 -64 320) (1296 0 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "21274" + "plane" "(784 -2640 224) (800 -2640 224) (800 -2624 224)" + "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" "37569" - "plane" "(1280 0 128) (1280 0 320) (1280 -64 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -256] 0.25" + "id" "21273" + "plane" "(784 -2624 224) (784 -2624 320) (784 -2640 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136423,10 +140295,10 @@ world } side { - "id" "37568" - "plane" "(1280 -64 128) (1280 -64 320) (1296 -64 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -192] 0.25" + "id" "21272" + "plane" "(800 -2640 224) (800 -2640 320) (800 -2624 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136434,10 +140306,10 @@ world } side { - "id" "37567" - "plane" "(1296 0 128) (1296 0 320) (1280 0 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -192] 0.25" + "id" "21271" + "plane" "(800 -2624 224) (800 -2624 320) (784 -2624 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136445,52 +140317,52 @@ world } side { - "id" "37566" - "plane" "(1280 0 128) (1280 -64 128) (1296 -64 128)" + "id" "21270" + "plane" "(784 -2640 224) (784 -2640 320) (800 -2640 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 168 249" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "70094" + "id" "27046" side { - "id" "37577" - "plane" "(1280 64 320) (1280 128 320) (1296 128 320)" + "id" "21293" + "plane" "(384 -2624 320) (400 -2624 320) (400 -2640 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37576" - "plane" "(1280 128 128) (1280 128 320) (1280 64 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "21292" + "plane" "(384 -2640 224) (400 -2640 224) (400 -2624 224)" + "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" "37575" - "plane" "(1296 64 128) (1296 64 320) (1296 128 320)" - "material" "DEV/GRAYGRID" + "id" "21291" + "plane" "(384 -2624 224) (384 -2624 320) (384 -2640 320)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -136499,10 +140371,10 @@ world } side { - "id" "37574" - "plane" "(1296 128 128) (1296 128 320) (1280 128 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -64] 0.25" + "id" "21290" + "plane" "(400 -2640 224) (400 -2640 320) (400 -2624 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136510,10 +140382,10 @@ world } side { - "id" "37573" - "plane" "(1280 64 128) (1280 64 320) (1296 64 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -64] 0.25" + "id" "21289" + "plane" "(400 -2624 224) (400 -2624 320) (384 -2624 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136521,31 +140393,31 @@ world } side { - "id" "37572" - "plane" "(1280 128 128) (1280 64 128) (1296 64 128)" + "id" "21288" + "plane" "(384 -2640 224) (384 -2640 320) (400 -2640 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 168 249" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "70176" + "id" "27047" side { - "id" "37589" - "plane" "(1056 640 64) (1056 768 64) (1184 768 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" + "id" "21299" + "plane" "(464 -2624 320) (480 -2624 320) (480 -2640 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136553,8 +140425,8 @@ world } side { - "id" "37588" - "plane" "(1056 768 0) (1056 640 0) (1184 640 0)" + "id" "21298" + "plane" "(464 -2640 224) (480 -2640 224) (480 -2624 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -136564,9 +140436,9 @@ world } side { - "id" "37587" - "plane" "(1056 640 0) (1056 768 0) (1056 768 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21297" + "plane" "(464 -2624 224) (464 -2624 320) (464 -2640 320)" + "material" "DEV/REFLECTIVITY_30B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -136575,9 +140447,9 @@ world } side { - "id" "37586" - "plane" "(1184 768 0) (1184 640 0) (1184 640 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21296" + "plane" "(480 -2640 224) (480 -2640 320) (480 -2624 320)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -136586,9 +140458,9 @@ world } side { - "id" "37585" - "plane" "(1056 768 0) (1184 768 0) (1184 768 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21295" + "plane" "(480 -2624 224) (480 -2624 320) (464 -2624 320)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -136597,8 +140469,8 @@ world } side { - "id" "37584" - "plane" "(1184 640 0) (1056 640 0) (1056 640 64)" + "id" "21294" + "plane" "(464 -2640 224) (464 -2640 320) (480 -2640 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -136608,21 +140480,20 @@ world } editor { - "color" "0 217 190" - "visgroupid" "23" + "color" "0 168 249" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "70185" + "id" "27052" side { - "id" "37606" - "plane" "(1152 640 64) (1184 640 64) (1184 608 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" + "id" "21305" + "plane" "(320 -2624 224) (576 -2624 224) (576 -2816 416)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136630,19 +140501,19 @@ world } side { - "id" "37605" - "plane" "(1152 640 0) (1184 608 0) (1184 640 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "21304" + "plane" "(320 -2624 224) (320 -2816 416) (320 -2816 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37604" - "plane" "(1184 640 0) (1184 608 0) (1184 608 64)" + "id" "21303" + "plane" "(576 -2816 416) (576 -2624 224) (576 -2624 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -136652,9 +140523,9 @@ world } side { - "id" "37603" - "plane" "(1152 640 0) (1184 640 0) (1184 640 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21302" + "plane" "(576 -2624 224) (320 -2624 224) (320 -2624 192)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -136663,31 +140534,43 @@ world } side { - "id" "37602" - "plane" "(1184 608 0) (1152 640 0) (1152 640 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 0] 0.25" + "id" "21301" + "plane" "(320 -2816 416) (576 -2816 416) (576 -2816 192)" + "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" "21300" + "plane" "(320 -2816 192) (576 -2816 192) (576 -2624 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "0 217 190" + "color" "0 232 205" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "70214" + "id" "27053" side { - "id" "37623" - "plane" "(1280 128 128) (1184 128 128) (1184 224 128)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" + "id" "21311" + "plane" "(320 -2640 64) (320 -2816 64) (576 -2816 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136695,21 +140578,21 @@ world } side { - "id" "37622" - "plane" "(1184 128 64) (1280 128 64) (1184 224 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 34.9093] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "21310" + "plane" "(320 -2816 192) (320 -2816 64) (320 -2640 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37621" - "plane" "(1280 128 64) (1184 128 64) (1184 128 128)" + "id" "21309" + "plane" "(576 -2640 192) (576 -2640 64) (576 -2816 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 34.9093] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136717,10 +140600,10 @@ world } side { - "id" "37620" - "plane" "(1184 128 64) (1184 224 64) (1184 224 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "21308" + "plane" "(320 -2640 192) (320 -2640 64) (576 -2640 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136728,54 +140611,54 @@ world } side { - "id" "37619" - "plane" "(1184 224 64) (1280 128 64) (1280 128 128)" + "id" "21307" + "plane" "(576 -2816 192) (576 -2816 64) (320 -2816 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "21306" + "plane" "(320 -2816 192) (320 -2640 192) (576 -2640 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "0 226 179" - "groupid" "70187" + "color" "0 232 205" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "70221" + "id" "27055" side { - "id" "37630" - "plane" "(1184 320 320) (1408 320 320) (1408 128 320)" + "id" "21323" + "plane" "(320 -2640 64) (384 -2640 64) (384 -2624 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37629" - "plane" "(1184 224 64) (1280 128 64) (1408 128 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "21322" + "plane" "(320 -2640 64) (320 -2624 64) (320 -2624 192)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37628" - "plane" "(1184 320 64) (1184 320 320) (1184 224 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136783,10 +140666,10 @@ world } side { - "id" "37627" - "plane" "(1408 128 64) (1408 128 320) (1408 320 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 256] 0.25" + "id" "21321" + "plane" "(384 -2624 64) (384 -2640 64) (384 -2640 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136794,10 +140677,10 @@ world } side { - "id" "37626" - "plane" "(1408 320 64) (1408 320 320) (1184 320 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 0] 0.25" + "id" "21320" + "plane" "(320 -2624 64) (384 -2624 64) (384 -2624 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136805,10 +140688,10 @@ world } side { - "id" "37625" - "plane" "(1280 128 64) (1280 128 320) (1408 128 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 0] 0.25" + "id" "21319" + "plane" "(384 -2640 64) (320 -2640 64) (320 -2640 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136816,31 +140699,32 @@ world } side { - "id" "37624" - "plane" "(1184 224 64) (1184 224 320) (1280 128 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "21318" + "plane" "(320 -2624 192) (384 -2624 192) (384 -2640 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 232 205" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "70287" + "id" "27057" side { - "id" "37671" - "plane" "(1664 672 72) (1664 960 72) (1728 960 72)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" + "id" "21335" + "plane" "(480 -2640 64) (576 -2640 64) (576 -2624 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136848,20 +140732,20 @@ world } side { - "id" "37670" - "plane" "(1664 960 64) (1664 672 64) (1728 672 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "21334" + "plane" "(480 -2640 64) (480 -2624 64) (480 -2624 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37669" - "plane" "(1664 672 64) (1664 960 64) (1664 960 72)" - "material" "RYAN_DEV/BROWN2" + "id" "21333" + "plane" "(576 -2624 64) (576 -2640 64) (576 -2640 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -136870,10 +140754,10 @@ world } side { - "id" "37668" - "plane" "(1728 960 64) (1728 672 64) (1728 672 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "21332" + "plane" "(480 -2624 64) (576 -2624 64) (576 -2624 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136881,8 +140765,8 @@ world } side { - "id" "37667" - "plane" "(1664 960 64) (1728 960 64) (1728 960 72)" + "id" "21331" + "plane" "(576 -2640 64) (480 -2640 64) (480 -2640 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -136892,32 +140776,32 @@ world } side { - "id" "37666" - "plane" "(1728 672 64) (1664 672 64) (1664 672 72)" + "id" "21330" + "plane" "(480 -2624 192) (576 -2624 192) (576 -2640 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 217 190" - "visgroupid" "23" + "color" "0 232 205" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "70293" + "id" "27068" side { - "id" "37683" - "plane" "(1728 960 80) (1792 960 80) (1792 608 80)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" + "id" "21365" + "plane" "(480 -2640 160) (480 -2624 160) (432 -2624 168)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136925,21 +140809,21 @@ world } side { - "id" "37682" - "plane" "(1728 672 64) (1792 608 64) (1792 960 64)" + "id" "21364" + "plane" "(480 -2624 160) (480 -2640 160) (480 -2640 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37681" - "plane" "(1728 960 64) (1728 960 80) (1728 672 80)" - "material" "RYAN_DEV/BROWN2" - "uaxis" "[0 1 0 0] 0.25" + "id" "21363" + "plane" "(480 -2624 160) (480 -2624 192) (432 -2624 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136947,10 +140831,10 @@ world } side { - "id" "37680" - "plane" "(1792 608 64) (1792 608 80) (1792 960 80)" + "id" "21362" + "plane" "(480 -2640 160) (432 -2640 168) (432 -2640 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136958,21 +140842,21 @@ world } side { - "id" "37679" - "plane" "(1792 960 64) (1792 960 80) (1728 960 80)" + "id" "21361" + "plane" "(480 -2624 192) (480 -2640 192) (432 -2640 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37678" - "plane" "(1728 672 64) (1728 672 80) (1792 608 80)" + "id" "21360" + "plane" "(432 -2640 168) (432 -2624 168) (432 -2624 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136980,21 +140864,21 @@ world } editor { - "color" "0 217 190" - "visgroupid" "23" + "color" "0 232 205" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "70296" + "id" "27069" side { - "id" "37695" - "plane" "(1792 960 88) (1856 960 88) (1856 544 88)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" + "id" "21371" + "plane" "(384 -2624 160) (384 -2640 160) (432 -2640 168)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137002,21 +140886,21 @@ world } side { - "id" "37694" - "plane" "(1792 608 64) (1856 544 64) (1856 960 64)" + "id" "21370" + "plane" "(384 -2640 160) (384 -2624 160) (384 -2624 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37693" - "plane" "(1792 960 64) (1792 960 88) (1792 608 88)" - "material" "RYAN_DEV/BROWN2" - "uaxis" "[0 1 0 0] 0.25" + "id" "21369" + "plane" "(384 -2624 160) (432 -2624 168) (432 -2624 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137024,10 +140908,10 @@ world } side { - "id" "37692" - "plane" "(1856 544 64) (1856 544 88) (1856 960 88)" + "id" "21368" + "plane" "(384 -2640 160) (384 -2640 192) (432 -2640 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137035,21 +140919,21 @@ world } side { - "id" "37691" - "plane" "(1856 960 64) (1856 960 88) (1792 960 88)" + "id" "21367" + "plane" "(384 -2624 192) (432 -2624 192) (432 -2640 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37690" - "plane" "(1792 608 64) (1792 608 88) (1856 544 88)" + "id" "21366" + "plane" "(432 -2624 168) (432 -2640 168) (432 -2640 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137057,21 +140941,21 @@ world } editor { - "color" "0 217 190" - "visgroupid" "23" + "color" "0 232 205" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "70299" + "id" "27072" side { - "id" "37707" - "plane" "(1920 448 96) (1856 448 96) (1856 960 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" + "id" "21383" + "plane" "(320 -3264 7.62939e-06) (1056 -3264 7.62939e-06) (1056 -2816 7.62939e-06)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137079,20 +140963,20 @@ world } side { - "id" "37706" - "plane" "(1920 960 64) (1856 960 64) (1856 448 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "21382" + "plane" "(320 -3264 7.62939e-06) (320 -2816 7.62939e-06) (320 -2816 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37705" - "plane" "(1856 448 96) (1856 448 64) (1856 960 64)" - "material" "RYAN_DEV/BROWN2" + "id" "21381" + "plane" "(1056 -2816 7.62939e-06) (1056 -3264 7.62939e-06) (1056 -3264 416)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -137101,10 +140985,10 @@ world } side { - "id" "37704" - "plane" "(1920 960 96) (1920 960 64) (1920 448 64)" + "id" "21380" + "plane" "(320 -2816 7.62939e-06) (1056 -2816 7.62939e-06) (1056 -2816 416)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137112,8 +140996,8 @@ world } side { - "id" "37703" - "plane" "(1856 960 96) (1856 960 64) (1920 960 64)" + "id" "21379" + "plane" "(1056 -3264 7.62939e-06) (320 -3264 7.62939e-06) (320 -3264 416)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -137123,32 +141007,32 @@ world } side { - "id" "37702" - "plane" "(1920 448 96) (1920 448 64) (1856 448 64)" + "id" "21378" + "plane" "(320 -2816 416) (1056 -2816 416) (1056 -3264 416)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 217 190" - "visgroupid" "23" + "color" "0 232 205" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "70308" + "id" "26289" side { - "id" "37719" - "plane" "(1984 448 104) (1920 448 104) (1920 960 104)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" + "id" "20310" + "plane" "(1024 -3584 -64) (1024 -1312 -64) (1472 -1312 -64)" + "material" "LIQUIDS/INFERNO_WATER" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137156,8 +141040,8 @@ world } side { - "id" "37718" - "plane" "(1984 960 64) (1920 960 64) (1920 448 64)" + "id" "20309" + "plane" "(1024 -1312 -128) (1024 -3584 -128) (1472 -3584 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -137167,9 +141051,9 @@ world } side { - "id" "37717" - "plane" "(1920 448 104) (1920 448 64) (1920 960 64)" - "material" "RYAN_DEV/BROWN2" + "id" "20308" + "plane" "(1024 -3584 -128) (1024 -1312 -128) (1024 -1312 -64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -137178,8 +141062,8 @@ world } side { - "id" "37716" - "plane" "(1984 960 104) (1984 960 64) (1984 448 64)" + "id" "20307" + "plane" "(1472 -1312 -128) (1472 -3584 -128) (1472 -3584 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -137189,8 +141073,8 @@ world } side { - "id" "37715" - "plane" "(1920 960 104) (1920 960 64) (1984 960 64)" + "id" "20306" + "plane" "(1024 -1312 -128) (1472 -1312 -128) (1472 -1312 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -137200,8 +141084,8 @@ world } side { - "id" "37714" - "plane" "(1984 448 104) (1984 448 64) (1920 448 64)" + "id" "20305" + "plane" "(1472 -3584 -128) (1024 -3584 -128) (1024 -3584 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -137211,21 +141095,20 @@ world } editor { - "color" "0 217 190" - "visgroupid" "23" + "color" "0 173 158" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "70312" + "id" "21141" side { - "id" "37731" - "plane" "(2048 448 112) (1984 448 112) (1984 960 112)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" + "id" "18011" + "plane" "(512 -832 0) (544 -832 0) (352 -1472 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137233,8 +141116,8 @@ world } side { - "id" "37730" - "plane" "(2048 960 64) (1984 960 64) (1984 448 64)" + "id" "18010" + "plane" "(320 -1472 -128) (352 -1472 -128) (544 -832 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -137244,9 +141127,9 @@ world } side { - "id" "37729" - "plane" "(1984 448 112) (1984 448 64) (1984 960 64)" - "material" "RYAN_DEV/BROWN2" + "id" "18009" + "plane" "(512 -832 -128) (512 -832 0) (320 -1472 0)" + "material" "RYAN_DEV/DEV_BLACK" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -137255,8 +141138,8 @@ world } side { - "id" "37728" - "plane" "(2048 960 112) (2048 960 64) (2048 448 64)" + "id" "18008" + "plane" "(352 -1472 -128) (352 -1472 0) (544 -832 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -137266,9 +141149,9 @@ world } side { - "id" "37727" - "plane" "(1984 960 112) (1984 960 64) (2048 960 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "18007" + "plane" "(320 -1472 -128) (320 -1472 0) (352 -1472 0)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -137277,9 +141160,9 @@ world } side { - "id" "37726" - "plane" "(2048 448 112) (2048 448 64) (1984 448 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "18006" + "plane" "(544 -832 -128) (544 -832 0) (512 -832 0)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -137288,21 +141171,20 @@ world } editor { - "color" "0 217 190" - "visgroupid" "23" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "70314" + "id" "22121" side { - "id" "37743" - "plane" "(2048 448 120) (2048 768 120) (2112 768 120)" + "id" "18552" + "plane" "(640 896 88) (448 704 88) (448 736 88)" "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137310,8 +141192,8 @@ world } side { - "id" "37742" - "plane" "(2048 768 64) (2048 448 64) (2112 448 64)" + "id" "18551" + "plane" "(448 704 80) (640 896 80) (624 912 80)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -137321,9 +141203,9 @@ world } side { - "id" "37741" - "plane" "(2048 448 64) (2048 768 64) (2048 768 120)" - "material" "RYAN_DEV/BROWN2" + "id" "18550" + "plane" "(448 704 80) (448 704 88) (640 896 88)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -137332,10 +141214,10 @@ world } side { - "id" "37740" - "plane" "(2112 768 64) (2112 448 64) (2112 448 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "18549" + "plane" "(640 896 80) (640 896 88) (624 912 88)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137343,10 +141225,10 @@ world } side { - "id" "37739" - "plane" "(2048 768 64) (2112 768 64) (2112 768 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "18548" + "plane" "(448 736 80) (448 736 88) (448 704 88)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137354,10 +141236,10 @@ world } side { - "id" "37738" - "plane" "(2112 448 64) (2048 448 64) (2048 448 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "18547" + "plane" "(624 912 80) (624 912 88) (448 736 88)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137365,7 +141247,7 @@ world } editor { - "color" "0 217 190" + "color" "0 144 237" "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" @@ -137373,110 +141255,33 @@ world } solid { - "id" "70316" + "id" "22144" side { - "id" "37755" - "plane" "(2112 448 128) (2112 768 128) (2176 768 128)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "18618" + "plane" "(704 832 256) (640 896 256) (732 988 256)" + "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" "37754" - "plane" "(2112 768 64) (2112 448 64) (2176 448 64)" + "id" "18617" + "plane" "(640 896 64) (704 832 64) (732 832 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37753" - "plane" "(2112 448 64) (2112 768 64) (2112 768 128)" - "material" "RYAN_DEV/BROWN2" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37752" - "plane" "(2176 768 64) (2176 448 64) (2176 448 128)" - "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" "37751" - "plane" "(2112 768 64) (2176 768 64) (2176 768 128)" - "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" "37750" - "plane" "(2176 448 64) (2112 448 64) (2112 448 128)" - "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 217 190" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "70423" - side - { - "id" "37822" - "plane" "(704 128 320) (544 128 320) (544 192 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" "37821" - "plane" "(832 192 64) (544 192 64) (544 128 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" "37820" - "plane" "(544 192 64) (832 192 64) (832 192 320)" + "id" "18616" + "plane" "(640 896 64) (640 896 256) (704 832 256)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -137486,20 +141291,9 @@ world } side { - "id" "37819" - "plane" "(704 128 64) (544 128 64) (544 128 320)" + "id" "18615" + "plane" "(732 987.988 64) (732 988 256) (640 896 256)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37818" - "plane" "(544 128 64) (544 192 64) (544 192 320)" - "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -137508,8 +141302,8 @@ world } side { - "id" "37817" - "plane" "(832 192 64) (704 128 64) (704 128 320)" + "id" "18614" + "plane" "(704 832 64) (704 832 256) (732 832 256)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -137517,76 +141311,11 @@ world "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "0 108 237" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "70434" - side - { - "id" "37828" - "plane" "(1184 128 128) (960 128 128) (960 320 128)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37827" - "plane" "(960 128 64) (1184 128 64) (1184 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" "37826" - "plane" "(1184 128 64) (960 128 64) (960 128 128)" - "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" "37825" - "plane" "(1184 320 64) (1184 128 64) (1184 128 128)" - "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" "37824" - "plane" "(960 320 64) (1184 320 64) (1184 320 128)" + "id" "18613" + "plane" "(732 832 64) (732 832 256) (732 988 256)" "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" "37823" - "plane" "(960 128 64) (960 320 64) (960 320 128)" - "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -137595,98 +141324,86 @@ world } editor { - "color" "0 226 179" - "groupid" "926" - "visgroupid" "23" + "color" "0 108 237" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + hidden { - "id" "70435" - side - { - "id" "37834" - "plane" "(1408 -32 128) (544 -32 128) (544 128 128)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37833" - "plane" "(544 -32 64) (1408 -32 64) (1408 128 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 29.0909] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37832" - "plane" "(1408 -32 64) (544 -32 64) (544 -32 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 29.0909] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37831" - "plane" "(1408 128 64) (1408 -32 64) (1408 -32 128)" - "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" "37830" - "plane" "(544 128 64) (1408 128 64) (1408 128 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 29.0909] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37829" - "plane" "(544 -32 64) (544 128 64) (544 128 128)" - "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 + solid { - "color" "0 226 179" - "groupid" "70398" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "22272" + side + { + "id" "18629" + "plane" "(-63.9844 -1856 64) (48.0156 -1856 64) (48.0156 -1600 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 63.9375] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18628" + "plane" "(48.0156 -1600 80) (48.0156 -1600 64) (48.0156 -1856 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18627" + "plane" "(-64 -1600 64) (48.0156 -1600 64) (48.0156 -1600 80)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 63.9375] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18626" + "plane" "(48.0156 -1856 80) (48.0156 -1856 64) (-63.9981 -1856 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 63.9375] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18625" + "plane" "(-63.9844 -1856 64) (-63.9844 -1600 64) (48.0156 -1600 80)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 63.9375] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 233 234" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } solid { - "id" "70436" + "id" "25508" side { - "id" "37840" - "plane" "(896 -128 128) (576 -128 128) (576 -32 128)" + "id" "19741" + "plane" "(2464 -960 88) (2464 -704 88) (2496 -704 88)" "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -137696,10 +141413,10 @@ world } side { - "id" "37839" - "plane" "(576 -128 64) (896 -128 64) (896 -32 64)" + "id" "19740" + "plane" "(2464 -704 80) (2464 -960 80) (2496 -960 80)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 29.0909] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137707,19 +141424,19 @@ world } side { - "id" "37838" - "plane" "(896 -128 64) (576 -128 64) (576 -128 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 29.0909] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "19739" + "plane" "(2464 -960 80) (2464 -704 80) (2464 -704 88)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37837" - "plane" "(896 -32 64) (896 -128 64) (896 -128 128)" + "id" "19738" + "plane" "(2496 -704 80) (2496 -960 80) (2496 -960 88)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -137729,10 +141446,10 @@ world } side { - "id" "37836" - "plane" "(576 -32 64) (896 -32 64) (896 -32 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 29.0909] 0.25" + "id" "19737" + "plane" "(2464 -704 80) (2496 -704 80) (2496 -704 88)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137740,10 +141457,10 @@ world } side { - "id" "37835" - "plane" "(576 -128 64) (576 -32 64) (576 -32 128)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 0] 0.25" + "id" "19736" + "plane" "(2496 -960 80) (2464 -960 80) (2464 -960 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -137751,2064 +141468,1670 @@ world } editor { - "color" "0 226 179" - "groupid" "70392" + "color" "0 139 240" "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + hidden { - "id" "70500" - side - { - "id" "37942" - "plane" "(-864 -416 128) (-832 -416 128) (-832 -432 128)" - "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" "37941" - "plane" "(-864 -432 48) (-832 -432 48) (-832 -416 48)" - "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" "37940" - "plane" "(-832 -416 48) (-832 -432 48) (-832 -432 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37939" - "plane" "(-864 -416 48) (-832 -416 48) (-832 -416 128)" - "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" "37938" - "plane" "(-832 -432 48) (-864 -432 48) (-864 -432 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37937" - "plane" "(-864 -432 48) (-864 -416 48) (-864 -416 128)" - "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 + solid { - "color" "0 238 147" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "25530" + side + { + "id" "19813" + "plane" "(-768 -1088 64) (-768 -896 64) (-576 -896 40)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19812" + "plane" "(-768 -896 0) (-768 -1088 0) (-576 -1088 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19811" + "plane" "(-768 -1088 0) (-768 -896 0) (-768 -896 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19810" + "plane" "(-576 -896 0) (-576 -1088 0) (-576 -1088 40)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19809" + "plane" "(-768 -896 0) (-576 -896 0) (-576 -896 40)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19808" + "plane" "(-768 -1088 64) (-576 -1088 40) (-576 -1088 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 176 105" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "70501" - side + solid { - "id" "37948" - "plane" "(-864 -480 128) (-832 -480 128) (-832 -512 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "25539" + side + { + "id" "19825" + "plane" "(-576 -1088 40) (-576 -896 40) (-560 -1088 36)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19824" + "plane" "(-576 -896 0) (-576 -1088 0) (-560 -1088 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19823" + "plane" "(-576 -1088 0) (-576 -896 0) (-576 -896 40)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19822" + "plane" "(-576 -896 0) (-560 -1088 0) (-560 -1088 36)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19820" + "plane" "(-576 -1088 40) (-560 -1088 36) (-560 -1088 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 176 105" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } - side + } + hidden + { + solid { - "id" "37947" - "plane" "(-864 -512 48) (-832 -512 48) (-832 -480 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "25551" + side + { + "id" "19845" + "plane" "(-544 -880 36) (-560 -1088 36) (-576 -896 40)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19844" + "plane" "(-576 -896 0) (-560 -1088 0) (-544 -880 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19843" + "plane" "(-544 -880 0) (-560 -1088 0) (-560 -1088 36)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19842" + "plane" "(-576 -896 40) (-560 -1088 36) (-560 -1088 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19841" + "plane" "(-576 -896 0) (-544 -880 0) (-544 -880 36)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 176 105" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } - side + } + hidden + { + solid { - "id" "37946" - "plane" "(-832 -480 48) (-832 -512 48) (-832 -512 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "25556" + side + { + "id" "19857" + "plane" "(-464 -1040 36) (-544 -880 36) (-320 -768 8)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19856" + "plane" "(-544 -880 0) (-464 -1040 0) (-240 -928 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19855" + "plane" "(-464 -1040 0) (-544 -880 0) (-544 -880 36)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19854" + "plane" "(-320 -768 0) (-240 -928 0) (-240 -928 8)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19853" + "plane" "(-544 -880 0) (-320 -768 0) (-320 -768 8)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19852" + "plane" "(-464 -1040 36) (-240 -928 8) (-240 -928 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 176 105" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } - side + } + hidden + { + solid { - "id" "37945" - "plane" "(-864 -480 48) (-832 -480 48) (-832 -480 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "25570" + side + { + "id" "19869" + "plane" "(-240 -928 8) (-320 -768 8) (-288 -752 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19868" + "plane" "(-320 -768 0) (-240 -928 0) (-200 -928 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19867" + "plane" "(-240 -928 0) (-320 -768 0) (-320 -768 8)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19865" + "plane" "(-320 -768 0) (-288 -752 0) (-320 -768 8)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19864" + "plane" "(-240 -928 8) (-200 -928 0) (-240 -928 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 176 105" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } - side + } + hidden + { + solid { - "id" "37944" - "plane" "(-832 -512 48) (-864 -512 48) (-864 -512 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "25573" + side + { + "id" "19879" + "plane" "(-320 -768 8) (-336 -736 0) (-288 -752 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19878" + "plane" "(-288 -752 0) (-336 -736 0) (-320 -768 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19876" + "plane" "(-320 -768 0) (-336 -736 0) (-320 -768 8)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19875" + "plane" "(-320 -768 8) (-288 -752 0) (-320 -768 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 176 105" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } - side + } + hidden + { + solid { - "id" "37943" - "plane" "(-864 -512 48) (-864 -480 48) (-864 -480 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "25592" + side + { + "id" "19896" + "plane" "(960 768 64) (960 512 64) (1088 512 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19895" + "plane" "(960 512 64) (960 768 64) (960 768 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19894" + "plane" "(960 768 64) (1088 768 64) (960 768 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19893" + "plane" "(1088 512 64) (960 512 64) (960 512 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19892" + "plane" "(960 512 96) (960 768 96) (1088 768 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 144 237" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } - editor + } + hidden + { + solid { - "color" "0 238 147" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "25593" + side + { + "id" "19908" + "plane" "(576 960 64) (640 896 96) (480 736 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19907" + "plane" "(416 800 64) (480 736 64) (640 896 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19905" + "plane" "(480 736 64) (480 736 96) (640 896 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19904" + "plane" "(640 896 96) (576 960 64) (640 896 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19903" + "plane" "(480 736 96) (480 736 64) (416 800 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 144 237" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "70502" - side + solid { - "id" "37954" - "plane" "(-864 -416 48) (-832 -416 48) (-832 -576 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37953" - "plane" "(-864 -576 16) (-832 -576 16) (-832 -416 16)" - "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" "37952" - "plane" "(-832 -416 16) (-832 -576 16) (-832 -576 48)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37951" - "plane" "(-864 -416 16) (-832 -416 16) (-832 -416 48)" - "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" "37950" - "plane" "(-832 -576 16) (-864 -576 16) (-864 -576 48)" - "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" "37949" - "plane" "(-864 -576 16) (-864 -416 16) (-864 -416 48)" - "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" "0 238 147" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "25603" + side + { + "id" "19918" + "plane" "(480 736 96) (384 736 64) (416 800 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19917" + "plane" "(480 736 64) (416 800 64) (384 736 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19915" + "plane" "(416 800 64) (480 736 64) (480 736 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19914" + "plane" "(480 736 64) (384 736 64) (480 736 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 144 237" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "70503" - side - { - "id" "37960" - "plane" "(-864 -416 16) (-832 -416 16) (-832 -576 16)" - "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" "37959" - "plane" "(-864 -576 0) (-832 -576 0) (-832 -416 0)" - "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" "37958" - "plane" "(-832 -416 0) (-832 -576 0) (-832 -576 16)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37957" - "plane" "(-864 -416 0) (-832 -416 0) (-832 -416 16)" - "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" "37956" - "plane" "(-832 -576 0) (-864 -576 0) (-864 -576 16)" - "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" "37955" - "plane" "(-864 -576 0) (-864 -416 0) (-864 -416 16)" - "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 + solid { - "color" "0 194 151" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "25656" + side + { + "id" "19981" + "plane" "(-896 -1680 0) (-896 -1632 16) (-768 -1536 16)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19980" + "plane" "(-768.012 -1536.01 0) (-896 -1632 0) (-896 -1680 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19979" + "plane" "(-896 -1632 16) (-896 -1680 0) (-896 -1632 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19978" + "plane" "(-896 -1632 0) (-768 -1536 0) (-768 -1536 16)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19977" + "plane" "(-768 -1536 0) (-896 -1680 0) (-768 -1536 16)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 135 0" + "groupid" "25783" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "70504" - side - { - "id" "37966" - "plane" "(-864 -512 128) (-848 -512 128) (-848 -560 128)" - "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" "37965" - "plane" "(-864 -560 48) (-848 -560 48) (-848 -512 48)" - "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" "37964" - "plane" "(-848 -512 48) (-848 -560 48) (-848 -560 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37963" - "plane" "(-864 -512 48) (-848 -512 48) (-848 -512 128)" - "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" "37962" - "plane" "(-848 -560 48) (-864 -560 48) (-864 -560 128)" - "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" "37961" - "plane" "(-864 -560 48) (-864 -512 48) (-864 -512 128)" - "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 + solid { - "color" "102 235 0" - "groupid" "28538" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "25657" + side + { + "id" "19985" + "plane" "(-704 -1536 0) (-895.99 -1679.99 0) (-768 -1536 16)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19984" + "plane" "(-896 -1680 0) (-704 -1536 0) (-768 -1536 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19983" + "plane" "(-768 -1536 0) (-704 -1536 0) (-768 -1536 16)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19982" + "plane" "(-768 -1536 16) (-896.016 -1680.02 0) (-768 -1536 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 135 0" + "groupid" "25783" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "70505" - side - { - "id" "37972" - "plane" "(-864 -432 128) (-848 -432 128) (-848 -480 128)" - "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" "37971" - "plane" "(-864 -480 48) (-848 -480 48) (-848 -432 48)" - "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" "37970" - "plane" "(-848 -432 48) (-848 -480 48) (-848 -480 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37969" - "plane" "(-864 -432 48) (-848 -432 48) (-848 -432 128)" - "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" "37968" - "plane" "(-848 -480 48) (-864 -480 48) (-864 -480 128)" - "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" "37967" - "plane" "(-864 -480 48) (-864 -432 48) (-864 -432 128)" - "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 + solid { - "color" "102 235 0" - "groupid" "28538" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "25696" + side + { + "id" "19990" + "plane" "(-896 -1632 16) (-928 -1600 32) (-800 -1520 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19989" + "plane" "(-800 -1520 0) (-928 -1600 0) (-896 -1632 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19988" + "plane" "(-928 -1600 32) (-896 -1632 16) (-896 -1632 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19987" + "plane" "(-928 -1600 0) (-800 -1520 0) (-800 -1520 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19986" + "plane" "(-800 -1520 0) (-896 -1632 0) (-896 -1632 16)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 135 0" + "groupid" "25783" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "70506" - side - { - "id" "37978" - "plane" "(-864 -560 128) (-832 -560 128) (-832 -576 128)" - "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" "37977" - "plane" "(-864 -576 48) (-832 -576 48) (-832 -560 48)" - "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" "37976" - "plane" "(-832 -560 48) (-832 -576 48) (-832 -576 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37975" - "plane" "(-864 -560 48) (-832 -560 48) (-832 -560 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37974" - "plane" "(-832 -576 48) (-864 -576 48) (-864 -576 128)" - "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" "37973" - "plane" "(-864 -576 48) (-864 -560 48) (-864 -560 128)" - "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 + solid { - "color" "0 238 147" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "25697" + side + { + "id" "19995" + "plane" "(-800 -1520 32) (-768 -1536 16) (-896 -1632 16)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19994" + "plane" "(-896 -1632 0) (-768 -1536 0) (-800 -1520 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19993" + "plane" "(-800 -1520 0) (-768 -1536 0) (-768 -1536 16)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19992" + "plane" "(-768 -1536 0) (-896 -1632 0) (-896 -1632 16)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19991" + "plane" "(-800 -1520 32) (-896 -1632 16) (-896 -1632 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 135 0" + "groupid" "25783" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "70507" - side - { - "id" "37984" - "plane" "(-864 -416 160) (-832 -416 160) (-832 -576 160)" - "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" "37983" - "plane" "(-864 -576 128) (-832 -576 128) (-832 -416 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37982" - "plane" "(-832 -416 128) (-832 -576 128) (-832 -576 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37981" - "plane" "(-864 -416 128) (-832 -416 128) (-832 -416 160)" - "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" "37980" - "plane" "(-832 -576 128) (-864 -576 128) (-864 -576 160)" - "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" "37979" - "plane" "(-864 -576 128) (-864 -416 128) (-864 -416 160)" - "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 + solid { - "color" "0 238 147" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "25735" + side + { + "id" "20000" + "plane" "(-928 -1600 32) (-960 -1568 48) (-816 -1504 48)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19999" + "plane" "(-816 -1504 0) (-960 -1568 0) (-928 -1600 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19998" + "plane" "(-960 -1568 48) (-928 -1600 32) (-928 -1600 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19997" + "plane" "(-960 -1568 0) (-816 -1504 0) (-816 -1504 48)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19996" + "plane" "(-816 -1504 0) (-928 -1600 0) (-928 -1600 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 135 0" + "groupid" "25783" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "70508" - side - { - "id" "37990" - "plane" "(-864 -416 256) (-832 -416 256) (-832 -576 256)" - "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" "37989" - "plane" "(-864 -576 160) (-832 -576 160) (-832 -416 160)" - "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" "37988" - "plane" "(-832 -416 160) (-832 -576 160) (-832 -576 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37987" - "plane" "(-864 -416 160) (-832 -416 160) (-832 -416 256)" - "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" "37986" - "plane" "(-832 -576 160) (-864 -576 160) (-864 -576 256)" - "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" "37985" - "plane" "(-864 -576 160) (-864 -416 160) (-864 -416 256)" - "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 + solid { - "color" "0 238 147" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "25736" + side + { + "id" "20005" + "plane" "(-816 -1504 48) (-800 -1520 32) (-928 -1600 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20004" + "plane" "(-928 -1600 0) (-800 -1520 0) (-816 -1504 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20003" + "plane" "(-816 -1504 0) (-800 -1520 0) (-800 -1520 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20002" + "plane" "(-800 -1520 0) (-928 -1600 0) (-928 -1600 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20001" + "plane" "(-816 -1504 48) (-928 -1600 32) (-928 -1600 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 135 0" + "groupid" "25783" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "70703" - side + solid { - "id" "38009" - "plane" "(-576 192 70) (-576 452 70) (0 452 70)" - "material" "CONCRETE/ROADPARKINGLOT" - "uaxis" "[1 0 0 -921] 0.25" - "vaxis" "[0 -1 0 158] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "25767" + side + { + "id" "20010" + "plane" "(-960 -1568 48) (-992 -1504 64) (-832 -1472 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20009" + "plane" "(-832 -1472 0) (-992 -1504 0) (-960 -1568 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20008" + "plane" "(-992 -1504 64) (-960 -1568 48) (-960 -1568 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20007" + "plane" "(-992 -1504 0) (-832 -1472 0) (-832 -1472 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20006" + "plane" "(-832 -1472 0) (-960 -1568 0) (-960 -1568 48)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 135 0" + "groupid" "25783" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } - side + } + hidden + { + solid { - "id" "38008" - "plane" "(-576 452 64) (-576 192 64) (0 192 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" "38007" - "plane" "(-576 192 64) (-576 452 64) (-576 452 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38006" - "plane" "(0 452 64) (0 192 64) (0 192 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38005" - "plane" "(-576 452 64) (0 452 64) (0 452 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38004" - "plane" "(0 192 64) (-576 192 64) (-576 192 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 158 183" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "25768" + side + { + "id" "20015" + "plane" "(-832 -1472 64) (-816 -1504 48) (-960.013 -1568 48)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20014" + "plane" "(-960 -1568 0) (-816 -1504 0) (-832 -1472 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20013" + "plane" "(-832 -1472 0) (-816 -1504 0) (-816 -1504 48)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20012" + "plane" "(-816 -1504 0) (-960 -1568 0) (-960 -1568 48)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20011" + "plane" "(-832 -1472 64) (-960 -1568 48) (-960 -1568 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 135 0" + "groupid" "25783" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "62617" - side - { - "id" "37496" - "plane" "(-320 -3296 288) (-320 -3264 288) (32 -3264 288)" - "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" "37495" - "plane" "(-320 -3264 0) (-320 -3296 0) (32 -3296 0)" - "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" "37494" - "plane" "(-320 -3296 0) (-320 -3264 0) (-320 -3264 288)" - "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" "37493" - "plane" "(32 -3264 0) (32 -3296 0) (32 -3296 288)" - "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" "37492" - "plane" "(-320 -3264 0) (32 -3264 0) (32 -3264 288)" - "material" "DEV/DEV_MEASURERAILS01" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37491" - "plane" "(32 -3296 0) (-320 -3296 0) (-320 -3296 288)" - "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 + solid { - "color" "0 165 170" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "17434" + side + { + "id" "16960" + "plane" "(-1024 -352 4.57764e-05) (-1024 -352 2048) (-1024 -512 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16959" + "plane" "(-960 -512 4.57764e-05) (-960 -512 2048) (-960 -352 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16958" + "plane" "(-960 -352 4.57764e-05) (-960 -352 2048) (-1024 -352 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16957" + "plane" "(-1024 -512 4.57764e-05) (-1024 -512 2048) (-960 -512 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16956" + "plane" "(-1024 -352 4.57764e-05) (-1024 -512 4.57764e-05) (-960 -512 4.57764e-05)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16955" + "plane" "(-1024 -512 2048) (-1024 -352 2048) (-960 -352 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 108 237" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "62820" - side - { - "id" "37529" - "plane" "(576 -384 80) (576 -192 80) (896 -192 80)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37528" - "plane" "(576 -192 64) (576 -384 64) (608 -416 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" "37527" - "plane" "(896 -192 64) (896 -384 64) (896 -384 80)" - "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" "37526" - "plane" "(576 -384 64) (576 -192 64) (576 -192 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37525" - "plane" "(864 -416 64) (608 -416 64) (608 -416 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37524" - "plane" "(576 -192 64) (896 -192 64) (896 -192 80)" - "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" "37523" - "plane" "(608 -416 64) (576 -384 64) (576 -384 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37522" - "plane" "(896 -384 64) (864 -416 64) (864 -416 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor + solid { - "color" "0 158 183" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "17435" + side + { + "id" "16966" + "plane" "(-960 -704 2048) (-960 -704 0) (-960 -544 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16965" + "plane" "(-832 -544 2048) (-832 -544 0) (-832 -576 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16964" + "plane" "(-960 -544 2048) (-960 -544 0) (-832 -544 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16963" + "plane" "(-832 -576 2048) (-832 -576 0) (-960 -704 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16962" + "plane" "(-960 -544 0) (-960 -704 0) (-832 -576 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16961" + "plane" "(-960 -704 2048) (-960 -544 2048) (-832 -544 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 108 237" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "62821" - side - { - "id" "37541" - "plane" "(608 -448 72) (608 -416 72) (864 -416 72)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37540" - "plane" "(608 -416 64) (608 -448 64) (864 -448 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" "37539" - "plane" "(864 -416 64) (864 -448 64) (864 -448 72)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37538" - "plane" "(608 -448 64) (608 -416 64) (608 -416 72)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37537" - "plane" "(864 -448 64) (608 -448 64) (608 -448 72)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37536" - "plane" "(608 -416 64) (864 -416 64) (864 -416 72)" - "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 + solid { - "color" "0 158 183" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "17436" + side + { + "id" "16972" + "plane" "(-1024 -544 2048) (-1024 -544 0) (-1024 -416 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16971" + "plane" "(-832 -416 2048) (-832 -416 0) (-832 -544 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16970" + "plane" "(-1024 -416 2048) (-1024 -416 0) (-832 -416 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16969" + "plane" "(-832 -544 2048) (-832 -544 0) (-1024 -544 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16968" + "plane" "(-1024 -416 0) (-1024 -544 0) (-832 -544 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16967" + "plane" "(-1024 -544 2048) (-1024 -416 2048) (-832 -416 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 108 237" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "61524" - side - { - "id" "37295" - "plane" "(732 988 460) (768 1024 460) (768 780 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37294" - "plane" "(732 780 64) (768 780 64) (768 1024 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37293" - "plane" "(732 988 64) (732 988 460) (732 780 460)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37292" - "plane" "(768 780 64) (768 780 460) (768 1024 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37291" - "plane" "(732 780 64) (732 780 460) (768 780 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37290" - "plane" "(768 1024 64) (768 1024 460) (732 988 460)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor + solid { - "color" "0 226 247" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "17437" + side + { + "id" "16978" + "plane" "(-1024 -416 2048) (-1024 -416 0) (-1024 -288 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16977" + "plane" "(-960 -288 2048) (-960 -288 0) (-832 -416 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16976" + "plane" "(-1024 -288 2048) (-1024 -288 0) (-960 -288 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16975" + "plane" "(-832 -416 2048) (-832 -416 0) (-1024 -416 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16974" + "plane" "(-1024 -288 0) (-1024 -416 0) (-832 -416 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16973" + "plane" "(-1024 -416 2048) (-1024 -288 2048) (-960 -288 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 108 237" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "61529" - side - { - "id" "37301" - "plane" "(736 992 460) (736 764 460) (924 952 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3447] 0.25" - "vaxis" "[1 0 0 -7.30469] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37300" - "plane" "(796 824 560) (796 992 560) (924 992 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3447] 0.25" - "vaxis" "[1 0 0 -7.30469] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37299" - "plane" "(736 764 460) (736 992 460) (796 992 560)" - "material" "WOOD/MILROOF001" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37298" - "plane" "(924 992 460) (924 952 460) (924 952 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37297" - "plane" "(924 952 460) (736 764 460) (796 824 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -55.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37296" - "plane" "(736 992 460) (924 992 460) (924 992 560)" - "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 + solid { - "color" "0 249 234" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "17438" + side + { + "id" "16984" + "plane" "(-1024 64 4.57764e-05) (-1024 64 2048) (-1024 -96 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16983" + "plane" "(-960 -96 4.57764e-05) (-960 -96 2048) (-960 64 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16982" + "plane" "(-960 64 4.57764e-05) (-960 64 2048) (-1024 64 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16981" + "plane" "(-1024 -96 4.57764e-05) (-1024 -96 2048) (-960 -96 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16980" + "plane" "(-1024 64 4.57764e-05) (-1024 -96 4.57764e-05) (-960 -96 4.57764e-05)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16979" + "plane" "(-1024 -96 2048) (-1024 64 2048) (-960 64 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 108 237" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "61533" - side - { - "id" "37319" - "plane" "(736 992 460) (924 992 460) (1020 1088 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48.6553] 0.25" - "vaxis" "[1 0 0 -7.30469] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37318" - "plane" "(892 1088 560) (1020 1088 560) (924 992 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -48.6553] 0.25" - "vaxis" "[1 0 0 -7.30469] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37317" - "plane" "(832 1088 460) (892 1088 560) (796 992 560)" - "material" "WOOD/MILROOF001" - "uaxis" "[0 1 0 -368.66] 0.25" - "vaxis" "[0 0 1 -293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37316" - "plane" "(924 992 460) (924 992 560) (1020 1088 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 48.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37315" - "plane" "(1020 1088 460) (1020 1088 560) (892 1088 560)" - "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" "37314" - "plane" "(736 992 460) (796 992 560) (924 992 560)" - "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 + solid { - "color" "0 249 234" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "17439" + side + { + "id" "16990" + "plane" "(-1024 448 4.57764e-05) (-1024 448 2048) (-1024 64 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16989" + "plane" "(-576 64 4.57764e-05) (-576 64 2048) (-576 448 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16988" + "plane" "(-576 448 4.57764e-05) (-576 448 2048) (-1024 448 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16987" + "plane" "(-1024 64 4.57764e-05) (-1024 64 2048) (-576 64 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16986" + "plane" "(-1024 448 4.57764e-05) (-1024 64 4.57764e-05) (-576 64 4.57764e-05)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16985" + "plane" "(-1024 64 2048) (-1024 448 2048) (-576 448 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 108 237" + "visgroupshown" "1" + "visgroupautoshown" "0" + } } } - solid + hidden { - "id" "61576" - side + solid { - "id" "37389" - "plane" "(192 960 384) (128 896 384) (128 1088 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37388" - "plane" "(192 1088 48) (128 1088 48) (128 896 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37387" - "plane" "(192 960 384) (192 1088 384) (192 1088 48)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37386" - "plane" "(192 1088 384) (128 1088 384) (128 1088 48)" - "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" "37385" - "plane" "(128 896 384) (192 960 384) (192 960 48)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37384" - "plane" "(128 1088 384) (128 896 384) (128 896 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 186 151" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "61581" - side - { - "id" "37401" - "plane" "(64 1152 384) (128 1152 384) (192 1088 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37400" - "plane" "(128 1088 48) (192 1088 48) (128 1152 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37399" - "plane" "(128 1152 48) (192 1088 48) (192 1088 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37398" - "plane" "(64 1152 48) (128 1152 48) (128 1152 384)" - "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" "37397" - "plane" "(192 1088 48) (128 1088 48) (128 1088 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37396" - "plane" "(128 1088 48) (64 1152 48) (64 1152 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 186 151" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "61585" - side - { - "id" "37413" - "plane" "(64 1600 384) (128 1600 384) (128 1152 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37412" - "plane" "(64 1152 48) (128 1152 48) (128 1600 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37411" - "plane" "(128 1600 48) (128 1152 48) (128 1152 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37410" - "plane" "(64 1600 48) (128 1600 48) (128 1600 384)" - "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" "37409" - "plane" "(128 1152 48) (64 1152 48) (64 1152 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37408" - "plane" "(64 1152 48) (64 1600 48) (64 1600 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 186 151" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "61587" - side - { - "id" "37425" - "plane" "(128 1664 384) (512 1664 384) (512 1600 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37424" - "plane" "(128 1600 48) (512 1600 48) (512 1664 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37423" - "plane" "(512 1664 48) (512 1600 48) (512 1600 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37422" - "plane" "(128 1664 48) (512 1664 48) (512 1664 384)" - "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" "37421" - "plane" "(512 1600 48) (128 1600 48) (128 1600 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37420" - "plane" "(128 1600 48) (128 1664 48) (128 1664 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 186 151" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "61590" - side - { - "id" "37437" - "plane" "(576 1600 384) (576 1344 384) (512 1280 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37436" - "plane" "(576 1344 48) (576 1600 48) (512 1600 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37435" - "plane" "(576 1344 48) (576 1344 384) (576 1600 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37434" - "plane" "(576 1600 48) (576 1600 384) (512 1600 384)" - "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" "37433" - "plane" "(512 1280 48) (512 1280 384) (576 1344 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37432" - "plane" "(512 1600 48) (512 1600 384) (512 1280 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 186 151" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "61608" - side - { - "id" "37455" - "plane" "(128 1440 112) (128 1600 112) (512 1600 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37454" - "plane" "(128 1600 70) (128 1440 70) (512 1440 70)" - "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" "37453" - "plane" "(128 1440 70) (128 1600 70) (128 1600 112)" - "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" "37452" - "plane" "(512 1600 70) (512 1440 70) (512 1440 112)" - "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" "37451" - "plane" "(128 1600 70) (512 1600 70) (512 1600 112)" - "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" "37450" - "plane" "(512 1440 70) (128 1440 70) (128 1440 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 158 183" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "61617" - side - { - "id" "37472" - "plane" "(256 1440 70) (128 1440 70) (128 1312 70)" - "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" "37471" - "plane" "(128 1440 112) (128 1440 70) (256 1440 70)" - "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" "37470" - "plane" "(128 1312 70) (128 1440 70) (128 1440 112)" - "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" "37469" - "plane" "(256 1440 112) (256 1440 70) (256 1312 70)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37468" - "plane" "(256 1312 70) (128 1312 70) (128 1440 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 158 183" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "58973" - side - { - "id" "36261" - "plane" "(448 768 256) (448 640 256) (384 640 256)" - "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" "36260" - "plane" "(416 800 0) (384 768 0) (384 640 0)" - "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" "36259" - "plane" "(448 768 0) (448 768 256) (416 800 256)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36258" - "plane" "(384 640 0) (384 640 256) (448 640 256)" - "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" "36257" - "plane" "(448 640 0) (448 640 256) (448 768 256)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36256" - "plane" "(384 768 0) (384 768 256) (384 640 256)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36255" - "plane" "(416 800 0) (416 800 256) (384 768 256)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "56553" - side - { - "id" "35404" - "plane" "(1984 -256 320) (1984 -192 320) (2016 -192 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" "35403" - "plane" "(1984 -192 64) (1984 -256 64) (2016 -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" "35402" - "plane" "(2016 -192 64) (2016 -256 64) (2016 -256 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "35401" - "plane" "(1984 -256 64) (1984 -192 64) (1984 -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" "35400" - "plane" "(2016 -256 64) (1984 -256 64) (1984 -256 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -384] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "35399" - "plane" "(1984 -192 64) (2016 -192 64) (2016 -192 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -384] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 137 234" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "56556" - side - { - "id" "35416" - "plane" "(2208 -256 320) (2208 -192 320) (2240 -192 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" "35415" - "plane" "(2208 -192 64) (2208 -256 64) (2240 -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" "35414" - "plane" "(2208 -256 64) (2208 -192 64) (2208 -192 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "35413" - "plane" "(2240 -192 64) (2240 -256 64) (2240 -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" "35412" - "plane" "(2208 -192 64) (2240 -192 64) (2240 -192 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "35411" - "plane" "(2240 -256 64) (2208 -256 64) (2208 -256 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 137 234" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - hidden - { - solid - { - "id" "56580" + "id" "17440" side { - "id" "35438" - "plane" "(864 -64 384) (864 1024 384) (1856 1024 384)" + "id" "16996" + "plane" "(-704 768 4.57764e-05) (-704 768 2048) (-704 448 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35437" - "plane" "(1856 1024 320) (864 1024 320) (864 -64 320)" + "id" "16995" + "plane" "(-640 448 4.57764e-05) (-640 448 2048) (-640 768 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35436" - "plane" "(864 1024 320) (1856 1024 320) (1856 1024 384)" + "id" "16994" + "plane" "(-640 768 4.57764e-05) (-640 768 2048) (-704 768 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -139818,10 +143141,10 @@ world } side { - "id" "35435" - "plane" "(864 -64 320) (864 1024 320) (864 1024 384)" + "id" "16993" + "plane" "(-704 448 4.57764e-05) (-704 448 2048) (-640 448 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -139829,29 +143152,29 @@ world } side { - "id" "35434" - "plane" "(1856 1024 320) (1856 -64 320) (1856 -64 384)" + "id" "16992" + "plane" "(-704 768 4.57764e-05) (-704 448 4.57764e-05) (-640 448 4.57764e-05)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35433" - "plane" "(1856 -64 320) (864 -64 320) (864 -64 384)" + "id" "16991" + "plane" "(-704 448 2048) (-704 768 2048) (-640 768 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 145 198" + "color" "0 108 237" "visgroupshown" "1" "visgroupautoshown" "0" } @@ -139861,35 +143184,35 @@ world { solid { - "id" "56597" + "id" "17441" side { - "id" "35514" - "plane" "(2752 -64 320) (2752 -320 320) (2688 -64 320)" + "id" "17002" + "plane" "(-1024 1152 4.57764e-05) (-1024 1152 2048) (-1024 768 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35513" - "plane" "(2752 -64 256) (2688 -64 256) (2752 -320 256)" + "id" "17001" + "plane" "(-128 768 4.57764e-05) (-128 768 2048) (-128 1152 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35512" - "plane" "(2752 -320 256) (2752 -320 320) (2752 -64 320)" + "id" "17000" + "plane" "(-128 1152 4.57764e-05) (-128 1152 2048) (-1024 1152 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -139897,8 +143220,8 @@ world } side { - "id" "35511" - "plane" "(2752 -64 256) (2752 -64 320) (2688 -64 320)" + "id" "16999" + "plane" "(-1024 768 4.57764e-05) (-1024 768 2048) (-128 768 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -139908,18 +143231,29 @@ world } side { - "id" "35510" - "plane" "(2688 -64 256) (2688 -64 320) (2752 -320 320)" + "id" "16998" + "plane" "(-1024 1152 4.57764e-05) (-1024 768 4.57764e-05) (-128 768 4.57764e-05)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16997" + "plane" "(-1024 768 2048) (-1024 1152 2048) (-128 1152 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 108 237" "visgroupshown" "1" "visgroupautoshown" "0" } @@ -139929,35 +143263,35 @@ world { solid { - "id" "56598" + "id" "17442" side { - "id" "38627" - "plane" "(2688 -64 320) (2688 480 320) (2752 480 320)" + "id" "17008" + "plane" "(-128 1152 4.57764e-05) (-128 1152 2048) (-128 768 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38626" - "plane" "(2688 480 256) (2688 -64 256) (2752 -64 256)" + "id" "17007" + "plane" "(128 896 4.57764e-05) (128 896 2048) (-32 1184 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38625" - "plane" "(2688 -64 256) (2688 480 256) (2688 480 320)" + "id" "17006" + "plane" "(-32 1184 4.57764e-05) (-32 1184 2048) (-128 1152 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -139965,10 +143299,10 @@ world } side { - "id" "38624" - "plane" "(2752 480 256) (2752 -64 256) (2752 -64 320)" + "id" "17005" + "plane" "(-128 768 4.57764e-05) (-128 768 2048) (128 896 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -139976,29 +143310,29 @@ world } side { - "id" "38623" - "plane" "(2688 480 256) (2752 480 256) (2752 480 320)" + "id" "17004" + "plane" "(-128 1152 4.57764e-05) (-128 768 4.57764e-05) (128 896 4.57764e-05)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38622" - "plane" "(2752 -64 256) (2688 -64 256) (2688 -64 320)" + "id" "17003" + "plane" "(-128 768 2048) (-128 1152 2048) (-32 1184 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "0 108 237" "visgroupshown" "1" "visgroupautoshown" "0" } @@ -140008,35 +143342,35 @@ world { solid { - "id" "56612" + "id" "17479" side { - "id" "35531" - "plane" "(1984 -256 320) (1984 -224 320) (2016 -224 320)" + "id" "17227" + "plane" "(1024 -2368 2048) (1024 -2368 0) (1056 -2368 0)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35530" - "plane" "(2016 -224 96) (1984 -224 96) (1984 -256 96)" + "id" "17226" + "plane" "(1056 -2624 2048) (1056 -2624 0) (1024 -2624 0)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35529" - "plane" "(1984 -256 96) (1984 -224 96) (1984 -224 320)" + "id" "17225" + "plane" "(1056 -2368 2048) (1056 -2368 0) (1056 -2624 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140044,10 +143378,10 @@ world } side { - "id" "35528" - "plane" "(1984 -224 96) (2016 -224 96) (2016 -224 320)" + "id" "17224" + "plane" "(1024 -2624 2048) (1024 -2624 0) (1024 -2368 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140055,18 +143389,29 @@ world } side { - "id" "35527" - "plane" "(2016 -224 96) (1984 -256 96) (1984 -256 320)" + "id" "17223" + "plane" "(1056 -2368 0) (1024 -2368 0) (1024 -2624 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "17222" + "plane" "(1056 -2624 2048) (1024 -2624 2048) (1024 -2368 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 151 224" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "0" } @@ -140076,35 +143421,35 @@ world { solid { - "id" "56613" + "id" "17480" side { - "id" "35541" - "plane" "(2208 -224 320) (2240 -224 320) (2240 -256 320)" + "id" "17232" + "plane" "(1024 -2752 2048) (1024 -2752 0) (896 -2752 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35540" - "plane" "(2240 -224 96) (2208 -224 96) (2240 -256 96)" + "id" "17231" + "plane" "(1024 -2624 2048) (1024 -2624 0) (1024 -2752 0)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35539" - "plane" "(2208 -224 96) (2240 -224 96) (2240 -224 320)" + "id" "17230" + "plane" "(896 -2752 2048) (896 -2752 0) (1024 -2624 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140112,29 +143457,29 @@ world } side { - "id" "35538" - "plane" "(2240 -224 96) (2240 -256 96) (2240 -256 320)" + "id" "17229" + "plane" "(896 -2752 0) (1024 -2752 0) (1024 -2624 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35537" - "plane" "(2240 -256 96) (2208 -224 96) (2208 -224 320)" + "id" "17228" + "plane" "(1024 -2752 2048) (896 -2752 2048) (1024 -2624 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 151 224" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "0" } @@ -140144,24 +143489,24 @@ world { solid { - "id" "56622" + "id" "17481" side { - "id" "35558" - "plane" "(1920 256 96) (1856 320 96) (1856 -192 96)" + "id" "17238" + "plane" "(320 -2752 2048) (320 -2752 0) (896 -2752 0)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35557" - "plane" "(1856 -192 128) (1856 -192 96) (1856 320 96)" + "id" "17237" + "plane" "(896 -2944 2048) (896 -2944 0) (320 -2944 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140169,10 +143514,10 @@ world } side { - "id" "35556" - "plane" "(1856 320 128) (1856 320 96) (1920 256 96)" + "id" "17236" + "plane" "(896 -2752 2048) (896 -2752 0) (896 -2944 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140180,10 +143525,10 @@ world } side { - "id" "35555" - "plane" "(1920 -192 96) (1856 -192 96) (1856 -192 128)" + "id" "17235" + "plane" "(320 -2944 2048) (320 -2944 0) (320 -2752 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140191,8 +143536,19 @@ world } side { - "id" "35554" - "plane" "(1856 -192 128) (1856 320 128) (1920 256 96)" + "id" "17234" + "plane" "(896 -2752 0) (320 -2752 0) (320 -2944 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "17233" + "plane" "(896 -2944 2048) (320 -2944 2048) (320 -2752 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -140202,7 +143558,7 @@ world } editor { - "color" "0 119 112" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "0" } @@ -140212,24 +143568,24 @@ world { solid { - "id" "56624" + "id" "17482" side { - "id" "35568" - "plane" "(2176 320 96) (1856 320 96) (1920 256 96)" + "id" "17244" + "plane" "(320 -2752 4.57764e-05) (320 -2752 2048) (320 -3072 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35567" - "plane" "(1856 320 128) (1856 320 96) (2176 320 96)" + "id" "17243" + "plane" "(384 -3072 4.57764e-05) (384 -3072 2048) (384 -2752 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140237,10 +143593,10 @@ world } side { - "id" "35566" - "plane" "(2176 320 128) (2176 320 96) (2176 256 96)" + "id" "17242" + "plane" "(384 -2752 4.57764e-05) (384 -2752 2048) (320 -2752 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140248,10 +143604,10 @@ world } side { - "id" "35565" - "plane" "(1920 256 96) (1856 320 96) (1856 320 128)" + "id" "17241" + "plane" "(320 -3072 4.57764e-05) (320 -3072 2048) (384 -3072 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140259,18 +143615,29 @@ world } side { - "id" "35564" - "plane" "(2176 256 96) (1920 256 96) (1856 320 128)" + "id" "17240" + "plane" "(320 -2752 4.57764e-05) (320 -3072 4.57764e-05) (384 -3072 4.57764e-05)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "17239" + "plane" "(320 -3072 2048) (320 -2752 2048) (384 -2752 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 112" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "0" } @@ -140280,24 +143647,24 @@ world { solid { - "id" "56630" + "id" "17486" side { - "id" "35578" - "plane" "(2304 288 96) (2176 320 96) (2176 256 96)" + "id" "38512" + "plane" "(-576 -2984 2048) (-576 -2984 0) (-576 -2752 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35577" - "plane" "(2176 320 128) (2176 320 96) (2304 288 96)" + "id" "38511" + "plane" "(-512 -2752 2048) (-512 -2752 0) (-512 -2984 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140305,10 +143672,10 @@ world } side { - "id" "35576" - "plane" "(2304 288 128) (2304 288 96) (2304 224 96)" + "id" "38510" + "plane" "(-576 -2752 2048) (-576 -2752 0) (-512 -2752 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140316,10 +143683,10 @@ world } side { - "id" "35575" - "plane" "(2176 256 96) (2176 320 96) (2176 320 128)" + "id" "38509" + "plane" "(-512 -2984 2048) (-512 -2984 0) (-576 -2984 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140327,18 +143694,29 @@ world } side { - "id" "35574" - "plane" "(2304 224 96) (2176 256 96) (2176 320 128)" + "id" "38508" + "plane" "(-576 -2752 0) (-576 -2984 0) (-512 -2984 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38507" + "plane" "(-576 -2984 2048) (-576 -2752 2048) (-512 -2752 2048)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 112" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "0" } @@ -140348,22 +143726,33 @@ world { solid { - "id" "56646" + "id" "17487" side { - "id" "35593" - "plane" "(2368 256 96) (2304 288 96) (2304 224 96)" + "id" "38506" + "plane" "(-576 -2752 2048) (-576 -2752 0) (-576 -2688 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35592" - "plane" "(2304 288 128) (2304 288 96) (2368 256 96)" + "id" "38505" + "plane" "(-64 -2688 2048) (-64 -2688 0) (-64 -2752 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38504" + "plane" "(-576 -2688 2048) (-576 -2688 0) (-64 -2688 0)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -140373,10 +143762,10 @@ world } side { - "id" "35591" - "plane" "(2304 224 96) (2304 288 96) (2304 288 128)" + "id" "38503" + "plane" "(-64 -2752 2048) (-64 -2752 0) (-576 -2752 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140384,29 +143773,29 @@ world } side { - "id" "35590" - "plane" "(2336 208 96) (2304 224 96) (2304 288 128)" + "id" "38502" + "plane" "(-576 -2688 0) (-576 -2752 0) (-64 -2752 0)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35589" - "plane" "(2368 256 128) (2368 256 96) (2336 208 96)" + "id" "38501" + "plane" "(-576 -2752 2048) (-576 -2688 2048) (-64 -2688 2048)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 112" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "0" } @@ -140416,24 +143805,35 @@ world { solid { - "id" "56647" + "id" "18117" side { - "id" "35603" - "plane" "(2432 192 96) (2368 256 96) (2336 208 96)" + "id" "17430" + "plane" "(1280 -2752 320) (864 -2752 320) (864 -1280 320)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35602" - "plane" "(2368 256 128) (2368 256 96) (2432 192 96)" + "id" "17429" + "plane" "(1280 -1280 256) (864 -1280 256) (864 -2752 256)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "17428" + "plane" "(864 -2752 256) (864 -1280 256) (864 -1280 320)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140441,10 +143841,10 @@ world } side { - "id" "35601" - "plane" "(2336 208 96) (2368 256 96) (2368 256 128)" + "id" "17427" + "plane" "(864 -1280 256) (1280 -1280 256) (1280 -1280 320)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140452,19 +143852,19 @@ world } side { - "id" "35600" - "plane" "(2384 160 96) (2336 208 96) (2368 256 128)" + "id" "17426" + "plane" "(1280 -2752 256) (864 -2752 256) (864 -2752 320)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35599" - "plane" "(2432 192 128) (2432 192 96) (2384 160 96)" + "id" "17425" + "plane" "(1280 -1280 256) (1280 -2752 256) (1280 -2752 320)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -140474,7 +143874,7 @@ world } editor { - "color" "0 119 112" + "color" "0 145 198" "visgroupshown" "1" "visgroupautoshown" "0" } @@ -140484,13 +143884,13 @@ world { solid { - "id" "56649" + "id" "18118" side { - "id" "35618" - "plane" "(2400 128 96) (2464 128 96) (2432 192 96)" + "id" "17436" + "plane" "(1280 -1280 320) (2304 -1280 320) (2304 -2752 320)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140498,8 +143898,19 @@ world } side { - "id" "35617" - "plane" "(2464 128 96) (2464 128 128) (2432 192 128)" + "id" "17435" + "plane" "(1280 -2752 256) (2304 -2752 256) (2304 -1280 256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "17434" + "plane" "(2304 -1280 256) (2304 -2752 256) (2304 -2752 320)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -140509,10 +143920,10 @@ world } side { - "id" "35616" - "plane" "(2464 128 96) (2400 128 96) (2464 128 128)" + "id" "17433" + "plane" "(1280 -1280 256) (2304 -1280 256) (2304 -1280 320)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140520,21 +143931,21 @@ world } side { - "id" "35615" - "plane" "(2384 160 96) (2432 192 128) (2464 128 128)" + "id" "17432" + "plane" "(2304 -2752 256) (1280 -2752 256) (1280 -2752 320)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35614" - "plane" "(2432 192 96) (2432 192 128) (2384 160 96)" + "id" "17431" + "plane" "(1280 -2752 256) (1280 -1280 256) (1280 -1280 320)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140542,7 +143953,7 @@ world } editor { - "color" "0 119 112" + "color" "0 145 198" "visgroupshown" "1" "visgroupautoshown" "0" } @@ -140552,35 +143963,35 @@ world { solid { - "id" "56694" + "id" "18183" side { - "id" "38518" - "plane" "(-736 -3104 2048) (-736 -3104 0) (-736 -2976 0)" + "id" "87767" + "plane" "(864 -3328 320) (-1024 -3328 320) (-1024 1664 320)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38517" - "plane" "(-672 -2976 2048) (-672 -2976 0) (-672 -3104 0)" + "id" "87766" + "plane" "(864 1664 256) (-1024 1664 256) (-1024 -3328 256)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38516" - "plane" "(-736 -2976 2048) (-736 -2976 0) (-672 -2976 0)" + "id" "87765" + "plane" "(-1024 -3328 256) (-1024 1664 256) (-1024 1664 320)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140588,10 +143999,10 @@ world } side { - "id" "38515" - "plane" "(-672 -3104 2048) (-672 -3104 0) (-736 -3104 0)" + "id" "87764" + "plane" "(-1024 1664 256) (864 1664 256) (864 1664 320)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140599,29 +144010,29 @@ world } side { - "id" "38514" - "plane" "(-736 -2976 0) (-736 -3104 0) (-672 -3104 0)" + "id" "87763" + "plane" "(864 -3328 256) (-1024 -3328 256) (-1024 -3328 320)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38513" - "plane" "(-736 -3104 2048) (-736 -2976 2048) (-672 -2976 2048)" + "id" "87762" + "plane" "(864 1664 256) (864 -3328 256) (864 -3328 320)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "0 145 198" "visgroupshown" "1" "visgroupautoshown" "0" } @@ -140629,13 +144040,13 @@ world } solid { - "id" "56701" + "id" "12734" side { - "id" "35726" - "plane" "(16 -3296 256) (16 -3216 256) (24 -3216 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "id" "14144" + "plane" "(-256 -960 -64) (704 -960 -64) (704 -1472 -64)" + "material" "LIQUIDS/INFERNO_WATER" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140643,10 +144054,10 @@ world } side { - "id" "35725" - "plane" "(16 -3216 160) (16 -3296 160) (24 -3296 160)" + "id" "14145" + "plane" "(-256 -1472 -128) (704 -1472 -128) (704 -960 -128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140654,19 +144065,19 @@ world } side { - "id" "35724" - "plane" "(16 -3296 160) (16 -3216 160) (16 -3216 256)" - "material" "SPRITES/STORE/TRAILS/FOREVERALONE" - "uaxis" "[0 1 0 25.6] 0.625" - "vaxis" "[0 0 -1 85.3333] 0.75" + "id" "14146" + "plane" "(-256 -960 -128) (-256 -960 -64) (-256 -1472 -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" "35723" - "plane" "(24 -3216 160) (24 -3296 160) (24 -3296 256)" + "id" "14147" + "plane" "(704 -1472 -128) (704 -1472 -64) (704 -960 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -140676,10 +144087,10 @@ world } side { - "id" "35722" - "plane" "(16 -3216 160) (24 -3216 160) (24 -3216 256)" + "id" "14148" + "plane" "(704 -960 -128) (704 -960 -64) (-256 -960 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140687,10 +144098,10 @@ world } side { - "id" "35721" - "plane" "(24 -3296 160) (16 -3296 160) (16 -3296 256)" + "id" "14149" + "plane" "(-256 -1472 -128) (-256 -1472 -64) (704 -1472 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140698,20 +144109,19 @@ world } editor { - "color" "0 211 156" - "visgroupid" "18" + "color" "0 173 158" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56734" + "id" "13116" side { - "id" "35775" - "plane" "(1776 -1856 128) (1776 -1824 128) (1808 -1824 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "14469" + "plane" "(0 -960 -128) (0 -640 -128) (704 -640 -128)" + "material" "RYAN_DEV/DEV_BLACK" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -140720,9 +144130,9 @@ world } side { - "id" "35776" - "plane" "(1776 -1824 64) (1776 -1856 64) (1808 -1856 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "14468" + "plane" "(0 -640 -192) (0 -960 -192) (704 -960 -192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -140731,9 +144141,9 @@ world } side { - "id" "35777" - "plane" "(1776 -1856 64) (1776 -1824 64) (1776 -1824 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "14467" + "plane" "(0 -960 -192) (0 -640 -192) (0 -640 -128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -140742,9 +144152,9 @@ world } side { - "id" "35778" - "plane" "(1808 -1824 64) (1808 -1856 64) (1808 -1856 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "14466" + "plane" "(704 -640 -192) (704 -960 -192) (704 -960 -128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -140753,9 +144163,9 @@ world } side { - "id" "35779" - "plane" "(1776 -1824 64) (1808 -1824 64) (1808 -1824 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "14465" + "plane" "(0 -640 -192) (704 -640 -192) (704 -640 -128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -140764,9 +144174,9 @@ world } side { - "id" "35780" - "plane" "(1808 -1856 64) (1776 -1856 64) (1776 -1856 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "14464" + "plane" "(704 -960 -192) (0 -960 -192) (0 -960 -128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -140775,44 +144185,42 @@ world } editor { - "color" "128 225 0" - "groupid" "56748" - "visgroupid" "20" + "color" "0 173 158" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56771" + "id" "12468" side { - "id" "35804" - "plane" "(848 -2544 128) (848 -2512 128) (880 -2512 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "13815" + "plane" "(1184 320 320) (1184 448 320) (1856 448 320)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35803" - "plane" "(848 -2512 64) (848 -2544 64) (880 -2544 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "13814" + "plane" "(1184 448 64) (1184 320 64) (1856 320 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35802" - "plane" "(848 -2544 64) (848 -2512 64) (848 -2512 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" + "id" "13813" + "plane" "(1184 320 64) (1184 320 320) (1856 320 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140820,10 +144228,10 @@ world } side { - "id" "35801" - "plane" "(880 -2512 64) (880 -2544 64) (880 -2544 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" + "id" "13812" + "plane" "(1856 448 64) (1856 448 320) (1184 448 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140831,10 +144239,10 @@ world } side { - "id" "35800" - "plane" "(848 -2512 64) (880 -2512 64) (880 -2512 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "13811" + "plane" "(1856 320 64) (1856 320 320) (1856 448 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140842,10 +144250,10 @@ world } side { - "id" "35799" - "plane" "(880 -2544 64) (848 -2544 64) (848 -2544 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "13810" + "plane" "(1184 448 64) (1184 448 320) (1184 320 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140853,21 +144261,19 @@ world } editor { - "color" "128 225 0" - "groupid" "56767" - "visgroupid" "20" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56776" + "id" "12565" side { - "id" "35816" - "plane" "(192 -2880 128) (192 -2848 128) (224 -2848 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "14041" + "plane" "(1328 948 460) (1328 1080 460) (1352 1080 460)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -140876,9 +144282,9 @@ world } side { - "id" "35815" - "plane" "(192 -2848 64) (192 -2880 64) (224 -2880 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "14040" + "plane" "(1328 1080 64) (1328 948 64) (1352 948 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -140887,9 +144293,9 @@ world } side { - "id" "35814" - "plane" "(192 -2880 64) (192 -2848 64) (192 -2848 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "14039" + "plane" "(1328 948 64) (1328 1080 64) (1328 1080 460)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -140898,10 +144304,10 @@ world } side { - "id" "35813" - "plane" "(224 -2848 64) (224 -2880 64) (224 -2880 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" + "id" "14038" + "plane" "(1352 1080 64) (1352 948 64) (1352 948 460)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140909,9 +144315,9 @@ world } side { - "id" "35812" - "plane" "(192 -2848 64) (224 -2848 64) (224 -2848 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "14037" + "plane" "(1328 1080 64) (1352 1080 64) (1352 1080 460)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -140920,10 +144326,10 @@ world } side { - "id" "35811" - "plane" "(224 -2880 64) (192 -2880 64) (192 -2880 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "14036" + "plane" "(1352 948 64) (1328 948 64) (1328 948 460)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140931,22 +144337,20 @@ world } editor { - "color" "128 225 0" - "groupid" "56772" - "visgroupid" "20" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56781" + "id" "9741" side { - "id" "35828" - "plane" "(144 -2336 128) (144 -2304 128) (176 -2304 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "10866" + "plane" "(704 -2240 64) (704 -1792 64) (1008 -1792 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -140954,9 +144358,9 @@ world } side { - "id" "35827" - "plane" "(144 -2304 64) (144 -2336 64) (176 -2336 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "10865" + "plane" "(704 -1792 -128) (704 -2240 -128) (1008 -2240 -128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -140965,9 +144369,9 @@ world } side { - "id" "35826" - "plane" "(144 -2336 64) (144 -2304 64) (144 -2304 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "10864" + "plane" "(704 -2240 -128) (704 -1792 -128) (704 -1792 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -140976,9 +144380,9 @@ world } side { - "id" "35825" - "plane" "(176 -2304 64) (176 -2336 64) (176 -2336 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "10863" + "plane" "(1008 -1792 -128) (1008 -2240 -128) (1008 -2240 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -140987,9 +144391,9 @@ world } side { - "id" "35824" - "plane" "(144 -2304 64) (176 -2304 64) (176 -2304 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "10862" + "plane" "(704 -1792 -128) (1008 -1792 -128) (1008 -1792 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -140998,9 +144402,9 @@ world } side { - "id" "35823" - "plane" "(176 -2336 64) (144 -2336 64) (144 -2336 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "10861" + "plane" "(1008 -2240 -128) (704 -2240 -128) (704 -2240 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141009,22 +144413,21 @@ world } editor { - "color" "128 225 0" - "groupid" "56777" - "visgroupid" "20" + "color" "0 103 232" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56786" + "id" "9767" side { - "id" "35840" - "plane" "(-416 -2256 96) (-416 -2224 96) (-384 -2224 96)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "10938" + "plane" "(1472 -2112 64) (1472 -1856 64) (1664 -1856 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141032,9 +144435,9 @@ world } side { - "id" "35839" - "plane" "(-416 -2224 32) (-416 -2256 32) (-384 -2256 32)" - "material" "TOOLS/TOOLSSKIP" + "id" "10937" + "plane" "(1472 -1856 -128) (1472 -2112 -128) (1664 -2112 -128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141043,20 +144446,20 @@ world } side { - "id" "35838" - "plane" "(-416 -2256 32) (-416 -2224 32) (-416 -2224 96)" - "material" "TOOLS/TOOLSSKIP" + "id" "10936" + "plane" "(1472 -2112 -128) (1472 -1856 -128) (1472 -1856 64)" + "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35837" - "plane" "(-384 -2224 32) (-384 -2256 32) (-384 -2256 96)" - "material" "TOOLS/TOOLSSKIP" + "id" "10935" + "plane" "(1664 -1856 -128) (1664 -2112 -128) (1664 -2112 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141065,9 +144468,9 @@ world } side { - "id" "35836" - "plane" "(-416 -2224 32) (-384 -2224 32) (-384 -2224 96)" - "material" "TOOLS/TOOLSSKIP" + "id" "10934" + "plane" "(1472 -1856 -128) (1664 -1856 -128) (1664 -1856 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141076,9 +144479,9 @@ world } side { - "id" "35835" - "plane" "(-384 -2256 32) (-416 -2256 32) (-416 -2256 96)" - "material" "TOOLS/TOOLSSKIP" + "id" "10933" + "plane" "(1664 -2112 -128) (1472 -2112 -128) (1472 -2112 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141087,22 +144490,21 @@ world } editor { - "color" "128 225 0" - "groupid" "56782" - "visgroupid" "20" + "color" "0 163 172" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56791" + "id" "9797" side { - "id" "35852" - "plane" "(320 -1696 128) (320 -1664 128) (352 -1664 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "11035" + "plane" "(1536 -1856 64) (1536 -1728 64) (2240 -1728 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141110,9 +144512,9 @@ world } side { - "id" "35851" - "plane" "(320 -1664 64) (320 -1696 64) (352 -1696 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "11034" + "plane" "(1536 -1728 0) (1536 -1856 0) (2240 -1856 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141121,9 +144523,9 @@ world } side { - "id" "35850" - "plane" "(320 -1696 64) (320 -1664 64) (320 -1664 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "11033" + "plane" "(1536 -1856 0) (1536 -1728 0) (1536 -1728 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141132,9 +144534,9 @@ world } side { - "id" "35849" - "plane" "(352 -1664 64) (352 -1696 64) (352 -1696 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "11032" + "plane" "(2240 -1728 0) (2240 -1856 0) (2240 -1856 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141143,9 +144545,9 @@ world } side { - "id" "35848" - "plane" "(320 -1664 64) (352 -1664 64) (352 -1664 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "11031" + "plane" "(1536 -1728 0) (2240 -1728 0) (2240 -1728 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141154,9 +144556,9 @@ world } side { - "id" "35847" - "plane" "(352 -1696 64) (320 -1696 64) (320 -1696 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "11030" + "plane" "(2240 -1856 0) (1536 -1856 0) (1536 -1856 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141165,22 +144567,21 @@ world } editor { - "color" "128 225 0" - "groupid" "56787" - "visgroupid" "20" + "color" "0 163 208" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56806" + "id" "9890" side { - "id" "35888" - "plane" "(-928 -976 128) (-928 -944 128) (-896 -944 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "11275" + "plane" "(2432 -960 80) (2432 -704 80) (2496 -704 80)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141188,9 +144589,9 @@ world } side { - "id" "35887" - "plane" "(-928 -944 64) (-928 -976 64) (-896 -976 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "11274" + "plane" "(2432 -704 72) (2432 -960 72) (2496 -960 72)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141199,10 +144600,10 @@ world } side { - "id" "35886" - "plane" "(-928 -976 64) (-928 -944 64) (-928 -944 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" + "id" "11273" + "plane" "(2432 -960 72) (2432 -704 72) (2432 -704 80)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141210,9 +144611,9 @@ world } side { - "id" "35885" - "plane" "(-896 -944 64) (-896 -976 64) (-896 -976 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "11272" + "plane" "(2496 -704 72) (2496 -960 72) (2496 -960 80)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141221,9 +144622,9 @@ world } side { - "id" "35884" - "plane" "(-928 -944 64) (-896 -944 64) (-896 -944 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "11271" + "plane" "(2432 -704 72) (2496 -704 72) (2496 -704 80)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141232,9 +144633,9 @@ world } side { - "id" "35883" - "plane" "(-896 -976 64) (-928 -976 64) (-928 -976 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "11270" + "plane" "(2496 -960 72) (2432 -960 72) (2432 -960 80)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141243,22 +144644,21 @@ world } editor { - "color" "128 225 0" - "groupid" "56802" - "visgroupid" "20" + "color" "0 139 240" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56816" + "id" "9913" side { - "id" "35912" - "plane" "(-864 -224 96) (-864 -192 96) (-832 -192 96)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "11354" + "plane" "(2496 -320 96) (2752 -320 96) (2752 -704 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141266,9 +144666,9 @@ world } side { - "id" "35911" - "plane" "(-864 -192 32) (-864 -224 32) (-832 -224 32)" - "material" "TOOLS/TOOLSSKIP" + "id" "11353" + "plane" "(2496 -704 64) (2752 -704 64) (2752 -320 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141277,9 +144677,9 @@ world } side { - "id" "35910" - "plane" "(-864 -224 32) (-864 -192 32) (-864 -192 96)" - "material" "TOOLS/TOOLSSKIP" + "id" "11352" + "plane" "(2496 -320 64) (2496 -320 96) (2496 -704 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141288,9 +144688,9 @@ world } side { - "id" "35909" - "plane" "(-832 -192 32) (-832 -224 32) (-832 -224 96)" - "material" "TOOLS/TOOLSSKIP" + "id" "11351" + "plane" "(2752 -704 64) (2752 -704 96) (2752 -320 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141299,9 +144699,9 @@ world } side { - "id" "35908" - "plane" "(-864 -192 32) (-832 -192 32) (-832 -192 96)" - "material" "TOOLS/TOOLSSKIP" + "id" "11350" + "plane" "(2752 -320 64) (2752 -320 96) (2496 -320 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141310,9 +144710,9 @@ world } side { - "id" "35907" - "plane" "(-832 -224 32) (-864 -224 32) (-864 -224 96)" - "material" "TOOLS/TOOLSSKIP" + "id" "11349" + "plane" "(2496 -704 64) (2496 -704 96) (2752 -704 96)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141321,21 +144721,20 @@ world } editor { - "color" "128 225 0" - "groupid" "56812" - "visgroupid" "20" + "color" "0 251 136" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56821" + "id" "9916" side { - "id" "35924" - "plane" "(-672 -528 64) (-672 -496 64) (-640 -496 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "14312" + "plane" "(2240 -640 256) (2240 -576 256) (2496 -576 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141344,9 +144743,9 @@ world } side { - "id" "35923" - "plane" "(-672 -496 0) (-672 -528 0) (-640 -528 0)" - "material" "TOOLS/TOOLSSKIP" + "id" "14311" + "plane" "(2240 -576 64) (2240 -640 64) (2496 -640 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141355,9 +144754,9 @@ world } side { - "id" "35922" - "plane" "(-672 -528 0) (-672 -496 0) (-672 -496 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "14310" + "plane" "(2240 -640 64) (2240 -576 64) (2240 -576 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141366,10 +144765,10 @@ world } side { - "id" "35921" - "plane" "(-640 -496 0) (-640 -528 0) (-640 -528 64)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" + "id" "14309" + "plane" "(2496 -576 64) (2496 -640 64) (2496 -640 256)" + "material" "TILE/HR_T/TILES_C" + "uaxis" "[0 1 0 64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141377,9 +144776,9 @@ world } side { - "id" "35920" - "plane" "(-672 -496 0) (-640 -496 0) (-640 -496 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "14308" + "plane" "(2240 -576 64) (2496 -576 64) (2496 -576 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141388,9 +144787,9 @@ world } side { - "id" "35919" - "plane" "(-640 -528 0) (-672 -528 0) (-672 -528 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "14307" + "plane" "(2496 -640 64) (2240 -640 64) (2240 -640 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141399,22 +144798,20 @@ world } editor { - "color" "128 225 0" - "groupid" "56817" - "visgroupid" "20" + "color" "0 137 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56826" + "id" "11182" side { - "id" "35936" - "plane" "(-288 -368 64) (-288 -336 64) (-256 -336 64)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "32033" + "plane" "(1856 320 128) (1856 448 128) (2176 448 128)" + "material" "RYAN_DEV/DEV_BROWN4" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141422,9 +144819,9 @@ world } side { - "id" "35935" - "plane" "(-288 -336 0) (-288 -368 0) (-256 -368 0)" - "material" "TOOLS/TOOLSSKIP" + "id" "32032" + "plane" "(1856 448 64) (1856 320 64) (2176 320 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141433,9 +144830,9 @@ world } side { - "id" "35934" - "plane" "(-288 -368 0) (-288 -336 0) (-288 -336 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "32031" + "plane" "(1856 320 64) (1856 448 64) (1856 448 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141444,9 +144841,9 @@ world } side { - "id" "35933" - "plane" "(-256 -336 0) (-256 -368 0) (-256 -368 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "32030" + "plane" "(2176 448 64) (2176 320 64) (2176 320 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141455,9 +144852,9 @@ world } side { - "id" "35932" - "plane" "(-288 -336 0) (-256 -336 0) (-256 -336 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "32029" + "plane" "(1856 448 64) (2176 448 64) (2176 448 128)" + "material" "RYAN_DEV/BROWN2" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141466,9 +144863,9 @@ world } side { - "id" "35931" - "plane" "(-256 -368 0) (-288 -368 0) (-288 -368 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "32028" + "plane" "(2176 320 64) (1856 320 64) (1856 320 128)" + "material" "RYAN_DEV/BROWN2" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141477,22 +144874,21 @@ world } editor { - "color" "128 225 0" - "groupid" "56822" - "visgroupid" "20" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56831" + "id" "11217" side { - "id" "35948" - "plane" "(-480 624 128) (-448 624 128) (-448 592 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "11785" + "plane" "(1344 448 64) (1344 960 64) (1664 960 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141500,9 +144896,9 @@ world } side { - "id" "35947" - "plane" "(-480 592 64) (-448 592 64) (-448 624 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "11784" + "plane" "(1344 960 0) (1344 448 0) (1664 448 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141511,9 +144907,9 @@ world } side { - "id" "35946" - "plane" "(-480 624 128) (-480 592 128) (-480 592 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "11783" + "plane" "(1344 448 0) (1344 960 0) (1344 960 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141522,9 +144918,9 @@ world } side { - "id" "35945" - "plane" "(-448 624 64) (-448 592 64) (-448 592 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "11782" + "plane" "(1664 960 0) (1664 448 0) (1664 448 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141533,9 +144929,9 @@ world } side { - "id" "35944" - "plane" "(-448 624 128) (-480 624 128) (-480 624 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "11781" + "plane" "(1344 960 0) (1664 960 0) (1664 960 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141544,9 +144940,9 @@ world } side { - "id" "35943" - "plane" "(-448 592 64) (-480 592 64) (-480 592 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "11780" + "plane" "(1664 448 0) (1344 448 0) (1344 448 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141555,22 +144951,21 @@ world } editor { - "color" "128 225 0" - "groupid" "56827" - "visgroupid" "20" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56836" + "id" "11220" side { - "id" "35960" - "plane" "(48 688 128) (80 688 128) (80 656 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "11797" + "plane" "(1184 448 64) (1184 768 64) (1344 768 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141578,9 +144973,9 @@ world } side { - "id" "35959" - "plane" "(48 656 64) (80 656 64) (80 688 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "11796" + "plane" "(1184 768 0) (1184 448 0) (1344 448 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141589,9 +144984,9 @@ world } side { - "id" "35958" - "plane" "(48 688 128) (48 656 128) (48 656 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "11795" + "plane" "(1184 448 0) (1184 768 0) (1184 768 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141600,9 +144995,9 @@ world } side { - "id" "35957" - "plane" "(80 688 64) (80 656 64) (80 656 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "11794" + "plane" "(1344 768 0) (1344 448 0) (1344 448 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141611,9 +145006,9 @@ world } side { - "id" "35956" - "plane" "(80 688 128) (48 688 128) (48 688 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "11793" + "plane" "(1184 768 0) (1344 768 0) (1344 768 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141622,9 +145017,9 @@ world } side { - "id" "35955" - "plane" "(80 656 64) (48 656 64) (48 656 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "11792" + "plane" "(1344 448 0) (1184 448 0) (1184 448 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141633,22 +145028,21 @@ world } editor { - "color" "128 225 0" - "groupid" "56832" - "visgroupid" "20" + "color" "0 217 190" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56841" + "id" "11228" side { - "id" "35972" - "plane" "(496 1088 128) (528 1088 128) (528 1056 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "11814" + "plane" "(1344 320 64) (1344 448 64) (1472 448 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141656,9 +145050,9 @@ world } side { - "id" "35971" - "plane" "(496 1056 64) (528 1056 64) (528 1088 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "11813" + "plane" "(1472 448 0) (1344 448 0) (1344 320 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141667,20 +145061,9 @@ world } side { - "id" "35970" - "plane" "(496 1088 128) (496 1056 128) (496 1056 64)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "35969" - "plane" "(528 1088 64) (528 1056 64) (528 1056 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "11812" + "plane" "(1344 320 0) (1344 448 0) (1344 448 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141689,9 +145072,9 @@ world } side { - "id" "35968" - "plane" "(528 1088 128) (496 1088 128) (496 1088 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "11811" + "plane" "(1344 448 0) (1472 448 0) (1472 448 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141700,10 +145083,10 @@ world } side { - "id" "35967" - "plane" "(528 1056 64) (496 1056 64) (496 1056 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "11810" + "plane" "(1472 448 0) (1344 320 0) (1344 320 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141711,22 +145094,20 @@ world } editor { - "color" "128 225 0" - "groupid" "56837" - "visgroupid" "20" + "color" "0 217 190" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56846" + "id" "11229" side { - "id" "35984" - "plane" "(2064 6.10352e-05 160) (2064 32.0001 160) (2096 32.0001 160)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "11826" + "plane" "(608 928 80) (640 896 80) (448 704 80)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141734,9 +145115,9 @@ world } side { - "id" "35983" - "plane" "(2064 32.0001 96) (2064 6.10352e-05 96) (2096 6.10352e-05 96)" - "material" "TOOLS/TOOLSSKIP" + "id" "11825" + "plane" "(448 768 64) (448 704 64) (640 896 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141745,9 +145126,9 @@ world } side { - "id" "35982" - "plane" "(2064 6.10352e-05 96) (2064 32.0001 96) (2064 32.0001 160)" - "material" "TOOLS/TOOLSSKIP" + "id" "11824" + "plane" "(608 928 64) (608 928 80) (448 768 80)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141756,9 +145137,9 @@ world } side { - "id" "35981" - "plane" "(2096 32.0001 96) (2096 6.10352e-05 96) (2096 6.10352e-05 160)" - "material" "TOOLS/TOOLSSKIP" + "id" "11823" + "plane" "(448 704 64) (448 704 80) (640 896 80)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141767,9 +145148,9 @@ world } side { - "id" "35980" - "plane" "(2064 32.0001 96) (2096 32.0001 96) (2096 32.0001 160)" - "material" "TOOLS/TOOLSSKIP" + "id" "11822" + "plane" "(640 896 64) (640 896 80) (608 928 80)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141778,10 +145159,10 @@ world } side { - "id" "35979" - "plane" "(2096 6.10352e-05 96) (2064 6.10352e-05 96) (2064 6.10352e-05 160)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "11821" + "plane" "(448 768 64) (448 768 80) (448 704 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141789,22 +145170,21 @@ world } editor { - "color" "128 225 0" - "groupid" "56842" - "visgroupid" "20" + "color" "0 144 237" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56851" + "id" "11514" side { - "id" "35996" - "plane" "(1504 32.0001 192) (1504 64.0001 192) (1536 64.0001 192)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "12360" + "plane" "(1472 -960 64) (1472 -576 64) (1728 -576 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141812,9 +145192,9 @@ world } side { - "id" "35995" - "plane" "(1504 64.0001 128) (1504 32.0001 128) (1536 32.0001 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "12359" + "plane" "(1472 -576 0) (1472 -960 0) (1728 -960 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141823,9 +145203,9 @@ world } side { - "id" "35994" - "plane" "(1504 32.0001 128) (1504 64.0001 128) (1504 64.0001 192)" - "material" "TOOLS/TOOLSSKIP" + "id" "12358" + "plane" "(1472 -960 0) (1472 -576 0) (1472 -576 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141834,9 +145214,9 @@ world } side { - "id" "35993" - "plane" "(1536 64.0001 128) (1536 32.0001 128) (1536 32.0001 192)" - "material" "TOOLS/TOOLSSKIP" + "id" "12357" + "plane" "(1728 -576 0) (1728 -960 0) (1728 -960 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141845,9 +145225,9 @@ world } side { - "id" "35992" - "plane" "(1504 64.0001 128) (1536 64.0001 128) (1536 64.0001 192)" - "material" "TOOLS/TOOLSSKIP" + "id" "12356" + "plane" "(1472 -576 0) (1728 -576 0) (1728 -576 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141856,9 +145236,9 @@ world } side { - "id" "35991" - "plane" "(1536 32.0001 128) (1504 32.0001 128) (1504 32.0001 192)" - "material" "TOOLS/TOOLSSKIP" + "id" "12355" + "plane" "(1728 -960 0) (1472 -960 0) (1472 -960 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141867,21 +145247,20 @@ world } editor { - "color" "128 225 0" - "groupid" "56847" - "visgroupid" "20" + "color" "0 119 112" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56861" + "id" "9654" side { - "id" "36020" - "plane" "(704 -384 128) (704 -352 128) (736 -352 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "10828" + "plane" "(-1040 -1088 48) (-1040 -704 48) (-960 -704 48)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141890,9 +145269,9 @@ world } side { - "id" "36019" - "plane" "(704 -352 64) (704 -384 64) (736 -384 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "10827" + "plane" "(-1040 -704 0) (-1040 -1088 0) (-960 -1088 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141901,9 +145280,9 @@ world } side { - "id" "36018" - "plane" "(704 -384 64) (704 -352 64) (704 -352 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "10826" + "plane" "(-1040 -1088 0) (-1040 -704 0) (-1040 -704 48)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141912,9 +145291,9 @@ world } side { - "id" "36017" - "plane" "(736 -352 64) (736 -384 64) (736 -384 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "10825" + "plane" "(-960 -704 0) (-960 -1088 0) (-960 -1088 48)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141923,9 +145302,9 @@ world } side { - "id" "36016" - "plane" "(704 -352 64) (736 -352 64) (736 -352 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "10824" + "plane" "(-1040 -704 0) (-960 -704 0) (-960 -704 48)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141934,9 +145313,9 @@ world } side { - "id" "36015" - "plane" "(736 -384 64) (704 -384 64) (704 -384 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "10823" + "plane" "(-960 -1088 0) (-1040 -1088 0) (-1040 -1088 48)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141945,21 +145324,20 @@ world } editor { - "color" "128 225 0" - "groupid" "56857" - "visgroupid" "20" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56871" + "id" "8161" side { - "id" "36044" - "plane" "(864 -1264 128) (864 -1232 128) (896 -1232 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9946" + "plane" "(48 -1856 80) (48 -1760 80) (64 -1760 80)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141968,9 +145346,9 @@ world } side { - "id" "36043" - "plane" "(864 -1232 64) (864 -1264 64) (896 -1264 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "9945" + "plane" "(48 -1760 0) (48 -1856 0) (64 -1856 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -141979,9 +145357,9 @@ world } side { - "id" "36042" - "plane" "(864 -1264 64) (864 -1232 64) (864 -1232 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9944" + "plane" "(48 -1856 0) (48 -1760 0) (48 -1760 80)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -141990,9 +145368,9 @@ world } side { - "id" "36041" - "plane" "(896 -1232 64) (896 -1264 64) (896 -1264 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9943" + "plane" "(64 -1760 0) (64 -1856 0) (64 -1856 80)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142001,9 +145379,9 @@ world } side { - "id" "36040" - "plane" "(864 -1232 64) (896 -1232 64) (896 -1232 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9942" + "plane" "(48 -1760 0) (64 -1760 0) (64 -1760 80)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142012,9 +145390,9 @@ world } side { - "id" "36039" - "plane" "(896 -1264 64) (864 -1264 64) (864 -1264 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9941" + "plane" "(64 -1856 0) (48 -1856 0) (48 -1856 80)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142023,32 +145401,91 @@ world } editor { - "color" "128 225 0" - "groupid" "56867" - "visgroupid" "20" + "color" "0 176 105" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56881" + "id" "8171" side { - "id" "36068" - "plane" "(1616 -976 128) (1616 -944 128) (1648 -944 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "97214" + "plane" "(-48 -1856 48) (-48 -1776 48) (48 -1776 48)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[-48 -1856 48]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 1 0 0 1 0 0 1 0 0 0" + "row1" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1" + "row2" "0 0 0 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "0 15.6878 25 15.6878 0" + "row1" "0 0 15.6878 25 15.6878" + "row2" "0 6.38988 13.1994 27.1461 28.135" + "row3" "0 0 8.61866 24.5796 24.5491" + "row4" "6.29541 13.0724 17.4496 22.2083 21.3899" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0" + "row1" "0 0 0 0 0" + "row2" "0 0 0 0 0" + "row3" "0 0 0 0 0" + "row4" "0 0 0 0 0" + } + triangle_tags + { + "row0" "9 0 1 1 9 9 1 1" + "row1" "9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 1 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "36067" - "plane" "(1616 -944 64) (1616 -976 64) (1648 -976 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "97213" + "plane" "(-48 -1776 0) (-48 -1856 0) (48 -1856 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -142057,9 +145494,9 @@ world } side { - "id" "36066" - "plane" "(1616 -976 64) (1616 -944 64) (1616 -944 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "97212" + "plane" "(-48 -1856 0) (-48 -1776 0) (-48 -1776 48)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142068,9 +145505,9 @@ world } side { - "id" "36065" - "plane" "(1648 -944 64) (1648 -976 64) (1648 -976 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "97211" + "plane" "(48 -1776 0) (48 -1856 0) (48 -1856 48)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142079,9 +145516,9 @@ world } side { - "id" "36064" - "plane" "(1616 -944 64) (1648 -944 64) (1648 -944 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "97210" + "plane" "(-48 -1776 0) (48 -1776 0) (48 -1776 48)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142090,9 +145527,9 @@ world } side { - "id" "36063" - "plane" "(1648 -976 64) (1616 -976 64) (1616 -976 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "97209" + "plane" "(48 -1856 0) (-48 -1856 0) (-48 -1856 48)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142101,21 +145538,21 @@ world } editor { - "color" "128 225 0" - "groupid" "56877" - "visgroupid" "20" + "color" "0 134 247" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56886" + "id" "8181" side { - "id" "36080" - "plane" "(2352 -1056 128) (2352 -1024 128) (2384 -1024 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9982" + "plane" "(-64 -1760 64) (-48 -1760 64) (-48 -1856 64)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -142124,9 +145561,9 @@ world } side { - "id" "36079" - "plane" "(2352 -1024 64) (2352 -1056 64) (2384 -1056 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "9981" + "plane" "(-64 -1856 0) (-48 -1856 0) (-48 -1760 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -142135,9 +145572,9 @@ world } side { - "id" "36078" - "plane" "(2352 -1056 64) (2352 -1024 64) (2352 -1024 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9980" + "plane" "(-64 -1760 0) (-64 -1760 64) (-64 -1856 64)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142146,9 +145583,9 @@ world } side { - "id" "36077" - "plane" "(2384 -1024 64) (2384 -1056 64) (2384 -1056 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9979" + "plane" "(-48 -1856 0) (-48 -1856 64) (-48 -1760 64)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142157,9 +145594,9 @@ world } side { - "id" "36076" - "plane" "(2352 -1024 64) (2384 -1024 64) (2384 -1024 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9978" + "plane" "(-48 -1760 0) (-48 -1760 64) (-64 -1760 64)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142168,9 +145605,9 @@ world } side { - "id" "36075" - "plane" "(2384 -1056 64) (2352 -1056 64) (2352 -1056 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9977" + "plane" "(-64 -1856 0) (-64 -1856 64) (-48 -1856 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142179,21 +145616,21 @@ world } editor { - "color" "128 225 0" - "groupid" "56882" - "visgroupid" "20" + "color" "0 176 105" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56892" + "id" "8204" side { - "id" "36092" - "plane" "(2608 -544 160) (2608 -512 160) (2640 -512 160)" - "material" "TOOLS/TOOLSSKIP" + "id" "10047" + "plane" "(576 -1952 256) (576 -1920 256) (640 -1920 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -142202,9 +145639,9 @@ world } side { - "id" "36091" - "plane" "(2608 -512 96) (2608 -544 96) (2640 -544 96)" - "material" "TOOLS/TOOLSSKIP" + "id" "10046" + "plane" "(576 -1920 64) (576 -1952 64) (640 -1952 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -142213,9 +145650,9 @@ world } side { - "id" "36090" - "plane" "(2608 -544 96) (2608 -512 96) (2608 -512 160)" - "material" "TOOLS/TOOLSSKIP" + "id" "10045" + "plane" "(576 -1952 64) (576 -1920 64) (576 -1920 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142224,10 +145661,10 @@ world } side { - "id" "36089" - "plane" "(2640 -512 96) (2640 -544 96) (2640 -544 160)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" + "id" "10044" + "plane" "(640 -1920 64) (640 -1952 64) (640 -1952 256)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -142235,9 +145672,9 @@ world } side { - "id" "36088" - "plane" "(2608 -512 96) (2640 -512 96) (2640 -512 160)" - "material" "TOOLS/TOOLSSKIP" + "id" "10043" + "plane" "(576 -1920 64) (640 -1920 64) (640 -1920 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142246,9 +145683,9 @@ world } side { - "id" "36087" - "plane" "(2640 -544 96) (2608 -544 96) (2608 -544 160)" - "material" "TOOLS/TOOLSSKIP" + "id" "10042" + "plane" "(640 -1952 64) (576 -1952 64) (576 -1952 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142257,21 +145694,19 @@ world } editor { - "color" "128 225 0" - "groupid" "56888" - "visgroupid" "20" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56897" + "id" "7989" side { - "id" "36104" - "plane" "(2512 160 192) (2512 192 192) (2544 192 192)" - "material" "TOOLS/TOOLSSKIP" + "id" "9803" + "plane" "(0 192 256) (0 448 256) (128 448 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -142280,9 +145715,9 @@ world } side { - "id" "36103" - "plane" "(2512 192 128) (2512 160 128) (2544 160 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9802" + "plane" "(0 448 64) (0 192 64) (128 192 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -142291,9 +145726,9 @@ world } side { - "id" "36102" - "plane" "(2512 160 128) (2512 192 128) (2512 192 192)" - "material" "TOOLS/TOOLSSKIP" + "id" "9801" + "plane" "(0 192 64) (0 448 64) (0 448 256)" + "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142302,10 +145737,10 @@ world } side { - "id" "36101" - "plane" "(2544 192 128) (2544 160 128) (2544 160 192)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" + "id" "9800" + "plane" "(128 448 64) (128 192 64) (128 192 256)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -142313,9 +145748,9 @@ world } side { - "id" "36100" - "plane" "(2512 192 128) (2544 192 128) (2544 192 192)" - "material" "TOOLS/TOOLSSKIP" + "id" "9799" + "plane" "(0 448 64) (128 448 64) (128 448 256)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142324,9 +145759,9 @@ world } side { - "id" "36099" - "plane" "(2544 160 128) (2512 160 128) (2512 160 192)" - "material" "TOOLS/TOOLSSKIP" + "id" "9798" + "plane" "(128 192 64) (0 192 64) (0 192 256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142335,44 +145770,42 @@ world } editor { - "color" "128 225 0" - "groupid" "56893" - "visgroupid" "20" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56902" + "id" "7773" side { - "id" "36116" - "plane" "(1904 -400 160) (1904 -368 160) (1936 -368 160)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "35286" + "plane" "(704 -320 80) (576 -320 80) (576 -192 128)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "36115" - "plane" "(1904 -368 96) (1904 -400 96) (1936 -400 96)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "35285" + "plane" "(704 -192 80) (576 -192 80) (576 -320 80)" + "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" "36114" - "plane" "(1904 -400 96) (1904 -368 96) (1904 -368 160)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" + "id" "35284" + "plane" "(576 -192 80) (704 -192 80) (704 -192 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -142380,9 +145813,9 @@ world } side { - "id" "36113" - "plane" "(1936 -368 96) (1936 -400 96) (1936 -400 160)" - "material" "TOOLS/TOOLSSKIP" + "id" "35283" + "plane" "(576 -192 128) (576 -320 80) (576 -192 80)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142391,21 +145824,10 @@ world } side { - "id" "36112" - "plane" "(1904 -368 96) (1936 -368 96) (1936 -368 160)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36111" - "plane" "(1936 -400 96) (1904 -400 96) (1904 -400 160)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "35282" + "plane" "(704 -192 80) (704 -320 80) (704 -192 128)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -142413,44 +145835,44 @@ world } editor { - "color" "128 225 0" - "groupid" "56898" - "visgroupid" "20" + "color" "0 226 179" + "groupid" "7772" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56907" + "id" "7799" side { - "id" "36128" - "plane" "(1568 592 128) (1568 624 128) (1600 624 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "9687" + "plane" "(128 384 256) (128 448 256) (384 640 256)" + "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" "36127" - "plane" "(1568 624 64) (1568 592 64) (1600 592 64)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "9686" + "plane" "(384 640 0) (128 448 0) (128 384 0)" + "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" "36126" - "plane" "(1568 592 64) (1568 624 64) (1568 624 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" + "id" "9685" + "plane" "(448 640 0) (448 640 256) (384 640 256)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -142458,10 +145880,10 @@ world } side { - "id" "36125" - "plane" "(1600 624 64) (1600 592 64) (1600 592 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" + "id" "9684" + "plane" "(128 384 0) (128 384 256) (448 384 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -142469,10 +145891,10 @@ world } side { - "id" "36124" - "plane" "(1568 624 64) (1600 624 64) (1600 624 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "9683" + "plane" "(448 384 0) (448 384 256) (448 640 256)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -142480,9 +145902,20 @@ world } side { - "id" "36123" - "plane" "(1600 592 64) (1568 592 64) (1568 592 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9682" + "plane" "(128 448 0) (128 448 256) (128 384 256)" + "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" "9681" + "plane" "(384 640 0) (384 640 256) (128 448 256)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142491,22 +145924,20 @@ world } editor { - "color" "128 225 0" - "groupid" "56903" - "visgroupid" "20" + "color" "0 108 237" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56912" + "id" "7809" side { - "id" "36140" - "plane" "(864 656 160) (896 656 160) (896 624 160)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "9694" + "plane" "(448 512 96) (448 640 96) (672 864 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -142514,9 +145945,9 @@ world } side { - "id" "36139" - "plane" "(864 624 96) (896 624 96) (896 656 96)" - "material" "TOOLS/TOOLSSKIP" + "id" "9693" + "plane" "(448 512 64) (704 512 64) (704 832 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -142525,87 +145956,20 @@ world } side { - "id" "36138" - "plane" "(864 656 160) (864 624 160) (864 624 96)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36137" - "plane" "(896 656 96) (896 624 96) (896 624 160)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36136" - "plane" "(896 656 160) (864 656 160) (864 656 96)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36135" - "plane" "(896 624 96) (864 624 96) (864 624 160)" - "material" "TOOLS/TOOLSSKIP" + "id" "9692" + "plane" "(448 512 64) (448 512 96) (704 512 96)" + "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" "128 225 0" - "groupid" "56908" - "visgroupid" "20" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "56917" - side - { - "id" "36152" - "plane" "(-176 -3088 64) (-176 -3056 64) (-144 -3056 64)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } side { - "id" "36151" - "plane" "(-176 -3056 0) (-176 -3088 0) (-144 -3088 0)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36150" - "plane" "(-176 -3088 0) (-176 -3056 0) (-176 -3056 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "9691" + "plane" "(704 512 64) (704 512 96) (704 832 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142614,9 +145978,9 @@ world } side { - "id" "36149" - "plane" "(-144 -3056 0) (-144 -3088 0) (-144 -3088 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "9690" + "plane" "(448 640 64) (448 640 96) (448 512 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142625,9 +145989,9 @@ world } side { - "id" "36148" - "plane" "(-176 -3056 0) (-144 -3056 0) (-144 -3056 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "9689" + "plane" "(672 864 64) (672 864 96) (448 640 96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142636,9 +146000,9 @@ world } side { - "id" "36147" - "plane" "(-144 -3088 0) (-176 -3088 0) (-176 -3088 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "9688" + "plane" "(704 832 64) (704 832 96) (672 864 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142647,22 +146011,22 @@ world } editor { - "color" "128 225 0" - "groupid" "56913" - "visgroupid" "20" + "color" "0 226 179" + "groupid" "1004" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "56922" + "id" "7821" side { - "id" "36164" - "plane" "(464 -1168 128) (464 -1136 128) (496 -1136 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "9713" + "plane" "(704 -160 128) (704 -128 128) (896 -128 128)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -142670,9 +146034,9 @@ world } side { - "id" "36163" - "plane" "(464 -1136 64) (464 -1168 64) (496 -1168 64)" - "material" "TOOLS/TOOLSSKIP" + "id" "9712" + "plane" "(704 -128 64) (704 -160 64) (896 -160 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -142681,9 +146045,9 @@ world } side { - "id" "36162" - "plane" "(464 -1168 64) (464 -1136 64) (464 -1136 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9711" + "plane" "(896 -128 64) (896 -160 64) (896 -160 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142692,9 +146056,9 @@ world } side { - "id" "36161" - "plane" "(496 -1136 64) (496 -1168 64) (496 -1168 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9710" + "plane" "(704 -160 64) (704 -128 64) (704 -128 128)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142703,9 +146067,9 @@ world } side { - "id" "36160" - "plane" "(464 -1136 64) (496 -1136 64) (496 -1136 128)" - "material" "TOOLS/TOOLSSKIP" + "id" "9709" + "plane" "(896 -160 64) (704 -160 64) (704 -160 128)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -142714,10 +146078,10 @@ world } side { - "id" "36159" - "plane" "(496 -1168 64) (464 -1168 64) (464 -1168 128)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" + "id" "9708" + "plane" "(704 -128 64) (896 -128 64) (896 -128 128)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -142725,268 +146089,19 @@ world } editor { - "color" "128 225 0" - "groupid" "56918" - "visgroupid" "20" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } - hidden - { - solid - { - "id" "57391" - side - { - "id" "36194" - "plane" "(2096 160 320) (2096 416 320) (2256 416 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36193" - "plane" "(2096 416 256) (2096 160 256) (2256 160 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36192" - "plane" "(2256 416 256) (2256 416 320) (2096 416 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36191" - "plane" "(2096 160 256) (2096 160 320) (2256 160 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36190" - "plane" "(2256 160 256) (2256 160 320) (2256 416 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36189" - "plane" "(2096 416 256) (2096 416 320) (2096 160 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 101 178" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "57394" - side - { - "id" "36206" - "plane" "(2080 176 320) (2080 400 320) (2096 416 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36205" - "plane" "(2080 400 256) (2080 176 256) (2096 160 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36204" - "plane" "(2096 416 256) (2096 416 320) (2080 400 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36203" - "plane" "(2080 176 256) (2080 176 320) (2096 160 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36202" - "plane" "(2096 160 256) (2096 160 320) (2096 416 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36201" - "plane" "(2080 400 256) (2080 400 320) (2080 176 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 101 178" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "57397" - side - { - "id" "36218" - "plane" "(2272 400 320) (2272 176 320) (2256 160 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36217" - "plane" "(2256 416 256) (2256 160 256) (2272 176 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36216" - "plane" "(2272 400 256) (2272 400 320) (2256 416 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36215" - "plane" "(2256 160 256) (2256 160 320) (2272 176 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36214" - "plane" "(2256 416 256) (2256 416 320) (2256 160 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36213" - "plane" "(2272 176 256) (2272 176 320) (2272 400 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 101 178" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } solid { - "id" "53609" - side - { - "id" "35023" - "plane" "(640 -1952 64) (320 -1952 64) (320 -1640 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "6822" side { - "id" "35022" - "plane" "(640 -1640 0) (320 -1640 0) (320 -1952 0)" + "id" "9084" + "plane" "(-128 -2944 0) (128 -2944 0) (128 -2752 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -142996,9 +146111,9 @@ world } side { - "id" "35021" - "plane" "(320 -1952 0) (320 -1640 0) (320 -1640 64)" - "material" "DEV/REFLECTIVITY_50B" + "id" "9083" + "plane" "(128 -2752 64) (128 -2752 0) (128 -2944 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -143007,8 +146122,8 @@ world } side { - "id" "35020" - "plane" "(320 -1640 0) (640 -1640 0) (640 -1640 64)" + "id" "9082" + "plane" "(-128 -2752 0) (128 -2752 0) (128 -2752 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -143018,9 +146133,9 @@ world } side { - "id" "35019" - "plane" "(640 -1952 0) (320 -1952 0) (320 -1952 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "9081" + "plane" "(128 -2944 64) (128 -2944 0) (-128 -2944 0)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -143029,11 +146144,11 @@ world } side { - "id" "35018" - "plane" "(640 -1640 0) (640 -1952 0) (640 -1952 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "9080" + "plane" "(-128 -2944 0) (-128 -2752 0) (128 -2752 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -143048,35 +146163,35 @@ world } solid { - "id" "53616" + "id" "6830" side { - "id" "35053" - "plane" "(1408 -576 320) (1408 -288 320) (1472 -288 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "9106" + "plane" "(128 -2944 64) (128 -2720 64) (320 -2720 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35052" - "plane" "(1408 -288 64) (1408 -576 64) (1472 -576 64)" + "id" "9105" + "plane" "(128 -2720 0) (128 -2944 0) (320 -2944 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35051" - "plane" "(1472 -288 64) (1472 -576 64) (1472 -576 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -256] 0.25" + "id" "9104" + "plane" "(128 -2944 0) (128 -2720 0) (128 -2720 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -143084,10 +146199,10 @@ world } side { - "id" "35050" - "plane" "(1408 -576 64) (1408 -288 64) (1408 -288 320)" + "id" "9103" + "plane" "(320 -2720 0) (320 -2944 0) (320 -2944 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -143095,8 +146210,8 @@ world } side { - "id" "35049" - "plane" "(1472 -576 64) (1408 -576 64) (1408 -576 320)" + "id" "9102" + "plane" "(128 -2720 0) (320 -2720 0) (320 -2720 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -143106,9 +146221,9 @@ world } side { - "id" "35048" - "plane" "(1408 -288 64) (1472 -288 64) (1472 -288 320)" - "material" "TOOLS/TOOLSNODRAW" + "id" "9101" + "plane" "(320 -2944 0) (128 -2944 0) (128 -2944 64)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -143117,42 +146232,43 @@ world } editor { - "color" "0 137 234" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "53623" + "id" "6838" side { - "id" "35077" - "plane" "(1408 -640 320) (1408 -576 320) (1472 -576 320)" + "id" "9130" + "plane" "(320 -1984 256) (320 -1952 256) (576 -1952 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35076" - "plane" "(1408 -576 64) (1408 -640 64) (1472 -640 64)" + "id" "9129" + "plane" "(320 -1952 64) (320 -1984 64) (576 -1984 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35075" - "plane" "(1472 -576 64) (1472 -640 64) (1472 -640 320)" + "id" "9128" + "plane" "(320 -1984 64) (320 -1952 64) (320 -1952 256)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -143160,10 +146276,10 @@ world } side { - "id" "35074" - "plane" "(1408 -640 64) (1408 -576 64) (1408 -576 320)" + "id" "9127" + "plane" "(576 -1952 64) (576 -1984 64) (576 -1984 256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -143171,9 +146287,9 @@ world } side { - "id" "35073" - "plane" "(1472 -640 64) (1408 -640 64) (1408 -640 320)" - "material" "TOOLS/TOOLSNODRAW" + "id" "9126" + "plane" "(320 -1952 64) (576 -1952 64) (576 -1952 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -143182,9 +146298,9 @@ world } side { - "id" "35072" - "plane" "(1408 -576 64) (1472 -576 64) (1472 -576 320)" - "material" "TOOLS/TOOLSNODRAW" + "id" "9125" + "plane" "(576 -1984 64) (320 -1984 64) (320 -1984 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -143193,64 +146309,173 @@ world } editor { - "color" "0 137 234" + "color" "0 176 105" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "53624" - side - { - "id" "35089" - "plane" "(2304 -576 320) (1728 -576 320) (1728 -512 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" - } + "id" "6853" side { - "id" "35088" - "plane" "(2304 -512 64) (1728 -512 64) (1728 -576 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "50304" + "plane" "(-512 -3456 0) (-512 -2752 0) (320 -2752 0)" + "material" "DEV/DEV_BLENDMEASURE" + "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - } - side - { - "id" "35087" - "plane" "(1728 -512 64) (2304 -512 64) (2304 -512 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "35086" - "plane" "(2304 -576 64) (1728 -576 64) (1728 -576 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" + dispinfo + { + "power" "4" + "startposition" "[-512 -3456 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row9" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row10" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row11" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row12" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row13" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row14" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row15" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row16" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 120 255 255 255 255 178 10 0 0 0 0 0 0" + "row1" "0 0 0 0 0 255 112 189 222 0 15 35 0 0 0 0 0" + "row2" "0 0 0 0 45 172.5 167 121 247.5 120 22.5 0 0 0 0 0 0" + "row3" "0 0 0 0 37.5 120 155.5 136.5 243.5 135 0 0 0 0 0 0 0" + "row4" "71.5 0 0 0 0 37.5 247.5 162 202.5 67.5 0 0 0 0 0 0 0" + "row5" "255 104.5 0 11 82.5 253 225 180 97.5 0 0 0 0 0 0 0 0" + "row6" "255 255 159.5 148.5 136.5 255 255 172.5 61 0 0 0 0 0 0 0 0" + "row7" "255 255 255 247.5 178 244 225 94 0 0 0 0 0 0 0 0 0" + "row8" "255 255 255 249.5 139.5 255 71 5 0 0 0 0 0 0 0 0 0" + "row9" "254 255 189.5 150 46 0 0 0 0 0.5 0 0 0 0 0 0 0" + "row10" "202.5 255 255 216.5 55 0 0 0 0 0 0 0 0 0 0 0 0" + "row11" "0 22 110 216.5 93.5 49.5 0 0 0 0 0 0 0 0 0 0 0" + "row12" "0 0 8.5 150.5 115.5 115.5 134 187.5 75 0 0 0 0 0 0 0 0" + "row13" "0 0 0 66 131 230.5 255 255 100 0 0 0 0 0 0 0 0" + "row14" "0 0 0 0 99 255 255 255 75 0 0 0 0 0 0 0 0" + "row15" "0 0 0 0 44 88 22 210 175 25 0 0 0 0 0 0 0" + "row16" "0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row8" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row9" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row10" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row11" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row12" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row13" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row14" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row15" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + side + { + "id" "50303" + "plane" "(-512 -2752 -64) (-512 -3456 -64) (320 -3456 -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" "35085" - "plane" "(2304 -512 64) (2304 -576 64) (2304 -576 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 -256] 0.25" + "id" "50302" + "plane" "(-512 -3456 -64) (-512 -2752 -64) (-512 -2752 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -143258,10 +146483,32 @@ world } side { - "id" "35084" - "plane" "(1728 -576 64) (1728 -512 64) (1728 -512 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 -256] 0.25" + "id" "50301" + "plane" "(320 -2752 -64) (320 -3456 -64) (320 -3456 0)" + "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" "50300" + "plane" "(-512 -2752 -64) (320 -2752 -64) (320 -2752 0)" + "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" "50299" + "plane" "(320 -3456 -64) (-512 -3456 -64) (-512 -3456 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -143269,42 +146516,43 @@ world } editor { - "color" "0 137 234" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "53627" + "id" "6869" side { - "id" "35101" - "plane" "(2240 -512 384) (2240 -192 384) (2304 -192 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "57854" + "plane" "(0 -2720 64) (0 -2176 64) (320 -2176 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35100" - "plane" "(2240 -192 64) (2240 -512 64) (2304 -512 64)" + "id" "57853" + "plane" "(0 -2176 0) (0 -2720 0) (320 -2720 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35099" - "plane" "(2240 -512 64) (2240 -192 64) (2240 -192 384)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 256] 0.25" + "id" "57852" + "plane" "(0 -2720 0) (0 -2176 0) (0 -2176 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -143312,10 +146560,10 @@ world } side { - "id" "35098" - "plane" "(2304 -192 64) (2304 -512 64) (2304 -512 384)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 -256] 0.25" + "id" "57851" + "plane" "(320 -2176 0) (320 -2720 0) (320 -2720 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -143323,10 +146571,10 @@ world } side { - "id" "35097" - "plane" "(2240 -192 64) (2304 -192 64) (2304 -192 384)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 0] 0.25" + "id" "57850" + "plane" "(0 -2176 0) (320 -2176 0) (320 -2176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -143334,10 +146582,10 @@ world } side { - "id" "35096" - "plane" "(2304 -512 64) (2240 -512 64) (2240 -512 384)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -256] 0.25" + "id" "57849" + "plane" "(320 -2720 0) (0 -2720 0) (0 -2720 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -143345,8833 +146593,8172 @@ world } editor { - "color" "0 137 234" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "53635" + "id" "2248" side { - "id" "35113" - "plane" "(1856 -192 112) (1856 320 112) (1888 320 112)" - "material" "RYAN_DEV/DEV_BROWN4" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6305" + "plane" "(1330 768 176) (1336 768 176) (1336 776 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35112" - "plane" "(1856 320 96) (1856 -192 96) (1888 -192 96)" + "id" "6304" + "plane" "(1336 776 182) (1336 768 182) (1330 768 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35111" - "plane" "(1856 -192 96) (1856 320 96) (1856 320 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6303" + "plane" "(1328 776 182) (1328 770 182) (1328 770 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35110" - "plane" "(1888 320 96) (1888 -192 96) (1888 -192 112)" - "material" "RYAN_DEV/BROWN2" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6302" + "plane" "(1336 768 182) (1336 776 182) (1336 776 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35109" - "plane" "(1856 320 96) (1888 320 96) (1888 320 112)" + "id" "6301" + "plane" "(1336 776 182) (1328 776 182) (1328 776 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35108" - "plane" "(1888 -192 96) (1856 -192 96) (1856 -192 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6300" + "plane" "(1330 768 182) (1336 768 182) (1336 768 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -128.697] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6299" + "plane" "(1328 770 182) (1330 768 182) (1330 768 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 112" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "53640" + "id" "2249" side { - "id" "35125" - "plane" "(1888 320 112) (2176 320 112) (2176 288 112)" - "material" "RYAN_DEV/DEV_BROWN4" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6311" + "plane" "(1336 768 182) (1336 776 182) (1328 776 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -128.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35124" - "plane" "(1888 288 96) (2176 288 96) (2176 320 96)" + "id" "6310" + "plane" "(1336 776 202) (1336 768 202) (1328 768 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35123" - "plane" "(2176 288 96) (2176 288 112) (2176 320 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6309" + "plane" "(1328 776 202) (1328 768 202) (1328 768 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35122" - "plane" "(1888 320 96) (1888 320 112) (1888 288 112)" - "material" "RYAN_DEV/BROWN2" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6308" + "plane" "(1336 768 202) (1336 776 202) (1336 776 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35121" - "plane" "(1888 288 96) (1888 288 112) (2176 288 112)" - "material" "RYAN_DEV/BROWN2" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6307" + "plane" "(1336 776 202) (1328 776 202) (1328 776 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35120" - "plane" "(2176 320 96) (2176 320 112) (1888 320 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6306" + "plane" "(1328 768 202) (1336 768 202) (1336 768 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -128.697] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 112" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "55264" + "id" "2250" side { - "id" "35269" - "plane" "(1280 0 320) (1280 64 320) (1296 64 320)" + "id" "6317" + "plane" "(1328 768 202) (1336 768 202) (1336 776 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35268" - "plane" "(1280 64 244) (1280 0 244) (1296 0 244)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 224] 0.25" - "vaxis" "[1 0 0 192] 0.25" + "id" "6316" + "plane" "(1328 776 228) (1336 776 228) (1336 768 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35267" - "plane" "(1280 0 244) (1280 64 244) (1280 64 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 224] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6315" + "plane" "(1328 776 228) (1328 768 228) (1328 768 202)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 432.663] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35266" - "plane" "(1296 64 244) (1296 0 244) (1296 0 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 224] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6314" + "plane" "(1336 776 228) (1328 776 228) (1328 776 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35265" - "plane" "(1280 64 244) (1296 64 244) (1296 64 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6313" + "plane" "(1328 768 228) (1336 768 228) (1336 768 202)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 320.695] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35264" - "plane" "(1296 0 244) (1280 0 244) (1280 0 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6312" + "plane" "(1336 768 228) (1336 776 228) (1336 776 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "55272" + "id" "2251" side { - "id" "35281" - "plane" "(704 -192 96) (704 -160 96) (896 -160 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6323" + "plane" "(1336 768 228) (1336 776 228) (1328 776 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 304.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35280" - "plane" "(704 -160 64) (704 -192 64) (896 -192 64)" + "id" "6322" + "plane" "(1336 776 244) (1336 768 244) (1328 768 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35279" - "plane" "(896 -160 64) (896 -192 64) (896 -192 96)" + "id" "6321" + "plane" "(1336 768 244) (1336 776 244) (1336 776 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35278" - "plane" "(704 -192 64) (704 -160 64) (704 -160 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6320" + "plane" "(1328 776 244) (1328 768 244) (1328 768 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -160.663] 0.25" + "vaxis" "[0 0 1 -457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35277" - "plane" "(896 -192 64) (704 -192 64) (704 -192 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6319" + "plane" "(1336 776 244) (1328 776 244) (1328 776 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 1 14.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35276" - "plane" "(704 -160 64) (896 -160 64) (896 -160 96)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6318" + "plane" "(1328 768 244) (1336 768 244) (1336 768 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 304.697] 0.25" + "vaxis" "[0 0 1 -457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "55276" + "id" "2252" side { - "id" "35298" - "plane" "(1152 352 288) (1152 384 288) (1184 384 288)" + "id" "6329" + "plane" "(1328 780 124) (1340 780 124) (1340 768 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35297" - "plane" "(1152 384 64) (1152 352 64) (1184 352 64)" + "id" "6328" + "plane" "(1328 768 116) (1340 768 116) (1340 780 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35296" - "plane" "(1152 352 64) (1152 384 64) (1152 384 288)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6327" + "plane" "(1328 780 124) (1328 768 124) (1328 768 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35295" - "plane" "(1184 384 64) (1184 352 64) (1184 352 288)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6326" + "plane" "(1340 780 124) (1328 780 124) (1328 780 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35294" - "plane" "(1152 384 64) (1184 384 64) (1184 384 288)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6325" + "plane" "(1328 768 124) (1340 768 124) (1340 768 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -128.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35293" - "plane" "(1184 352 64) (1152 352 64) (1152 352 288)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6324" + "plane" "(1340 768 124) (1340 780 124) (1340 780 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -480.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "55284" + "id" "2253" side { - "id" "35310" - "plane" "(960 352 288) (960 384 288) (992 384 288)" + "id" "6335" + "plane" "(1186 776 420) (1186 768 420) (764 768 420)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35309" - "plane" "(960 384 64) (960 352 64) (992 352 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6334" + "plane" "(1186 768 412) (1186 776 412) (764 776 412)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35308" - "plane" "(992 384 64) (992 352 64) (992 352 288)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6333" + "plane" "(1186 768 420) (1186 776 420) (1186 776 412)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35307" - "plane" "(960 352 64) (960 384 64) (960 384 288)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6332" + "plane" "(764 776 420) (764 768 420) (764 768 412)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35306" - "plane" "(992 352 64) (960 352 64) (960 352 288)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6331" + "plane" "(1186 776 420) (764 776 420) (764 776 412)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35305" - "plane" "(960 384 64) (992 384 64) (992 384 288)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6330" + "plane" "(764 768 420) (1186 768 420) (1186 768 412)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 109.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "55460" + "id" "2254" side { - "id" "35380" - "plane" "(1664 64.0001 320) (1664 224 320) (1728 224 320)" + "id" "6343" + "plane" "(954 768 376) (994 768 376) (996 770 376)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35379" - "plane" "(1664 224 288) (1664 64.0001 288) (1728 64.0001 288)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -288] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6342" + "plane" "(996 770 376) (996 770 412) (996 776 412)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 448.663] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35378" - "plane" "(1728 224 288) (1728 64.0001 288) (1728 64.0001 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6341" + "plane" "(952 776 376) (952 776 412) (952 770 412)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -400.656] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35377" - "plane" "(1664 64.0001 288) (1664 224 288) (1664 224 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6340" + "plane" "(996 776 376) (996 776 412) (952 776 412)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35376" - "plane" "(1728 64.0001 288) (1664 64.0001 288) (1664 64.0001 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6339" + "plane" "(954 768 376) (954 768 412) (994 768 412)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 96.6973] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "35375" - "plane" "(1664 224 288) (1728 224 288) (1728 224 320)" + "id" "6338" + "plane" "(952 770 376) (952 770 412) (954 768 412)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 0.707107 0 -201.556] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6337" + "plane" "(994 768 376) (994 768 412) (996 770 412)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 0.980075] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6336" + "plane" "(996 776 412) (996 770 412) (994 768 412)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "52232" + "id" "2255" side { - "id" "34371" - "plane" "(1472 -704 64) (1728 -704 64) (1728 -576 64)" + "id" "6351" + "plane" "(838 768 376) (878 768 376) (880 770 376)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34370" - "plane" "(1472 -576 64) (1472 -576 96) (1472 -704 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6350" + "plane" "(880 770 376) (880 770 412) (880 776 412)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 448.663] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34369" - "plane" "(1728 -576 64) (1728 -704 64) (1728 -576 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6349" + "plane" "(836 776 376) (836 776 412) (836 770 412)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -400.656] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34368" - "plane" "(1472 -576 64) (1728 -576 64) (1728 -576 96)" + "id" "6348" + "plane" "(880 776 376) (880 776 412) (836 776 412)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34367" - "plane" "(1472 -704 64) (1472 -576 96) (1728 -576 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6347" + "plane" "(838 768 376) (838 768 412) (878 768 412)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 144.697] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6346" + "plane" "(836 770 376) (836 770 412) (838 768 412)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 0.707107 0 -17.6514] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6345" + "plane" "(878 768 376) (878 768 412) (880 770 412)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 184.882] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6344" + "plane" "(880 776 412) (880 770 412) (878 768 412)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 112" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "52244" + "id" "2256" side { - "id" "34407" - "plane" "(1792 -512 96) (1792 -256 96) (2240 -256 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6359" + "plane" "(1070 768 376) (1110 768 376) (1112 770 376)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34406" - "plane" "(1792 -256 0) (1792 -512 0) (2240 -512 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6358" + "plane" "(1112 770 376) (1112 770 412) (1112 776 412)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 448.663] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34405" - "plane" "(1792 -512 0) (1792 -256 0) (1792 -256 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6357" + "plane" "(1068 776 376) (1068 776 412) (1068 770 412)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -400.656] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34404" - "plane" "(2240 -256 0) (2240 -512 0) (2240 -512 96)" + "id" "6356" + "plane" "(1112 776 376) (1112 776 412) (1068 776 412)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34403" - "plane" "(1792 -256 0) (2240 -256 0) (2240 -256 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6355" + "plane" "(1070 768 376) (1070 768 412) (1110 768 412)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 48.6973] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34402" - "plane" "(2240 -512 0) (1792 -512 0) (1792 -512 96)" + "id" "6354" + "plane" "(1068 770 376) (1068 770 412) (1070 768 412)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 0.707107 0 -385.458] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6353" + "plane" "(1110 768 376) (1110 768 412) (1112 770 412)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 329.078] 0.25" + "vaxis" "[0 0 -1 421.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6352" + "plane" "(1112 776 412) (1112 770 412) (1110 768 412)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 112" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "52256" + "id" "2257" side { - "id" "34419" - "plane" "(1472 -576 96) (1472 -512 96) (1728 -512 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6365" + "plane" "(1336 776 244) (1160 776 244) (1160 768 244)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34418" - "plane" "(1472 -512 0) (1472 -576 0) (1728 -576 0)" + "id" "6364" + "plane" "(1336 768 288) (1160 768 288) (1160 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34417" - "plane" "(1472 -576 0) (1472 -512 0) (1472 -512 96)" + "id" "6363" + "plane" "(1336 768 288) (1336 776 288) (1336 776 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 2.69312] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34416" - "plane" "(1728 -512 0) (1728 -576 0) (1728 -576 96)" + "id" "6362" + "plane" "(1336 776 288) (1160 776 288) (1160 776 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 0 1 2.69312] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34415" - "plane" "(1472 -512 0) (1728 -512 0) (1728 -512 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6361" + "plane" "(1160 768 288) (1336 768 288) (1336 768 244)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 320.695] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34414" - "plane" "(1728 -576 0) (1472 -576 0) (1472 -576 96)" + "id" "6360" + "plane" "(1160 776 288) (1160 768 288) (1160 768 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 112" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "52259" + "id" "2258" side { - "id" "34431" - "plane" "(1920 -256 96) (1920 -192 96) (2240 -192 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6372" + "plane" "(1324 964 96) (1340 964 96) (1340 768 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[1 0 0 31.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34430" - "plane" "(1920 -192 0) (1920 -256 0) (2240 -256 0)" + "id" "6371" + "plane" "(1324 784 64) (1344 764 64) (1344 964 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[1 0 0 31.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34429" - "plane" "(1920 -256 0) (1920 -192 0) (1920 -192 96)" + "id" "6370" + "plane" "(1344 964 92) (1340 964 96) (1324 964 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34428" - "plane" "(2240 -192 0) (2240 -256 0) (2240 -256 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6369" + "plane" "(1324 784 96) (1340 768 96) (1344 764 92)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34427" - "plane" "(1920 -192 0) (2240 -192 0) (2240 -192 96)" + "id" "6368" + "plane" "(1324 964 96) (1324 784 96) (1324 784 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34426" - "plane" "(2240 -256 0) (1920 -256 0) (1920 -256 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6367" + "plane" "(1344 764 92) (1344 964 92) (1344 964 64)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 368.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6366" + "plane" "(1340 964 96) (1344 964 92) (1344 764 92)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -464.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 112" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "45455" + "id" "2259" side { - "id" "36230" - "plane" "(1024 -1312 -63) (1472 -1312 -63) (1472 -2752 -63)" - "material" "WATERSOURCE/RIVER/FOAM2" - "uaxis" "[0 1 0 388] 0.438" - "vaxis" "[1 0 0 -293] 0.438" - "rotation" "90" + "id" "6378" + "plane" "(1324 964 116) (1340 964 116) (1340 784 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[1 0 0 -0.697266] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "3" - "startposition" "[1024 -2752 -63]" - "flags" "14" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0" - "row1" "1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0" - "row2" "0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0" - "row3" "1 0 0 1 0 0 1 0 0 -0.999997 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0" - "row4" "1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - "row5" "-1 0 0 -1 0 0 -1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - "row6" "-0.564389 0.825509 0 -0.328692 0.944437 0 -0.394021 0.919101 0 0.901524 0.43273 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - "row7" "0.668344 0.743852 0 0.847656 0.530546 0 0.541921 0.840429 0 0.920982 0.389606 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - "row8" "-1 0 0 -0.999977 0.00680501 0 -0.999297 0.0375018 0 -0.999968 0.00796807 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - } - distances - { - "row0" "0 0 0 0 0 0 0 0 10" - "row1" "20.6031 13.6959 2.95801 21.7623 29.1858 26.5483 14.4177 7.66736 7.33105" - "row2" "0 2.1488 6.39441 6.01416 9.1875 14.8439 18.5538 17.1353 12.2306" - "row3" "9.29224 8.91968 3.79968 0.0395508 19.4307 50.2518 71.9346 72.166 3.4187" - "row4" "65.0813 62.5544 42.8752 13.3651 15.0847 43.8945 68.7433 78.6355 50.9379" - "row5" "29.5582 6.84692 0.884888 6.56335 17.8127 32.6293 57.0549 79.9454 53.7913" - "row6" "35.4365 27.8098 17.7928 5.42241 1.16467 16.2168 36.6536 63.1993 34.6776" - "row7" "47.0523 54.8289 28.7436 18.4547 2.01782 32.0026 64.3987 105.05 91.4807" - "row8" "111.752 93.3689 88.2152 65.2017 81.6702 109.392 119.978 118.461 106.558" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" - "row1" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" - "row2" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" - "row3" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" - "row4" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" - "row5" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" - "row6" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" - "row7" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" - "row8" "0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125 0 0 0.125" - } - alphas - { - "row0" "0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "36229" - "plane" "(1024 -2752 -64) (1472 -2752 -64) (1472 -1312 -64)" + "id" "6377" + "plane" "(1324 784 96) (1340 784 96) (1340 964 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[1 0 0 -0.697266] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "36228" - "plane" "(1024 -1312 -64) (1024 -1312 -63) (1024 -2752 -63)" + "id" "6376" + "plane" "(1340 964 116) (1324 964 116) (1324 964 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "36227" - "plane" "(1472 -2752 -64) (1472 -2752 -63) (1472 -1312 -63)" + "id" "6375" + "plane" "(1324 784 116) (1340 784 116) (1340 784 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "36226" - "plane" "(1472 -1312 -64) (1472 -1312 -63) (1024 -1312 -63)" + "id" "6374" + "plane" "(1324 964 116) (1324 784 116) (1324 784 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "36225" - "plane" "(1024 -2752 -64) (1024 -2752 -63) (1472 -2752 -63)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "6373" + "plane" "(1340 784 116) (1340 964 116) (1340 964 96)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 80.6582] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 234 195" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44279" + "id" "2260" side { - "id" "33553" - "plane" "(1856 -1504 256) (1792 -1504 256) (1792 -1312 256)" + "id" "6384" + "plane" "(1328 770 136) (1328 776 136) (1336 768 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33552" - "plane" "(1856 -1312 64) (1792 -1312 64) (1792 -1504 64)" + "id" "6383" + "plane" "(1330 768 128) (1336 768 128) (1328 776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33551" - "plane" "(1856 -1504 64) (1792 -1504 64) (1792 -1504 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6382" + "plane" "(1328 776 136) (1328 770 136) (1328 770 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33550" - "plane" "(1792 -1312 64) (1856 -1312 64) (1856 -1312 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6381" + "plane" "(1330 768 136) (1336 768 136) (1336 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -128.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33549" - "plane" "(1792 -1504 64) (1792 -1312 64) (1792 -1312 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6380" + "plane" "(1328 770 136) (1330 768 136) (1330 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33548" - "plane" "(1856 -1312 64) (1856 -1504 64) (1856 -1504 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6379" + "plane" "(1336 768 136) (1328 776 136) (1328 776 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44302" + "id" "2261" side { - "id" "33560" - "plane" "(1664 -2272 64) (1664 -1856 64) (2176 -1856 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6389" + "plane" "(1328 776 128) (1336 768 128) (1328 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -128.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33559" - "plane" "(1664 -1856 0) (1664 -2272 0) (1920 -2272 0)" + "id" "6388" + "plane" "(1336 768 124) (1328 776 124) (1328 768 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33558" - "plane" "(1664 -2272 0) (1664 -1856 0) (1664 -1856 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6387" + "plane" "(1328 776 128) (1328 768 128) (1328 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33557" - "plane" "(2176 -1856 0) (2176 -2016 0) (2176 -2016 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6386" + "plane" "(1328 768 128) (1336 768 128) (1336 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -128.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33556" - "plane" "(1920 -2272 0) (1664 -2272 0) (1664 -2272 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6385" + "plane" "(1336 768 128) (1328 776 128) (1328 776 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -480.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + editor + { + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2262" side { - "id" "33555" - "plane" "(2176 -2016 0) (1920 -2272 0) (1920 -2272 64)" + "id" "6396" + "plane" "(1338 768 136) (1336 768 136) (1336 772 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33554" - "plane" "(1664 -1856 0) (2176 -1856 0) (2176 -1856 64)" + "id" "6395" + "plane" "(1338 768 128) (1340 770 128) (1340 772 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "0 225 254" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "44307" side { - "id" "33571" - "plane" "(2176 -1664 464) (2176 -1856 464) (2271.99 -1952 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -0.0488281] 0.25" + "id" "6394" + "plane" "(1340 770 136) (1340 772 136) (1340 772 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33570" - "plane" "(2271.99 -1952 576) (2271.99 -1952 464) (2176 -1856 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.0488281] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6393" + "plane" "(1336 768 136) (1338 768 136) (1338 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 336.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33569" - "plane" "(2271.99 -1664 464) (2271.99 -1952 464) (2271.99 -1952 576)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6392" + "plane" "(1338 768 136) (1340 770 136) (1340 770 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33568" - "plane" "(2272 -1952 576) (2176 -1856 464) (2176 -1664 464)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6391" + "plane" "(1336 772 136) (1336 768 136) (1336 768 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33567" - "plane" "(2176 -1664 464) (2271.99 -1664 464) (2271.99 -1664 576)" + "id" "6390" + "plane" "(1340 772 136) (1336 772 136) (1336 772 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 251 148" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44332" + "id" "2263" side { - "id" "33601" - "plane" "(1856 -832 256) (1824 -800 256) (2208 -800 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6402" + "plane" "(1336 768 128) (1336 772 128) (1340 772 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 336.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33600" - "plane" "(2208 -800 64) (1824 -800 64) (1856 -832 64)" + "id" "6401" + "plane" "(1340 768 124) (1340 772 124) (1336 772 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33599" - "plane" "(1824 -800 64) (2208 -800 64) (2208 -800 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6400" + "plane" "(1340 768 128) (1340 772 128) (1340 772 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33598" - "plane" "(1856 -832 64) (1824 -800 64) (1824 -800 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6399" + "plane" "(1336 768 128) (1340 768 128) (1340 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 336.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33597" - "plane" "(2208 -800 64) (2176 -832 64) (2176 -832 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6398" + "plane" "(1336 772 128) (1336 768 128) (1336 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -480.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33596" - "plane" "(2176 -832 64) (1856 -832 64) (1856 -832 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6397" + "plane" "(1340 772 128) (1336 772 128) (1336 772 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -128.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44333" + "id" "2264" side { - "id" "33613" - "plane" "(1152 -1152 256) (1408 -1152 256) (1408 -1184 256)" + "id" "6410" + "plane" "(1328 770 176) (1328 780 176) (1340 780 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33612" - "plane" "(1152 -1184 128) (1408 -1184 128) (1408 -1152 128)" + "id" "6409" + "plane" "(1328 770 136) (1330 768 136) (1338 768 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33611" - "plane" "(1408 -1152 128) (1408 -1184 128) (1408 -1184 256)" + "id" "6408" + "plane" "(1328 780 176) (1328 770 176) (1328 770 136)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 480.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6407" + "plane" "(1340 780 176) (1328 780 176) (1328 780 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33610" - "plane" "(1152 -1152 128) (1408 -1152 128) (1408 -1152 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6406" + "plane" "(1330 768 176) (1338 768 176) (1338 768 136)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 320.695] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33609" - "plane" "(1408 -1184 128) (1152 -1184 128) (1152 -1184 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6405" + "plane" "(1328 770 176) (1330 768 176) (1330 768 136)" + "material" "BRICK/WALL20" + "uaxis" "[0.707107 -0.707107 0 242.06] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33608" - "plane" "(1152 -1184 128) (1152 -1152 128) (1152 -1152 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6404" + "plane" "(1340 770 176) (1340 780 176) (1340 780 136)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 320.662] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6403" + "plane" "(1338 768 176) (1340 770 176) (1340 770 136)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 333.958] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44407" + "id" "2265" side { - "id" "33793" - "plane" "(1184 -1216 128) (1152 -1216 128) (1152 -1152 128)" + "id" "6416" + "plane" "(1333 948 123) (1334 948 123) (1334 884 123)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33792" - "plane" "(1184 -1152 64) (1152 -1152 64) (1152 -1216 64)" + "id" "6415" + "plane" "(1333 884 122) (1334 884 122) (1334 948 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33791" - "plane" "(1152 -1216 64) (1152 -1152 64) (1152 -1152 128)" + "id" "6414" + "plane" "(1334 948 123) (1333 948 123) (1333 948 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33790" - "plane" "(1184 -1216 64) (1152 -1216 64) (1152 -1216 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6413" + "plane" "(1333 884 123) (1334 884 123) (1334 884 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33789" - "plane" "(1152 -1152 64) (1184 -1152 64) (1184 -1152 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6412" + "plane" "(1333 948 123) (1333 884 123) (1333 884 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33788" - "plane" "(1184 -1152 64) (1184 -1216 64) (1184 -1216 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6411" + "plane" "(1334 884 123) (1334 948 123) (1334 948 122)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 316.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44408" + "id" "2266" side { - "id" "33799" - "plane" "(1344 -1216 128) (1328 -1216 128) (1328 -1152 128)" + "id" "6422" + "plane" "(1332 780 244) (1340 780 244) (1340 952 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33798" - "plane" "(1344 -1152 64) (1328 -1152 96) (1328 -1216 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6421" + "plane" "(1340 952 440) (1340 780 440) (1332 780 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33797" - "plane" "(1344 -1152 128) (1328 -1152 128) (1328 -1152 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6420" + "plane" "(1340 952 440) (1332 952 440) (1332 952 244)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 2.69312] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33796" - "plane" "(1344 -1216 64) (1328 -1216 96) (1328 -1216 128)" + "id" "6419" + "plane" "(1332 952 440) (1332 780 440) (1332 780 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[0 0 1 2.69312] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33795" - "plane" "(1344 -1152 64) (1344 -1216 64) (1344 -1216 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6418" + "plane" "(1340 780 440) (1340 952 440) (1340 952 244)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 320.662] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33794" - "plane" "(1328 -1216 96) (1328 -1152 96) (1328 -1152 128)" + "id" "6417" + "plane" "(1332 780 440) (1340 780 440) (1340 780 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "169 190 0" - "groupid" "44471" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44409" + "id" "2267" side { - "id" "33805" - "plane" "(1328 -1216 128) (1304 -1216 128) (1304 -1152 128)" + "id" "6429" + "plane" "(1336 856 191) (1337 856 192) (1337 856 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33804" - "plane" "(1328 -1152 96) (1304 -1152 112) (1304 -1216 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6428" + "plane" "(1328 856 194) (1328 825 194) (1328 825 191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[0 -1 0 -23.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33803" - "plane" "(1328 -1152 128) (1304 -1152 128) (1304 -1152 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6427" + "plane" "(1328 825 191) (1336 825 191) (1336 856 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33802" - "plane" "(1328 -1216 96) (1304 -1216 112) (1304 -1216 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6426" + "plane" "(1336 825 191) (1337 825 192) (1337 856 192)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33801" - "plane" "(1328 -1152 96) (1328 -1216 96) (1328 -1216 128)" + "id" "6425" + "plane" "(1337 825 192) (1337 825 194) (1337 856 194)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 245.307] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6424" + "plane" "(1337 856 194) (1337 825 194) (1328 825 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[1 0 0 31.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33800" - "plane" "(1304 -1216 112) (1304 -1152 112) (1304 -1152 128)" + "id" "6423" + "plane" "(1336 825 191) (1328 825 191) (1328 825 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "169 190 0" - "groupid" "44471" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44410" + "id" "2268" side { - "id" "33811" - "plane" "(1304 -1216 128) (1280 -1216 128) (1280 -1152 128)" + "id" "6435" + "plane" "(1332 948 244) (1340 948 244) (1340 792 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33810" - "plane" "(1304 -1152 112) (1280 -1152 116) (1280 -1216 116)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6434" + "plane" "(1332 792 236) (1340 792 236) (1340 948 236)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 428.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33809" - "plane" "(1304 -1152 128) (1280 -1152 128) (1280 -1152 116)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6433" + "plane" "(1340 948 244) (1332 948 244) (1332 948 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33808" - "plane" "(1304 -1216 112) (1280 -1216 116) (1280 -1216 128)" + "id" "6432" + "plane" "(1332 792 244) (1340 792 244) (1340 792 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33807" - "plane" "(1304 -1152 112) (1304 -1216 112) (1304 -1216 128)" + "id" "6431" + "plane" "(1332 948 244) (1332 792 244) (1332 792 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33806" - "plane" "(1280 -1216 116) (1280 -1152 116) (1280 -1152 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6430" + "plane" "(1340 792 244) (1340 948 244) (1340 948 236)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 428.66] 0.25" + "vaxis" "[0 0 -1 429.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "169 190 0" - "groupid" "44471" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44411" + "id" "2269" side { - "id" "33817" - "plane" "(1256 -1152 128) (1280 -1152 128) (1280 -1216 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6441" + "plane" "(1333 948 122) (1335 948 122) (1335 884 122)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 316.66] 0.25" + "vaxis" "[1 0 0 -4.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33816" - "plane" "(1256 -1216 112) (1280 -1216 116) (1280 -1152 116)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6440" + "plane" "(1333 884 120) (1335 884 120) (1335 948 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33815" - "plane" "(1256 -1152 112) (1280 -1152 116) (1280 -1152 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6439" + "plane" "(1335 948 122) (1333 948 122) (1333 948 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33814" - "plane" "(1256 -1216 128) (1280 -1216 128) (1280 -1216 116)" + "id" "6438" + "plane" "(1333 884 122) (1335 884 122) (1335 884 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33813" - "plane" "(1280 -1152 116) (1280 -1216 116) (1280 -1216 128)" + "id" "6437" + "plane" "(1333 948 122) (1333 884 122) (1333 884 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33812" - "plane" "(1256 -1216 112) (1256 -1152 112) (1256 -1152 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6436" + "plane" "(1335 884 122) (1335 948 122) (1335 948 120)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 316.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "169 190 0" - "groupid" "44471" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44412" + "id" "2270" side { - "id" "33823" - "plane" "(1232 -1152 128) (1256 -1152 128) (1256 -1216 128)" + "id" "6449" + "plane" "(1338 918 126) (1338 914 126) (1328 914 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 252.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6448" + "plane" "(1328 913 120) (1338 913 120) (1338 919 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 -7.33984] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33822" - "plane" "(1232 -1216 96) (1256 -1216 112) (1256 -1152 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6447" + "plane" "(1338 919 125) (1328 919 125) (1328 919 120)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33821" - "plane" "(1232 -1152 96) (1256 -1152 112) (1256 -1152 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6446" + "plane" "(1328 913 125) (1338 913 125) (1338 913 120)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33820" - "plane" "(1232 -1216 128) (1256 -1216 128) (1256 -1216 112)" + "id" "6445" + "plane" "(1328 919 125) (1328 918 126) (1328 914 126)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -7.33984] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33819" - "plane" "(1256 -1152 112) (1256 -1216 112) (1256 -1216 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6444" + "plane" "(1338 913 125) (1338 914 126) (1338 918 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 252.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33818" - "plane" "(1232 -1216 96) (1232 -1152 96) (1232 -1152 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6443" + "plane" "(1328 914 126) (1338 914 126) (1338 913 125)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6442" + "plane" "(1338 918 126) (1328 918 126) (1328 919 125)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "169 190 0" - "groupid" "44471" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44413" + "id" "2271" side { - "id" "33829" - "plane" "(1408 -1216 128) (1376 -1216 128) (1376 -1152 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6456" + "plane" "(1333 948 125) (1334 948 125) (1334 884 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 316.66] 0.25" + "vaxis" "[1 0 0 -4.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33828" - "plane" "(1408 -1152 64) (1376 -1152 64) (1376 -1216 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6455" + "plane" "(1333 884 123) (1335 884 123) (1335 948 123)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 316.66] 0.25" + "vaxis" "[1 0 0 -4.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33827" - "plane" "(1408 -1216 64) (1376 -1216 64) (1376 -1216 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6454" + "plane" "(1335 948 124) (1334 948 125) (1333 948 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33826" - "plane" "(1376 -1152 64) (1408 -1152 64) (1408 -1152 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6453" + "plane" "(1333 884 125) (1334 884 125) (1335 884 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33825" - "plane" "(1408 -1152 64) (1408 -1216 64) (1408 -1216 128)" + "id" "6452" + "plane" "(1333 948 125) (1333 884 125) (1333 884 123)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33824" - "plane" "(1376 -1216 64) (1376 -1152 64) (1376 -1152 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6451" + "plane" "(1335 884 124) (1335 948 124) (1335 948 123)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 316.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6450" + "plane" "(1334 948 125) (1335 948 124) (1335 884 124)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 -348.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44414" + "id" "2272" side { - "id" "33835" - "plane" "(1216 -1152 128) (1232 -1152 128) (1232 -1216 128)" + "id" "6462" + "plane" "(1333 920 192) (1334 920 192) (1334 918 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 -11.3398] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33834" - "plane" "(1216 -1216 64) (1232 -1216 96) (1232 -1152 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6461" + "plane" "(1333 918 125) (1334 918 125) (1334 920 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -11.3398] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33833" - "plane" "(1216 -1152 64.0117) (1232 -1152 96.0117) (1232 -1152 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6460" + "plane" "(1334 920 192) (1333 920 192) (1333 920 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33832" - "plane" "(1216 -1216 128) (1232 -1216 128) (1232 -1216 96)" + "id" "6459" + "plane" "(1333 918 192) (1334 918 192) (1334 918 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33831" - "plane" "(1232 -1152 96) (1232 -1216 96) (1232 -1216 128)" + "id" "6458" + "plane" "(1333 920 192) (1333 918 192) (1333 918 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -11.3398] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33830" - "plane" "(1216 -1216 64) (1216 -1152 64) (1216 -1152 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6457" + "plane" "(1334 918 192) (1334 920 192) (1334 920 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 284.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "169 190 0" - "groupid" "44471" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44480" + "id" "2273" side { - "id" "33877" - "plane" "(1344 -1280 64) (1328 -1280 64) (1328 -1216 64)" + "id" "6470" + "plane" "(1328 918 228) (1336 918 228) (1337 917 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -7.33984] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33876" - "plane" "(1344 -1216 0) (1328 -1216 32) (1328 -1280 32)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6469" + "plane" "(1328 914 126) (1336 914 126) (1337 915 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -7.33984] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33875" - "plane" "(1344 -1280 0) (1328 -1280 32) (1328 -1280 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "6468" + "plane" "(1328 918 228) (1328 914 228) (1328 914 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -7.33984] 0.25" + "vaxis" "[0 0 -1 45.3069] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } side { - "id" "33874" - "plane" "(1344 -1216 64) (1328 -1216 64) (1328 -1216 32)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6467" + "plane" "(1328 914 228) (1336 914 228) (1336 914 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33873" - "plane" "(1328 -1280 32) (1328 -1216 32) (1328 -1216 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6466" + "plane" "(1336 918 228) (1328 918 228) (1328 918 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33872" - "plane" "(1344 -1216 0) (1344 -1280 0) (1344 -1280 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6465" + "plane" "(1337 917 228) (1336 918 228) (1336 918 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6464" + "plane" "(1336 914 228) (1337 915 228) (1337 915 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6463" + "plane" "(1337 915 228) (1337 917 228) (1337 917 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -348.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "169 190 0" - "groupid" "44479" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44481" + "id" "2274" side { - "id" "33883" - "plane" "(1328 -1280 64) (1304 -1280 64) (1304 -1216 64)" + "id" "6476" + "plane" "(1333 914 192) (1334 914 192) (1334 912 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 28.6602] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33882" - "plane" "(1328 -1216 32) (1304 -1216 48) (1304 -1280 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6475" + "plane" "(1333 912 125) (1334 912 125) (1334 914 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28.6602] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33881" - "plane" "(1328 -1280 32) (1304 -1280 48) (1304 -1280 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6474" + "plane" "(1334 914 192) (1333 914 192) (1333 914 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33880" - "plane" "(1328 -1216 64) (1304 -1216 64) (1304 -1216 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6473" + "plane" "(1333 912 192) (1334 912 192) (1334 912 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33879" - "plane" "(1304 -1280 48) (1304 -1216 48) (1304 -1216 64)" + "id" "6472" + "plane" "(1333 914 192) (1333 912 192) (1333 912 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 28.6602] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33878" - "plane" "(1328 -1216 32) (1328 -1280 32) (1328 -1280 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6471" + "plane" "(1334 912 192) (1334 914 192) (1334 914 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 284.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "169 190 0" - "groupid" "44479" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44482" + "id" "2275" side { - "id" "33889" - "plane" "(1256 -1216 64) (1280 -1216 64) (1280 -1280 64)" + "id" "6482" + "plane" "(1332 948 236) (1333 948 236) (1333 884 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[1 0 0 11.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33888" - "plane" "(1256 -1280 48) (1280 -1280 52) (1280 -1216 52)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6481" + "plane" "(1332 884 120) (1333 884 120) (1333 948 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[1 0 0 11.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33887" - "plane" "(1256 -1280 64) (1280 -1280 64) (1280 -1280 52)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6480" + "plane" "(1333 948 236) (1332 948 236) (1332 948 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -11.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33886" - "plane" "(1256 -1216 48) (1280 -1216 52) (1280 -1216 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6479" + "plane" "(1332 884 236) (1333 884 236) (1333 884 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -11.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33885" - "plane" "(1256 -1280 48) (1256 -1216 48) (1256 -1216 64)" + "id" "6478" + "plane" "(1332 948 236) (1332 884 236) (1332 884 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33884" - "plane" "(1280 -1216 52) (1280 -1280 52) (1280 -1280 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6477" + "plane" "(1333 884 236) (1333 948 236) (1333 948 120)" + "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" + "uaxis" "[0 -1 0 416] 0.125" + "vaxis" "[0 0 -1 17.6552] 0.226563" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "169 190 0" - "groupid" "44479" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44483" + "id" "2276" side { - "id" "33895" - "plane" "(1232 -1216 64) (1256 -1216 64) (1256 -1280 64)" + "id" "6488" + "plane" "(1333 948 231) (1334 948 231) (1334 946 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -27.3398] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33894" - "plane" "(1232 -1280 32) (1256 -1280 48) (1256 -1216 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6487" + "plane" "(1333 946 125) (1334 946 125) (1334 948 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -27.3398] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33893" - "plane" "(1232 -1280 64) (1256 -1280 64) (1256 -1280 48)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6486" + "plane" "(1334 948 231) (1333 948 231) (1333 948 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33892" - "plane" "(1232 -1216 32) (1256 -1216 48) (1256 -1216 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6485" + "plane" "(1333 946 231) (1334 946 231) (1334 946 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33891" - "plane" "(1232 -1280 32) (1232 -1216 32) (1232 -1216 64)" + "id" "6484" + "plane" "(1333 948 231) (1333 946 231) (1333 946 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -27.3398] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33890" - "plane" "(1256 -1216 48) (1256 -1280 48) (1256 -1280 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6483" + "plane" "(1334 946 231) (1334 948 231) (1334 948 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 252.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "169 190 0" - "groupid" "44479" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44484" + "id" "2277" side { - "id" "33901" - "plane" "(1216 -1216 64) (1232 -1216 64) (1232 -1280 64)" + "id" "6495" + "plane" "(1336 948 191) (1337 948 192) (1337 948 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33900" - "plane" "(1216 -1280 0) (1232 -1280 32) (1232 -1216 32)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6494" + "plane" "(1328 948 194) (1328 917 194) (1328 917 191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[0 -1 0 24.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33899" - "plane" "(1216 -1280 64) (1232 -1280 64) (1232 -1280 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6493" + "plane" "(1328 917 191) (1336 917 191) (1336 948 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 360.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33898" - "plane" "(1216 -1216 0) (1232 -1216 32) (1232 -1216 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6492" + "plane" "(1336 917 191) (1337 917 192) (1337 948 192)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 360.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33897" - "plane" "(1216 -1280 0) (1216 -1216 0) (1216 -1216 64)" + "id" "6491" + "plane" "(1337 917 192) (1337 917 194) (1337 948 194)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 245.307] 0.25" + "vaxis" "[0 -1 0 360.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6490" + "plane" "(1337 948 194) (1337 917 194) (1328 917 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -28.6602] 0.25" + "vaxis" "[1 0 0 31.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33896" - "plane" "(1232 -1216 32) (1232 -1280 32) (1232 -1280 64)" + "id" "6489" + "plane" "(1336 917 191) (1328 917 191) (1328 917 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "169 190 0" - "groupid" "44479" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44485" + "id" "2278" side { - "id" "33907" - "plane" "(1304 -1280 64) (1280 -1280 64) (1280 -1216 64)" + "id" "6501" + "plane" "(1333 948 191) (1335 948 191) (1335 884 191)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33906" - "plane" "(1304 -1216 48) (1280 -1216 52) (1280 -1280 52)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6500" + "plane" "(1333 884 189) (1335 884 189) (1335 948 189)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 316.66] 0.25" + "vaxis" "[1 0 0 -4.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33905" - "plane" "(1304 -1280 48) (1280 -1280 52) (1280 -1280 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6499" + "plane" "(1335 948 191) (1333 948 191) (1333 948 189)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33904" - "plane" "(1304 -1216 64) (1280 -1216 64) (1280 -1216 52)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6498" + "plane" "(1333 884 191) (1335 884 191) (1335 884 189)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33903" - "plane" "(1280 -1280 52) (1280 -1216 52) (1280 -1216 64)" + "id" "6497" + "plane" "(1333 948 191) (1333 884 191) (1333 884 189)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33902" - "plane" "(1304 -1216 48) (1304 -1280 48) (1304 -1280 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6496" + "plane" "(1335 884 191) (1335 948 191) (1335 948 189)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 316.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "169 190 0" - "groupid" "44479" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44536" + "id" "2279" side { - "id" "33961" - "plane" "(1344 -1312 -16) (1216 -1312 -16) (1216 -1184 -16)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6508" + "plane" "(1336 884 191) (1328 884 191) (1328 884 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33960" - "plane" "(1344 -1184 -128) (1216 -1184 -128) (1216 -1312 -128)" + "id" "6507" + "plane" "(1328 915 191) (1328 915 194) (1328 884 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[0 -1 0 24.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33959" - "plane" "(1344 -1312 -128) (1216 -1312 -128) (1216 -1312 -16)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6506" + "plane" "(1336 884 191) (1336 915 191) (1328 915 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 360.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33958" - "plane" "(1216 -1184 -128) (1344 -1184 -128) (1344 -1184 -16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6505" + "plane" "(1337 884 192) (1337 915 192) (1336 915 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 360.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33957" - "plane" "(1216 -1312 -128) (1216 -1184 -128) (1216 -1184 -16)" + "id" "6504" + "plane" "(1337 884 194) (1337 915 194) (1337 915 192)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 245.307] 0.25" + "vaxis" "[0 -1 0 360.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6503" + "plane" "(1328 915 194) (1337 915 194) (1337 884 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -28.6602] 0.25" + "vaxis" "[1 0 0 31.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33956" - "plane" "(1344 -1184 -128) (1344 -1312 -128) (1344 -1312 -16)" + "id" "6502" + "plane" "(1336 915 191) (1337 915 192) (1337 915 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44541" + "id" "2280" side { - "id" "33973" - "plane" "(1152 -1280 256) (1152 -1216 256) (1408 -1216 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6516" + "plane" "(1338 914 228) (1338 918 228) (1328 918 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 252.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33972" - "plane" "(1152 -1216 64) (1152 -1280 64) (1408 -1280 64)" + "id" "6515" + "plane" "(1328 919 234) (1338 919 234) (1338 913 234)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -7.33984] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33971" - "plane" "(1152 -1216 64) (1152 -1216 256) (1152 -1280 256)" + "id" "6514" + "plane" "(1328 919 234) (1328 919 229) (1338 919 229)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6513" + "plane" "(1338 913 234) (1338 913 229) (1328 913 229)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6512" + "plane" "(1328 919 229) (1328 919 234) (1328 913 234)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -7.33984] 0.25" + "vaxis" "[0 0 1 2.69312] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33970" - "plane" "(1152 -1280 64) (1152 -1280 256) (1408 -1280 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6511" + "plane" "(1338 913 229) (1338 913 234) (1338 919 234)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 252.66] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33969" - "plane" "(1408 -1216 64) (1408 -1216 256) (1152 -1216 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6510" + "plane" "(1328 913 229) (1338 913 229) (1338 914 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33968" - "plane" "(1408 -1280 64) (1408 -1280 256) (1408 -1216 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6509" + "plane" "(1338 919 229) (1328 919 229) (1328 918 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44545" + "id" "2281" side { - "id" "33985" - "plane" "(1216 -1280 64) (1152 -1280 64) (1152 -1248 64)" + "id" "6522" + "plane" "(1333 948 233) (1335 948 233) (1335 884 233)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33984" - "plane" "(1216 -1248 0) (1152 -1248 0) (1152 -1280 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6521" + "plane" "(1333 884 231) (1335 884 231) (1335 948 231)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 316.66] 0.25" + "vaxis" "[1 0 0 -4.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33983" - "plane" "(1152 -1280 0) (1152 -1248 0) (1152 -1248 64)" + "id" "6520" + "plane" "(1335 948 233) (1333 948 233) (1333 948 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33982" - "plane" "(1216 -1280 0) (1152 -1280 0) (1152 -1280 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6519" + "plane" "(1333 884 233) (1335 884 233) (1335 884 231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33981" - "plane" "(1152 -1248 0) (1216 -1248 0) (1216 -1248 64)" + "id" "6518" + "plane" "(1333 948 233) (1333 884 233) (1333 884 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33980" - "plane" "(1216 -1248 0) (1216 -1280 0) (1216 -1280 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6517" + "plane" "(1335 884 233) (1335 948 233) (1335 948 231)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 316.66] 0.25" + "vaxis" "[0 0 -1 457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44548" + "id" "2282" side { - "id" "33997" - "plane" "(1408 -1280 64) (1344 -1280 64) (1344 -1248 64)" + "id" "6529" + "plane" "(1336 948 233) (1337 948 234) (1337 948 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33996" - "plane" "(1408 -1248 0) (1344 -1248 0) (1344 -1280 0)" + "id" "6528" + "plane" "(1336 884 233) (1328 884 233) (1328 884 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33995" - "plane" "(1344 -1280 0) (1344 -1248 0) (1344 -1248 64)" + "id" "6527" + "plane" "(1328 948 233) (1328 948 236) (1328 884 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[0 -1 0 24.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33994" - "plane" "(1408 -1280 0) (1344 -1280 0) (1344 -1280 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6526" + "plane" "(1328 884 233) (1336 884 233) (1336 948 233)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 360.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33993" - "plane" "(1344 -1248 0) (1408 -1248 0) (1408 -1248 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6525" + "plane" "(1336 884 233) (1337 884 234) (1337 948 234)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 360.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33992" - "plane" "(1408 -1248 0) (1408 -1280 0) (1408 -1280 64)" + "id" "6524" + "plane" "(1337 884 234) (1337 884 236) (1337 948 236)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 413.307] 0.25" + "vaxis" "[0 -1 0 360.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6523" + "plane" "(1328 948 236) (1337 948 236) (1337 884 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -28.6602] 0.25" + "vaxis" "[1 0 0 31.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44552" + "id" "2283" side { - "id" "34021" - "plane" "(1152 -1248 256) (1152 -1280 256) (1120 -1280 256)" + "id" "6537" + "plane" "(1332 884 174) (1338 884 174) (1340 882 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -19.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34020" - "plane" "(1152 -1280 0) (1152 -1248 0) (1136 -1248 0)" + "id" "6536" + "plane" "(1332 856 136) (1338 856 136) (1340 858 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -19.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34019" - "plane" "(1120 -1280 256) (1120 -1280 0) (1136 -1248 0)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6535" + "plane" "(1338 884 174) (1332 884 174) (1332 884 136)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -0.693359] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34018" - "plane" "(1152 -1280 256) (1152 -1280 0) (1120 -1280 0)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6534" + "plane" "(1332 856 174) (1338 856 174) (1338 856 136)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 112.701] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34017" - "plane" "(1136 -1248 256) (1136 -1248 0) (1152 -1248 0)" + "id" "6533" + "plane" "(1332 884 174) (1332 856 174) (1332 856 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -19.3398] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34016" - "plane" "(1152 -1248 256) (1152 -1248 0) (1152 -1280 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6532" + "plane" "(1340 858 174) (1340 882 174) (1340 882 136)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 460.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6531" + "plane" "(1338 856 174) (1340 858 174) (1340 858 136)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 367.346] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6530" + "plane" "(1340 882 174) (1338 884 174) (1338 884 136)" + "material" "BRICK/WALL20" + "uaxis" "[0.707107 -0.707107 0 53.3897] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44630" + "id" "2284" side { - "id" "34046" - "plane" "(1152 -896 56) (1216 -896 56) (1216 -1152 56)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6543" + "plane" "(1332 864 174) (1340 864 174) (1340 876 174)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34045" - "plane" "(1152 -1152 32) (1216 -1152 32) (1216 -896 32)" + "id" "6542" + "plane" "(1332 876 186) (1340 876 186) (1340 864 186)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34044" - "plane" "(1216 -896 32) (1216 -1152 32) (1216 -1152 56)" + "id" "6541" + "plane" "(1340 876 186) (1332 876 186) (1332 876 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34043" - "plane" "(1216 -1152 32) (1152 -1152 32) (1152 -1152 56)" + "id" "6540" + "plane" "(1332 864 186) (1340 864 186) (1340 864 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34042" - "plane" "(1152 -896 32) (1216 -896 32) (1216 -896 56)" + "id" "6539" + "plane" "(1332 876 186) (1332 864 186) (1332 864 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34041" - "plane" "(1152 -1152 32) (1152 -896 32) (1152 -896 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "6538" + "plane" "(1340 864 186) (1340 876 186) (1340 876 174)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 460.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 221 166" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44648" + "id" "2285" side { - "id" "34082" - "plane" "(1216 -1216 128) (1184 -1216 128) (1184 -1152 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6549" + "plane" "(1332 856 182) (1340 856 182) (1340 864 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 364.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34081" - "plane" "(1216 -1152 0) (1184 -1152 0) (1184 -1216 0)" + "id" "6548" + "plane" "(1332 864 186) (1340 864 186) (1340 856 186)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -19.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34080" - "plane" "(1184 -1216 0) (1184 -1152 0) (1184 -1152 128)" + "id" "6547" + "plane" "(1340 864 186) (1332 864 186) (1332 864 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34079" - "plane" "(1216 -1216 0) (1184 -1216 0) (1184 -1216 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6546" + "plane" "(1332 856 186) (1340 856 186) (1340 856 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34078" - "plane" "(1184 -1152 0) (1216 -1152 0) (1216 -1152 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6545" + "plane" "(1332 864 186) (1332 856 186) (1332 856 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -19.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34077" - "plane" "(1216 -1152 0) (1216 -1216 0) (1216 -1216 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6544" + "plane" "(1340 856 186) (1340 864 186) (1340 864 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 364.66] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44651" + "id" "2286" side { - "id" "34094" - "plane" "(1376 -1216 128) (1344 -1216 128) (1344 -1152 128)" + "id" "6555" + "plane" "(1332 856 186) (1340 856 186) (1340 884 186)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34093" - "plane" "(1376 -1152 0) (1344 -1152 0) (1344 -1216 0)" + "id" "6554" + "plane" "(1332 884 194) (1340 884 194) (1340 856 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34092" - "plane" "(1344 -1216 0) (1344 -1152 0) (1344 -1152 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6553" + "plane" "(1340 884 194) (1332 884 194) (1332 884 186)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34091" - "plane" "(1376 -1216 0) (1344 -1216 0) (1344 -1216 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6552" + "plane" "(1332 856 194) (1340 856 194) (1340 856 186)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34090" - "plane" "(1344 -1152 0) (1376 -1152 0) (1376 -1152 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6551" + "plane" "(1332 884 194) (1332 856 194) (1332 856 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 1 -13.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34089" - "plane" "(1376 -1152 0) (1376 -1216 0) (1376 -1216 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6550" + "plane" "(1340 856 194) (1340 884 194) (1340 884 186)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 364.66] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44675" + "id" "2287" side { - "id" "34178" - "plane" "(1344 -896 256) (1344 -832 256) (1440 -832 256)" + "id" "6562" + "plane" "(1332 856 174) (1338 856 174) (1340 858 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 -19.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34177" - "plane" "(1344 -832 64) (1344 -896 64) (1440 -896 64)" + "id" "6561" + "plane" "(1332 864 182) (1340 864 182) (1340 858 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 -19.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34176" - "plane" "(1344 -896 64) (1344 -832 64) (1344 -832 256)" + "id" "6560" + "plane" "(1340 864 182) (1332 864 182) (1332 864 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34175" - "plane" "(1440 -832 64) (1440 -896 64) (1440 -896 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6559" + "plane" "(1332 856 182) (1338 856 182) (1338 856 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34174" - "plane" "(1344 -832 64) (1440 -832 64) (1440 -832 256)" + "id" "6558" + "plane" "(1332 864 182) (1332 856 182) (1332 856 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -19.3398] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34173" - "plane" "(1440 -896 64) (1344 -896 64) (1344 -896 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6557" + "plane" "(1340 858 182) (1340 864 182) (1340 864 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 364.66] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6556" + "plane" "(1338 856 182) (1340 858 182) (1340 858 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44679" + "id" "2288" side { - "id" "34190" - "plane" "(1216 -896 256) (1216 -832 256) (1344 -832 256)" + "id" "6569" + "plane" "(1332 876 174) (1340 876 174) (1340 882 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34189" - "plane" "(1216 -832 128) (1216 -896 128) (1344 -896 128)" + "id" "6568" + "plane" "(1332 884 182) (1338 884 182) (1340 882 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34188" - "plane" "(1216 -896 128) (1216 -832 128) (1216 -832 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6567" + "plane" "(1338 884 182) (1332 884 182) (1332 884 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34187" - "plane" "(1344 -832 128) (1344 -896 128) (1344 -896 256)" + "id" "6566" + "plane" "(1332 876 182) (1340 876 182) (1340 876 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34186" - "plane" "(1216 -832 128) (1344 -832 128) (1344 -832 256)" + "id" "6565" + "plane" "(1332 884 182) (1332 876 182) (1332 876 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34185" - "plane" "(1344 -896 128) (1216 -896 128) (1216 -896 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6564" + "plane" "(1340 876 182) (1340 882 182) (1340 882 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 364.66] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6563" + "plane" "(1340 882 182) (1338 884 182) (1338 884 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44749" - side - { - "id" "34197" - "plane" "(1216 -896 48) (1344 -896 48) (1344 -1171.29 48)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "2289" side { - "id" "34196" - "plane" "(1216 -1184 -16) (1344 -1184 -16) (1344 -896 -16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6575" + "plane" "(1332 876 182) (1340 876 182) (1340 884 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 364.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34195" - "plane" "(1344 -896 -16) (1344 -1184 -16) (1344 -1184 24)" + "id" "6574" + "plane" "(1332 884 186) (1340 884 186) (1340 876 186)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34194" - "plane" "(1344 -1184 -16) (1216 -1184 -16) (1216 -1184 24)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6573" + "plane" "(1340 884 186) (1332 884 186) (1332 884 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34193" - "plane" "(1216 -896 -16) (1344 -896 -16) (1344 -896 48)" + "id" "6572" + "plane" "(1332 876 186) (1340 876 186) (1340 876 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34192" - "plane" "(1216 -1184 -16) (1216 -896 -16) (1216 -896 48)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6571" + "plane" "(1332 884 186) (1332 876 186) (1332 876 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34191" - "plane" "(1216 -1171.29 48) (1344 -1171.29 48) (1344 -1184 24)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6570" + "plane" "(1340 876 186) (1340 884 186) (1340 884 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 364.66] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 221 166" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44798" + "id" "2290" side { - "id" "34223" - "plane" "(1216 -1192 -8) (1344 -1192 -8) (1344 -1320 -8)" - "material" "WATERSOURCE/WATERFALL/WATERFALLSOFT_1024_CLEAR_SLOW" - "uaxis" "[1 0 0 -760] 0.135" - "vaxis" "[0 1 0 270.997] 0.135" + "id" "6581" + "plane" "(1332 856 197) (1340 856 197) (1340 884 197)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "2" - "startposition" "[1216 -1320 -8]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0.327101 0.633918 -0.422612 -0.390648 0.765936 -0.510623 0.140674 0.823776 -0.549184 -0.0712148 0.829937 -0.553292 0.0401754 0.710938 -0.315972" - "row1" "0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0" - "row2" "-1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0" - "row3" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0" - "row4" "-0.737386 -0.337736 0 -0.776109 -0.3153 0 -0.705472 -0.354369 0 0.439837 -0.449039 0 0.65664 -0.377102 0" - } - distances - { - "row0" "11.8312 9.79194 9.10445 9.03679 15.8242" - "row1" "0 5 0 0 0" - "row2" "4.67639 11.3447 9.0238 19.1284 3.96301" - "row3" "14.3677 22 6.10889 1.02039 4.52454" - "row4" "11.8436 15.8579 16.9315 17.8158 18.5626" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 -0.5 0.5 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.5 0.5" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "0 0 0 0 0" - "row1" "0 0 0 0 0" - "row2" "0 0 0 0 0" - "row3" "0 0 0 0 0" - "row4" "0 0 0 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "34222" - "plane" "(1216 -1320 -16) (1344 -1320 -16) (1344 -1192 -16)" + "id" "6580" + "plane" "(1332 884 199) (1340 884 199) (1340 856 199)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34221" - "plane" "(1216 -1320 -8) (1344 -1320 -8) (1344 -1320 -16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6579" + "plane" "(1340 884 199) (1332 884 199) (1332 884 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -281.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34220" - "plane" "(1344 -1192 -8) (1216 -1192 -8) (1216 -1192 -16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6578" + "plane" "(1332 856 199) (1340 856 199) (1340 856 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -281.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34219" - "plane" "(1216 -1192 -8) (1216 -1320 -8) (1216 -1320 -16)" + "id" "6577" + "plane" "(1332 884 199) (1332 856 199) (1332 856 197)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 1 -33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34218" - "plane" "(1344 -1320 -8) (1344 -1192 -8) (1344 -1192 -16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6576" + "plane" "(1340 856 199) (1340 884 199) (1340 884 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 364.66] 0.25" + "vaxis" "[0 0 1 -281.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "45083" + "id" "2291" side { - "id" "34235" - "plane" "(1344 -1192 -8) (1216 -1192 -8) (1216 -1192 32)" - "material" "WATERSOURCE/WATERFALL/WATERFALLSOFT_1024_CLEAR_SLOW" - "uaxis" "[1 0 0 -760] 0.135" - "vaxis" "[0 0 1 -307.372] 0.135" + "id" "6589" + "plane" "(1332 884 236) (1338 884 236) (1340 882 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -19.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "2" - "startposition" "[1216 -1192 -8]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "-0.737386 -0.675472 0 -0.776109 -0.630599 0 -0.705472 -0.708738 0 0.439837 -0.898078 0 0.65664 -0.754204 0" - "row1" "-1 0 0 -1 0 0 -0.910894 -0.41264 0 0.708312 -0.705899 0 0.857537 -0.514422 0" - "row2" "-1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0" - "row3" "-1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0" - "row4" "-0.752878 0.46539 -0.46539 -0.887012 0.206499 -0.412999 -0.956841 0.205493 -0.205493 0.789386 0.434091 -0.434091 0.891028 0.203012 -0.406024" - } - distances - { - "row0" "11.8436 15.8579 16.9315 17.8158 18.5626" - "row1" "8.76196 13.6442 14.5405 11.3331 15.5514" - "row2" "7.86255 13.349 13.2036 7.14282 13.161" - "row3" "6.026 11.3885 11.8635 5.34717 11.6538" - "row4" "4.29747 9.68526 9.73267 4.60733 9.85163" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" - "row1" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" - "row2" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" - "row3" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" - "row4" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" - } - alphas - { - "row0" "0 0 0 0 0" - "row1" "0 0 0 0 0" - "row2" "0 0 0 0 0" - "row3" "0 0 0 0 0" - "row4" "0 0 0 0 0" - } - triangle_tags - { - "row0" "0 1 1 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "34234" - "plane" "(1216 -1184 -8) (1344 -1184 -8) (1344 -1184 32)" + "id" "6588" + "plane" "(1332 856 199) (1338 856 199) (1340 858 199)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -19.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34233" - "plane" "(1344 -1184 -8) (1216 -1184 -8) (1216 -1192 -8)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6587" + "plane" "(1338 884 236) (1332 884 236) (1332 884 199)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -0.693359] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34232" - "plane" "(1344 -1192 32) (1216 -1192 32) (1216 -1184 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6586" + "plane" "(1332 856 236) (1338 856 236) (1338 856 199)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 112.701] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34231" - "plane" "(1216 -1192 32) (1216 -1192 -8) (1216 -1184 -8)" + "id" "6585" + "plane" "(1332 884 236) (1332 856 236) (1332 856 199)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -32] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 -19.3398] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34230" - "plane" "(1344 -1184 32) (1344 -1184 -8) (1344 -1192 -8)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -32] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6584" + "plane" "(1340 858 236) (1340 882 236) (1340 882 199)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 460.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6583" + "plane" "(1338 856 236) (1340 858 236) (1340 858 199)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 367.346] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6582" + "plane" "(1340 882 236) (1338 884 236) (1338 884 199)" + "material" "BRICK/WALL20" + "uaxis" "[0.707107 -0.707107 0 53.3897] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "45088" + "id" "2292" side { - "id" "34247" - "plane" "(1216 -1192 32) (1216 -1160 52) (1344 -1160 52)" - "material" "WATERSOURCE/WATERFALL/WATERFALLSOFT_1024_CLEAR_SLOW" - "uaxis" "[1 0 0 -760] 0.135" - "vaxis" "[0 0.752576 0.658505 274.544] 0.135" + "id" "6595" + "plane" "(1333 856 231) (1334 856 231) (1334 854 231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -11.3398] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "2" - "startposition" "[1216 -1192 32]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "-0.752878 0.46539 -0.46539 -0.887012 0.206499 -0.412999 -0.956841 0.205493 -0.205493 0.789386 0.434091 -0.434091 0.891028 0.203012 -0.406024" - "row1" "-0.194861 0 0.980831 -1 0 0 -1 0 0 1 0 0 1 0 0" - "row2" "0 0 1 -0.569692 0 0.821858 -0.914077 0 0.405541 0.755181 0 0.655517 0.277856 0 0.960623" - "row3" "0 0 0 0 0 0 -0.999998 0 0 0.999999 0 0 0 0 0" - "row4" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - } - distances - { - "row0" "4.29747 9.68526 9.73267 4.60733 9.85163" - "row1" "2.03909 5.76379 7.68823 3.38159 5.47534" - "row2" "2 2.43351 4.93168 3.05103 2.08198" - "row3" "0 0 0.0671387 0.088501 0" - "row4" "4 4 4 4 4" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577" - "row1" "0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577" - "row2" "0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577" - "row3" "0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577" - "row4" "0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577 0 -0.658505 0.752577" - } - alphas - { - "row0" "0 0 0 0 0" - "row1" "0 0 0 0 0" - "row2" "0 0 0 0 0" - "row3" "0 0 0 0 0" - "row4" "0 0 0 0 0" - } - triangle_tags - { - "row0" "0 0 0 0 0 0 0 0" - "row1" "9 1 1 1 1 1 1 1" - "row2" "9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "34246" - "plane" "(1344 -1184 32) (1344 -1160 48) (1216 -1160 48)" + "id" "6594" + "plane" "(1333 854 125) (1334 854 125) (1334 856 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -11.3398] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34245" - "plane" "(1216 -1184 32) (1216 -1192 32) (1344 -1192 32)" + "id" "6593" + "plane" "(1334 856 231) (1333 856 231) (1333 856 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34244" - "plane" "(1344 -1160 48) (1344 -1160 52) (1216 -1160 52)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6592" + "plane" "(1333 854 231) (1334 854 231) (1334 854 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34243" - "plane" "(1216 -1160 48) (1216 -1160 52) (1216 -1192 32)" + "id" "6591" + "plane" "(1333 856 231) (1333 854 231) (1333 854 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 -11.3398] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34242" - "plane" "(1344 -1160 52) (1344 -1160 48) (1344 -1184 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6590" + "plane" "(1334 854 231) (1334 856 231) (1334 856 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 396.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "45090" + "id" "2293" side { - "id" "34259" - "plane" "(1344 -1160 52) (1216 -1160 52) (1216 -896 52)" - "material" "WATERSOURCE/WATERFALL/WATERFALLSOFT_1024_CLEAR_SLOW" - "uaxis" "[1 0 0 -760] 0.135" - "vaxis" "[0 1 0 645.222] 0.135" - "rotation" "90" + "id" "6601" + "plane" "(1332 856 236) (1333 856 236) (1333 792 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 11.3027] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "2" - "startposition" "[1216 -1160 52]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - "row1" "-1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0" - "row2" "-1 0 0 1 0 0 1 0 0 1 0 0 1 0 0" - "row3" "-1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - distances - { - "row0" "4 4 4 4 4" - "row1" "7.96423 8.87817 0.55896 16.0397 10.5742" - "row2" "6.99072 6.24072 12.4965 26 17.3584" - "row3" "0.355591 7.82288 10.4374 3.08801 4.72131" - "row4" "0 0 0 0 0" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "0 0 0 0 0" - "row1" "0 0 0 0 0" - "row2" "0 0 0 0 0" - "row3" "0 0 0 0 0" - "row4" "0 0 0 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "34258" - "plane" "(1344 -896 48) (1216 -896 48) (1216 -1160 48)" + "id" "6600" + "plane" "(1332 792 120) (1333 792 120) (1333 856 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 11.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34257" - "plane" "(1344 -1160 48) (1216 -1160 48) (1216 -1160 52)" + "id" "6599" + "plane" "(1333 856 236) (1332 856 236) (1332 856 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -11.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34256" - "plane" "(1216 -896 48) (1344 -896 48) (1344 -896 52)" + "id" "6598" + "plane" "(1332 792 236) (1333 792 236) (1333 792 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -11.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34255" - "plane" "(1216 -1160 48) (1216 -896 48) (1216 -896 52)" + "id" "6597" + "plane" "(1332 856 236) (1332 792 236) (1332 792 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34254" - "plane" "(1344 -896 48) (1344 -1160 48) (1344 -1160 52)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6596" + "plane" "(1333 792 236) (1333 856 236) (1333 856 120)" + "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" + "uaxis" "[0 -1 0 192] 0.125" + "vaxis" "[0 0 -1 17.6552] 0.226563" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "45108" + "id" "2294" side { - "id" "34277" - "plane" "(1216 -1320 -64) (1216 -1320 -8) (1344 -1320 -8)" - "material" "WATERSOURCE/WATERFALL/WATERFALLSOFT_1024_CLEAR_SLOW" - "uaxis" "[1 0 0 -760] 0.135" - "vaxis" "[0 0 1 -155.668] 0.135" + "id" "6609" + "plane" "(1328 826 228) (1336 826 228) (1337 825 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 8.66016] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "2" - "startposition" "[1216 -1320 -64]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "1 0 0 -1 0 0 1 0 0 -1 0 0 1 0 0" - "row1" "1 0 0 -1 0 0 1 0 0 -1 0 0 1 0 0" - "row2" "-1 0 0 -1 0 0 1 0 0 -1 0 0 1 0 0" - "row3" "0.690412 0.290963 0.662323 -0.988346 0.00962422 0.151919 0.920526 0.191683 0.340427 -0.932034 0.362369 0 0.982522 0.186147 0" - "row4" "0.327101 0.633918 -0.422612 -0.390648 0.765936 -0.510623 0.140674 0.823776 -0.549184 -0.0712148 0.829937 -0.553292 0.0401754 0.710938 -0.315972" - } - distances - { - "row0" "0.802368 1.85437 4.46313 1.27441 8.27917" - "row1" "1.30945 1.93396 7.73828 4 5.61987" - "row2" "2.6593 4.97009 1.47485 1.90674 4.89502" - "row3" "1.85772 8.94198 3.53444 2.14584 3.11623" - "row4" "11.8312 9.79194 9.10445 9.03679 15.8242" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" - "row1" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" - "row2" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" - "row3" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0" - "row4" "0 -0.5 0.5 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.5 0.5" - } - alphas - { - "row0" "0 0 0 0 0" - "row1" "0 0 0 0 0" - "row2" "0 0 0 0 0" - "row3" "0 0 0 0 0" - "row4" "0 0 0 0 0" - } - triangle_tags - { - "row0" "0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 1" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "34276" - "plane" "(1344 -1312 -64) (1344 -1312 -16) (1216 -1312 -16)" + "id" "6608" + "plane" "(1328 822 126) (1336 822 126) (1337 823 126)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 8.66016] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34275" - "plane" "(1216 -1312 -16) (1344 -1312 -16) (1344 -1320 -8)" + "id" "6607" + "plane" "(1328 826 228) (1328 822 228) (1328 822 126)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 8.66016] 0.25" + "vaxis" "[0 0 -1 45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34274" - "plane" "(1216 -1320 -8) (1216 -1320 -64) (1216 -1312 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6606" + "plane" "(1328 822 228) (1336 822 228) (1336 822 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34273" - "plane" "(1344 -1312 -16) (1344 -1312 -64) (1344 -1320 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6605" + "plane" "(1336 826 228) (1328 826 228) (1328 826 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "34272" - "plane" "(1344 -1312 -64) (1216 -1312 -64) (1216 -1320 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6604" + "plane" "(1337 825 228) (1336 826 228) (1336 826 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6603" + "plane" "(1336 822 228) (1337 823 228) (1337 823 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6602" + "plane" "(1337 823 228) (1337 825 228) (1337 825 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "43407" + "id" "2295" side { - "id" "33064" - "plane" "(1408 -1152 256) (1472 -1152 256) (1472 -1280 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6617" + "plane" "(1338 822 228) (1338 826 228) (1328 826 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 396.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33063" - "plane" "(1408 -1280 -7.62939e-06) (1472 -1280 -7.62939e-06) (1472 -1152 -7.62939e-06)" + "id" "6616" + "plane" "(1328 827 234) (1338 827 234) (1338 821 234)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 8.66016] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33062" - "plane" "(1472 -1152 -7.62939e-06) (1472 -1280 -7.62939e-06) (1472 -1280 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6615" + "plane" "(1328 827 234) (1328 827 229) (1338 827 229)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33061" - "plane" "(1408 -1152 -7.62939e-06) (1472 -1152 -7.62939e-06) (1472 -1152 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6614" + "plane" "(1338 821 234) (1338 821 229) (1328 821 229)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33060" - "plane" "(1472 -1280 -7.62939e-06) (1408 -1280 -7.62939e-06) (1408 -1280 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6613" + "plane" "(1328 827 229) (1328 827 234) (1328 821 234)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 8.66016] 0.25" + "vaxis" "[0 0 1 2.69312] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33059" - "plane" "(1408 -1280 -7.62939e-06) (1408 -1152 -7.62939e-06) (1408 -1152 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6612" + "plane" "(1338 821 229) (1338 821 234) (1338 827 234)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 396.66] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6611" + "plane" "(1328 821 229) (1338 821 229) (1338 822 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6610" + "plane" "(1338 827 229) (1328 827 229) (1328 826 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "43973" + "id" "2296" side { - "id" "33541" - "plane" "(1536 -1472 256) (1472 -1472 256) (1472 -1280 256)" + "id" "6623" + "plane" "(1333 856 233) (1335 856 233) (1335 792 233)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33540" - "plane" "(1472 -1280 64) (1472 -1472 64) (1536 -1472 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6622" + "plane" "(1333 792 231) (1335 792 231) (1335 856 231)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 460.66] 0.25" + "vaxis" "[1 0 0 -4.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33539" - "plane" "(1472 -1472 64) (1472 -1280 64) (1472 -1280 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6621" + "plane" "(1335 856 233) (1333 856 233) (1333 856 231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33538" - "plane" "(1536 -1472 64) (1472 -1472 64) (1472 -1472 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6620" + "plane" "(1333 792 233) (1335 792 233) (1335 792 231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33537" - "plane" "(1472 -1280 64) (1536 -1312 64) (1536 -1312 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6619" + "plane" "(1333 856 233) (1333 792 233) (1333 792 231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "33536" - "plane" "(1536 -1312 64) (1536 -1472 64) (1536 -1472 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6618" + "plane" "(1335 792 233) (1335 856 233) (1335 856 231)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 460.66] 0.25" + "vaxis" "[0 0 -1 457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "42459" + "id" "2297" side { - "id" "32535" - "plane" "(-96 -2432 40) (-96 -2272 40) (-64 -2272 40)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6630" + "plane" "(1336 856 233) (1337 856 234) (1337 856 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32534" - "plane" "(-96 -2272 0) (-96 -2432 0) (-64 -2432 0)" + "id" "6629" + "plane" "(1336 792 233) (1328 792 233) (1328 792 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32533" - "plane" "(-96 -2432 0) (-96 -2272 0) (-96 -2272 40)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6628" + "plane" "(1328 856 233) (1328 856 236) (1328 792 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[0 -1 0 -23.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32532" - "plane" "(-64 -2272 0) (-64 -2432 0) (-64 -2432 40)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6627" + "plane" "(1328 792 233) (1336 792 233) (1336 856 233)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32531" - "plane" "(-64 -2432 0) (-96 -2432 0) (-96 -2432 40)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6626" + "plane" "(1336 792 233) (1337 792 234) (1337 856 234)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32530" - "plane" "(-96 -2272 0) (-64 -2272 0) (-64 -2272 40)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6625" + "plane" "(1337 792 234) (1337 792 236) (1337 856 236)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 413.307] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6624" + "plane" "(1328 856 236) (1337 856 236) (1337 792 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[1 0 0 31.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "42460" + "id" "2298" side { - "id" "32541" - "plane" "(-64 -2432 48) (-64 -2272 48) (-32 -2272 48)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6636" + "plane" "(1333 856 191) (1335 856 191) (1335 792 191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32540" - "plane" "(-64 -2272 0) (-64 -2432 0) (-32 -2432 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6635" + "plane" "(1333 792 189) (1335 792 189) (1335 856 189)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 460.66] 0.25" + "vaxis" "[1 0 0 -4.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32539" - "plane" "(-64 -2432 0) (-64 -2272 0) (-64 -2272 48)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6634" + "plane" "(1335 856 191) (1333 856 191) (1333 856 189)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32538" - "plane" "(-32 -2272 0) (-32 -2432 0) (-32 -2432 48)" + "id" "6633" + "plane" "(1333 792 191) (1335 792 191) (1335 792 189)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32537" - "plane" "(-32 -2432 0) (-64 -2432 0) (-64 -2432 48)" + "id" "6632" + "plane" "(1333 856 191) (1333 792 191) (1333 792 189)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32536" - "plane" "(-64 -2272 0) (-32 -2272 0) (-32 -2272 48)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6631" + "plane" "(1335 792 191) (1335 856 191) (1335 856 189)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 460.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "42461" + "id" "2299" side { - "id" "32547" - "plane" "(-32 -2432 56) (-32 -2272 56) (0 -2272 56)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6643" + "plane" "(1336 792 191) (1328 792 191) (1328 792 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32546" - "plane" "(-32 -2272 0) (-32 -2432 0) (0 -2432 0)" + "id" "6642" + "plane" "(1328 823 191) (1328 823 194) (1328 792 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[0 -1 0 -23.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32545" - "plane" "(-32 -2432 0) (-32 -2272 0) (-32 -2272 56)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6641" + "plane" "(1336 792 191) (1336 823 191) (1328 823 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32544" - "plane" "(0 -2272 0) (0 -2432 0) (0 -2432 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6640" + "plane" "(1337 792 192) (1337 823 192) (1336 823 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32543" - "plane" "(0 -2432 0) (-32 -2432 0) (-32 -2432 56)" + "id" "6639" + "plane" "(1337 792 194) (1337 823 194) (1337 823 192)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 245.307] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6638" + "plane" "(1328 823 194) (1337 823 194) (1337 792 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[1 0 0 31.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32542" - "plane" "(-32 -2272 0) (0 -2272 0) (0 -2272 56)" + "id" "6637" + "plane" "(1336 823 191) (1337 823 192) (1337 823 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "42470" + "id" "2300" side { - "id" "32607" - "plane" "(-32 -2272 80) (-32 -2176 80) (0 -2176 80)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6649" + "plane" "(1328 948 197) (1340 948 197) (1340 792 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[1 0 0 -128.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32606" - "plane" "(-32 -2176 32) (-32 -2272 32) (0 -2272 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6648" + "plane" "(1328 792 194) (1340 792 194) (1340 948 194)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 428.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32605" - "plane" "(-32 -2272 32) (-32 -2176 32) (-32 -2176 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6647" + "plane" "(1340 948 197) (1328 948 197) (1328 948 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 13.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32604" - "plane" "(0 -2176 32) (0 -2272 32) (0 -2272 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6646" + "plane" "(1328 792 197) (1340 792 197) (1340 792 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 13.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32603" - "plane" "(0 -2272 32) (-32 -2272 32) (-32 -2272 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6645" + "plane" "(1328 948 197) (1328 792 197) (1328 792 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 -1 13.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32602" - "plane" "(-32 -2176 32) (0 -2176 32) (0 -2176 80)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6644" + "plane" "(1340 792 197) (1340 948 197) (1340 948 194)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 428.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "42529" + "id" "2301" side { - "id" "32643" - "plane" "(1408 -64 128) (1408 256 128) (1664 256 128)" - "material" "RYAN_DEV/DEV_BROWN4" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6655" + "plane" "(1333 828 192) (1334 828 192) (1334 826 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4.66016] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32642" - "plane" "(1408 256 64) (1408 -64 64) (1664 -64 64)" + "id" "6654" + "plane" "(1333 826 125) (1334 826 125) (1334 828 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 4.66016] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32641" - "plane" "(1408 -64 64) (1408 256 64) (1408 256 128)" + "id" "6653" + "plane" "(1334 828 192) (1333 828 192) (1333 828 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6652" + "plane" "(1333 826 192) (1334 826 192) (1334 826 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32640" - "plane" "(1664 256 64) (1664 -64 64) (1664 -64 128)" + "id" "6651" + "plane" "(1333 828 192) (1333 826 192) (1333 826 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 4.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32639" - "plane" "(1408 256 64) (1664 256 64) (1664 256 128)" + "id" "6650" + "plane" "(1334 826 192) (1334 828 192) (1334 828 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 428.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2302" + side + { + "id" "6661" + "plane" "(1333 822 192) (1334 822 192) (1334 820 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -19.3398] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32638" - "plane" "(1664 -64 64) (1408 -64 64) (1408 -64 128)" + "id" "6660" + "plane" "(1333 820 125) (1334 820 125) (1334 822 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -19.3398] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6659" + "plane" "(1334 822 192) (1333 822 192) (1333 822 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6658" + "plane" "(1333 820 192) (1334 820 192) (1334 820 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6657" + "plane" "(1333 822 192) (1333 820 192) (1333 820 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -19.3398] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6656" + "plane" "(1334 820 192) (1334 822 192) (1334 822 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 428.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 112" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "42536" + "id" "2303" side { - "id" "32655" - "plane" "(1408 256 320) (1408 320 320) (1664 320 320)" + "id" "6667" + "plane" "(1333 794 231) (1334 794 231) (1334 792 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32654" - "plane" "(1408 320 128) (1408 256 128) (1664 256 128)" + "id" "6666" + "plane" "(1333 792 125) (1334 792 125) (1334 794 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32653" - "plane" "(1408 256 128) (1408 320 128) (1408 320 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6665" + "plane" "(1334 794 231) (1333 794 231) (1333 794 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32652" - "plane" "(1664 320 128) (1664 256 128) (1664 256 320)" + "id" "6664" + "plane" "(1333 792 231) (1334 792 231) (1334 792 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32651" - "plane" "(1408 320 128) (1664 320 128) (1664 320 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6663" + "plane" "(1333 794 231) (1333 792 231) (1333 792 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -3.33984] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32650" - "plane" "(1664 256 128) (1408 256 128) (1408 256 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6662" + "plane" "(1334 792 231) (1334 794 231) (1334 794 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 460.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "42552" + "id" "2304" side { - "id" "32679" - "plane" "(1664 -128 320) (1664 -32 320) (1728 -32 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6673" + "plane" "(1332 784 228) (1340 784 228) (1340 792 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -252.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32678" - "plane" "(1664 -32 128) (1664 -128 128) (1728 -128 128)" + "id" "6672" + "plane" "(1332 792 244) (1340 792 244) (1340 784 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32677" - "plane" "(1728 -32 128) (1728 -128 128) (1728 -128 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -288] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6671" + "plane" "(1332 784 244) (1340 784 244) (1340 784 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32676" - "plane" "(1664 -128 128) (1664 -32 128) (1664 -32 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -288] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6670" + "plane" "(1340 792 244) (1332 792 244) (1332 792 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 352.693] 0.25" + "vaxis" "[0 0 1 -457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32675" - "plane" "(1728 -128 128) (1664 -128 128) (1664 -128 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6669" + "plane" "(1332 792 244) (1332 784 244) (1332 784 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 1 14.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32674" - "plane" "(1664 -32 128) (1728 -32 128) (1728 -32 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6668" + "plane" "(1340 784 244) (1340 792 244) (1340 792 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -252.66] 0.25" + "vaxis" "[0 0 1 -457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "42556" + "id" "2305" side { - "id" "32691" - "plane" "(1664 224 320) (1664 320 320) (1728 320 320)" + "id" "6679" + "plane" "(1332 784 202) (1340 784 202) (1340 792 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32690" - "plane" "(1664 320 128) (1664 224 128) (1728 224 128)" + "id" "6678" + "plane" "(1340 792 228) (1340 784 228) (1332 784 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32689" - "plane" "(1728 320 128) (1728 224 128) (1728 224 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6677" + "plane" "(1340 792 228) (1332 792 228) (1332 792 202)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -80.6953] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32688" - "plane" "(1664 224 128) (1664 320 128) (1664 320 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 -256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6676" + "plane" "(1332 792 228) (1332 784 228) (1332 784 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32687" - "plane" "(1728 224 128) (1664 224 128) (1664 224 320)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6675" + "plane" "(1340 784 228) (1340 792 228) (1340 792 202)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 320.662] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32686" - "plane" "(1664 320 128) (1728 320 128) (1728 320 320)" + "id" "6674" + "plane" "(1332 784 228) (1340 784 228) (1340 784 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "41789" + "id" "2306" side { - "id" "32112" - "plane" "(1184 512 96) (960 512 96) (960 640 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6685" + "plane" "(1332 784 182) (1340 784 182) (1340 792 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 428.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32111" - "plane" "(960 640 64) (960 512 64) (1184 512 64)" + "id" "6684" + "plane" "(1332 792 202) (1340 792 202) (1340 784 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32110" - "plane" "(1184 512 64) (960 512 64) (960 512 96)" + "id" "6683" + "plane" "(1340 792 202) (1332 792 202) (1332 792 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6682" + "plane" "(1332 784 202) (1340 784 202) (1340 784 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32109" - "plane" "(1184 608 64) (1184 512 64) (1184 512 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6681" + "plane" "(1332 792 202) (1332 784 202) (1332 784 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32108" - "plane" "(960 512 64) (960 640 64) (960 640 96)" + "id" "6680" + "plane" "(1340 784 202) (1340 792 202) (1340 792 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 428.66] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2307" + side + { + "id" "6692" + "plane" "(1332 784 176) (1340 784 176) (1340 790 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32107" - "plane" "(960 640 64) (1152 640 64) (1152 640 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6691" + "plane" "(1332 792 182) (1338 792 182) (1340 790 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32106" - "plane" "(1152 640 64) (1184 608 64) (1184 608 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6690" + "plane" "(1338 792 182) (1332 792 182) (1332 792 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6689" + "plane" "(1332 784 182) (1340 784 182) (1340 784 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6688" + "plane" "(1332 792 182) (1332 784 182) (1332 784 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6687" + "plane" "(1340 784 182) (1340 790 182) (1340 790 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 428.66] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6686" + "plane" "(1340 790 182) (1338 792 182) (1338 792 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 179" - "groupid" "41734" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "41791" + "id" "2308" side { - "id" "32124" - "plane" "(832 -160 256) (832 -128 256) (896 -128 256)" + "id" "6698" + "plane" "(1332 780 176) (1340 780 176) (1340 784 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32123" - "plane" "(832 -128 160) (832 -160 160) (896 -160 160)" + "id" "6697" + "plane" "(1340 784 244) (1340 780 244) (1332 780 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32122" - "plane" "(896 -128 160) (896 -160 160) (896 -160 256)" + "id" "6696" + "plane" "(1340 784 244) (1332 784 244) (1332 784 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32121" - "plane" "(832 -160 160) (832 -128 160) (832 -128 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6695" + "plane" "(1332 784 244) (1332 780 244) (1332 780 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32120" - "plane" "(896 -160 160) (832 -160 160) (832 -160 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6694" + "plane" "(1340 780 244) (1340 784 244) (1340 784 176)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 320.662] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32119" - "plane" "(832 -128 160) (896 -128 160) (896 -128 256)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -256] 0.25" - "vaxis" "[0 0 -1 384] 0.25" + "id" "6693" + "plane" "(1332 780 244) (1340 780 244) (1340 780 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "41796" + "id" "2309" side { - "id" "32149" - "plane" "(448 1.52588e-05 256) (448 320 256) (544 320 256)" + "id" "6705" + "plane" "(1338 792 176) (1340 790 176) (1340 780 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32148" - "plane" "(448 320 64) (448 1.52588e-05 64) (544 1.52588e-05 64)" + "id" "6704" + "plane" "(1332 780 136) (1340 780 136) (1340 790 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32147" - "plane" "(544 320 64) (544 1.52588e-05 64) (544 1.52588e-05 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6703" + "plane" "(1338 792 176) (1332 792 176) (1332 792 136)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -32.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32146" - "plane" "(448 1.52588e-05 64) (448 320 64) (448 320 256)" + "id" "6702" + "plane" "(1332 792 176) (1332 780 176) (1332 780 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32145" - "plane" "(544 1.52588e-05 64) (448 1.52588e-05 64) (448 1.52588e-05 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6701" + "plane" "(1340 780 176) (1340 790 176) (1340 790 136)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 320.662] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32144" - "plane" "(448 320 64) (544 320 64) (544 320 256)" + "id" "6700" + "plane" "(1340 790 176) (1338 792 176) (1338 792 136)" + "material" "BRICK/WALL20" + "uaxis" "[0.707107 -0.707107 0 273.175] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6699" + "plane" "(1332 780 176) (1340 780 176) (1340 780 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 158 183" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "41805" + "id" "2310" side { - "id" "32155" - "plane" "(896 -64 256) (896 320 256) (544 320 256)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6712" + "plane" "(1332 792 136) (1338 792 136) (1340 790 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32154" - "plane" "(544 -64 320) (544 320 320) (960 320 320)" + "id" "6711" + "plane" "(1332 784 128) (1340 784 128) (1340 790 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32153" - "plane" "(544 -64 256) (544 -64 320) (960 -64 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "6710" + "plane" "(1338 792 136) (1332 792 136) (1332 792 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32152" - "plane" "(896 -64 256) (960 -64 320) (960 320 320)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[0.707107 0 0.707107 80.6322] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6709" + "plane" "(1332 784 136) (1340 784 136) (1340 784 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32151" - "plane" "(896 320 256) (960 320 320) (544 320 320)" + "id" "6708" + "plane" "(1332 792 136) (1332 784 136) (1332 784 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32150" - "plane" "(544 320 256) (544 320 320) (544 -64 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6707" + "plane" "(1340 784 136) (1340 790 136) (1340 790 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 428.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6706" + "plane" "(1340 790 136) (1338 792 136) (1338 792 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 179" - "groupid" "18855" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "41827" + "id" "2311" side { - "id" "32188" - "plane" "(448 512 320) (960 512 320) (960 192 320)" + "id" "6718" + "plane" "(1340 784 136) (1340 772 136) (1332 772 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32187" - "plane" "(448 192 64) (960 192 64) (960 512 64)" + "id" "6717" + "plane" "(1332 772 124) (1340 772 124) (1340 784 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32186" - "plane" "(960 512 64) (960 192 64) (960 192 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6716" + "plane" "(1340 784 136) (1332 784 136) (1332 784 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32185" - "plane" "(448 512 64) (960 512 64) (960 512 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6715" + "plane" "(1332 784 136) (1332 772 136) (1332 772 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32184" - "plane" "(960 192 64) (448 192 64) (448 192 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6714" + "plane" "(1340 772 136) (1340 784 136) (1340 784 124)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 320.662] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32182" - "plane" "(448 192 64) (448 512 64) (448 512 320)" + "id" "6713" + "plane" "(1332 772 136) (1340 772 136) (1340 772 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 108 237" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "41856" + "id" "2312" side { - "id" "32232" - "plane" "(960 320 64) (1184 320 64) (1184 512 64)" + "id" "6724" + "plane" "(1340 792 124) (1340 780 124) (1328 780 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32231" - "plane" "(1184 320 128) (1184 320 64) (960 320 64)" + "id" "6723" + "plane" "(1328 780 116) (1340 780 116) (1340 792 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32230" - "plane" "(1184 512 96) (1184 512 64) (1184 320 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6722" + "plane" "(1340 792 124) (1328 792 124) (1328 792 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32229" - "plane" "(960 512 96) (960 512 64) (1184 512 64)" + "id" "6721" + "plane" "(1328 792 124) (1328 780 124) (1328 780 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32228" - "plane" "(960 320 128) (960 320 64) (960 512 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6720" + "plane" "(1340 780 124) (1340 792 124) (1340 792 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 428.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32227" - "plane" "(1184 320 128) (960 320 128) (960 512 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6719" + "plane" "(1328 780 124) (1340 780 124) (1340 780 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 179" - "groupid" "41848" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "41864" + "id" "2313" side { - "id" "32244" - "plane" "(960 -64 128) (960 -32 128) (1408 -32 128)" - "material" "RYAN_DEV/DEV_BROWN4" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6732" + "plane" "(1338 826 126) (1338 822 126) (1328 822 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 396.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32243" - "plane" "(960 -32 64) (960 -64 64) (1408 -64 64)" + "id" "6731" + "plane" "(1328 821 120) (1338 821 120) (1338 827 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 8.66016] 0.25" + "vaxis" "[1 0 0 -8.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32242" - "plane" "(960 -64 64) (960 -32 64) (960 -32 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6730" + "plane" "(1338 827 125) (1328 827 125) (1328 827 120)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32241" - "plane" "(1408 -32 64) (1408 -64 64) (1408 -64 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6729" + "plane" "(1328 821 125) (1338 821 125) (1338 821 120)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32240" - "plane" "(960 -32 64) (1408 -32 64) (1408 -32 128)" + "id" "6728" + "plane" "(1328 827 125) (1328 826 126) (1328 822 126)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 8.66016] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "32239" - "plane" "(1408 -64 64) (960 -64 64) (960 -64 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6727" + "plane" "(1338 821 125) (1338 822 126) (1338 826 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 396.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6726" + "plane" "(1328 822 126) (1338 822 126) (1338 821 125)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6725" + "plane" "(1338 826 126) (1328 826 126) (1328 827 125)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 112" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } - hidden + solid { - solid + "id" "2314" + side { - "id" "38583" - side - { - "id" "30387" - "plane" "(1856 1024 384) (2944 1024 384) (2944 -192 384)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30386" - "plane" "(1856 -192 320) (2944 -192 320) (2944 1024 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30385" - "plane" "(2944 1024 320) (2944 -192 320) (2944 -192 384)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30384" - "plane" "(1856 1024 320) (2944 1024 320) (2944 1024 384)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30383" - "plane" "(2944 -192 320) (1856 -192 320) (1856 -192 384)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30382" - "plane" "(1856 -192 320) (1856 1024 320) (1856 1024 384)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 145 198" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "6738" + "plane" "(1332 792 128) (1340 792 128) (1340 784 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 428.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - hidden - { - solid + side { - "id" "38604" - side - { - "id" "30441" - "plane" "(2944 512 320) (2736 512 320) (2736 960 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30440" - "plane" "(2944 960 256) (2736 960 256) (2736 512 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30439" - "plane" "(2736 960 256) (2944 960 256) (2944 960 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30438" - "plane" "(2944 512 256) (2736 512 256) (2736 512 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30437" - "plane" "(2736 512 256) (2736 960 256) (2736 960 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30436" - "plane" "(2944 960 256) (2944 512 256) (2944 512 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 145 198" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "6737" + "plane" "(1332 784 124) (1340 784 124) (1340 792 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - hidden - { - solid + side { - "id" "38608" - side - { - "id" "30453" - "plane" "(2736 512 320) (2720 512 320) (2720 672 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30452" - "plane" "(2736 672 256) (2720 672 256) (2720 512 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30451" - "plane" "(2720 672 256) (2736 672 256) (2736 672 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30450" - "plane" "(2736 512 256) (2720 512 256) (2720 512 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30449" - "plane" "(2720 512 256) (2720 672 256) (2720 672 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30448" - "plane" "(2736 672 256) (2736 512 256) (2736 512 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 145 198" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "6736" + "plane" "(1340 792 128) (1332 792 128) (1332 792 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - hidden - { - solid + side { - "id" "38201" - side - { - "id" "30181" - "plane" "(1456 -2256 64) (1472 -2256 64) (1472 -2256 144)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30180" - "plane" "(1472 -2768 144) (1472 -2768 64) (1456 -2768 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30179" - "plane" "(1472 -2256 144) (1472 -2256 64) (1472 -2768 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30178" - "plane" "(1472 -2256 64) (1456 -2256 64) (1456 -2768 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30177" - "plane" "(1472 -2768 144) (1456 -2768 64) (1456 -2256 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 137 234" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "6735" + "plane" "(1332 784 128) (1340 784 128) (1340 784 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - hidden - { - solid + side { - "id" "38203" - side - { - "id" "30191" - "plane" "(1456 -2224 64) (1472 -2224 64) (1472 -2256 144)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30190" - "plane" "(1472 -2256 144) (1472 -2256 64) (1456 -2256 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30189" - "plane" "(1472 -2256 144) (1472 -2224 64) (1472 -2256 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30188" - "plane" "(1472 -2224 64) (1456 -2224 64) (1456 -2256 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30187" - "plane" "(1456 -2224 64) (1472 -2256 144) (1456 -2256 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 137 234" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "6734" + "plane" "(1332 792 128) (1332 784 128) (1332 784 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6733" + "plane" "(1340 784 128) (1340 792 128) (1340 792 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 428.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } } solid { - "id" "38209" + "id" "2315" side { - "id" "30215" - "plane" "(1472 -1056 256) (1472 -1152 256) (1456 -1152 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6744" + "plane" "(1333 856 122) (1335 856 122) (1335 792 122)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 460.66] 0.25" + "vaxis" "[1 0 0 -4.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30214" - "plane" "(1472 -1152 64) (1472 -1056 64) (1456 -1056 64)" + "id" "6743" + "plane" "(1333 792 120) (1335 792 120) (1335 856 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30213" - "plane" "(1456 -1056 256) (1456 -1152 256) (1456 -1152 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6742" + "plane" "(1335 856 122) (1333 856 122) (1333 856 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30212" - "plane" "(1472 -1152 256) (1472 -1056 256) (1472 -1056 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6741" + "plane" "(1333 792 122) (1335 792 122) (1335 792 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30211" - "plane" "(1472 -1056 256) (1456 -1056 256) (1456 -1056 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6740" + "plane" "(1333 856 122) (1333 792 122) (1333 792 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30210" - "plane" "(1456 -1152 256) (1472 -1152 256) (1472 -1152 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6739" + "plane" "(1335 792 122) (1335 856 122) (1335 856 120)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 460.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "38213" + "id" "2316" side { - "id" "30227" - "plane" "(1456 -1056 256) (1456 -896 256) (1472 -896 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6751" + "plane" "(1333 856 125) (1334 856 125) (1334 792 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 460.66] 0.25" + "vaxis" "[1 0 0 -4.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30226" - "plane" "(1456 -896 192) (1456 -1056 192) (1472 -1056 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6750" + "plane" "(1333 792 123) (1335 792 123) (1335 856 123)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 460.66] 0.25" + "vaxis" "[1 0 0 -4.69727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30225" - "plane" "(1456 -1056 192) (1456 -896 192) (1456 -896 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6749" + "plane" "(1335 856 124) (1334 856 125) (1333 856 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30224" - "plane" "(1472 -896 192) (1472 -1056 192) (1472 -1056 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6748" + "plane" "(1333 792 125) (1334 792 125) (1335 792 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30223" - "plane" "(1456 -896 192) (1472 -896 192) (1472 -896 256)" + "id" "6747" + "plane" "(1333 856 125) (1333 792 125) (1333 792 123)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30222" - "plane" "(1472 -1056 192) (1456 -1056 192) (1456 -1056 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6746" + "plane" "(1335 792 124) (1335 856 124) (1335 856 123)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 460.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6745" + "plane" "(1334 856 125) (1335 856 124) (1335 792 124)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "38218" + "id" "2317" side { - "id" "30251" - "plane" "(1136 -1056 256) (1136 -896 256) (1152 -896 256)" + "id" "6757" + "plane" "(1333 856 123) (1334 856 123) (1334 792 123)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30250" - "plane" "(1136 -896 192) (1136 -1056 192) (1152 -1056 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6756" + "plane" "(1333 792 122) (1334 792 122) (1334 856 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[1 0 0 7.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30249" - "plane" "(1136 -1056 192) (1136 -896 192) (1136 -896 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6755" + "plane" "(1334 856 123) (1333 856 123) (1333 856 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30248" - "plane" "(1152 -896 192) (1152 -1056 192) (1152 -1056 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6754" + "plane" "(1333 792 123) (1334 792 123) (1334 792 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30247" - "plane" "(1136 -896 192) (1152 -896 192) (1152 -896 256)" + "id" "6753" + "plane" "(1333 856 123) (1333 792 123) (1333 792 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 12.6602] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30246" - "plane" "(1152 -1056 192) (1136 -1056 192) (1136 -1056 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6752" + "plane" "(1334 792 123) (1334 856 123) (1334 856 122)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 -1 0 460.66] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "38219" + "id" "2318" side { - "id" "30257" - "plane" "(1152 -1056 256) (1152 -1248 256) (1136 -1248 256)" + "id" "6764" + "plane" "(1332 884 136) (1338 884 136) (1340 882 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0.660156] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30256" - "plane" "(1152 -1248 64) (1152 -1056 64) (1136 -1056 64)" + "id" "6763" + "plane" "(1332 876 128) (1340 876 128) (1340 882 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0.660156] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30255" - "plane" "(1136 -1056 256) (1136 -1248 256) (1136 -1248 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6762" + "plane" "(1338 884 136) (1332 884 136) (1332 884 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30254" - "plane" "(1152 -1248 256) (1152 -1056 256) (1152 -1056 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6761" + "plane" "(1332 876 136) (1340 876 136) (1340 876 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30253" - "plane" "(1152 -1056 256) (1136 -1056 256) (1136 -1056 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6760" + "plane" "(1332 884 136) (1332 876 136) (1332 876 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.660156] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30252" - "plane" "(1136 -1248 256) (1152 -1248 256) (1152 -1248 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6759" + "plane" "(1340 876 136) (1340 882 136) (1340 882 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 368.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6758" + "plane" "(1340 882 136) (1338 884 136) (1338 884 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "38251" + "id" "2319" side { - "id" "30293" - "plane" "(1792 -800 256) (1792 -576 256) (2240 -576 256)" + "id" "6770" + "plane" "(1332 884 124) (1340 884 124) (1340 856 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30292" - "plane" "(1792 -576 64) (1792 -800 64) (2240 -800 64)" + "id" "6769" + "plane" "(1332 856 116) (1340 856 116) (1340 884 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30291" - "plane" "(1792 -800 64) (1792 -576 64) (1792 -576 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6768" + "plane" "(1340 884 124) (1332 884 124) (1332 884 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30290" - "plane" "(2240 -576 64) (2240 -800 64) (2240 -800 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6767" + "plane" "(1332 856 124) (1340 856 124) (1340 856 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30289" - "plane" "(1792 -576 64) (2240 -576 64) (2240 -576 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6766" + "plane" "(1332 884 124) (1332 856 124) (1332 856 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "30288" - "plane" "(2240 -800 64) (1792 -800 64) (1792 -800 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6765" + "plane" "(1340 856 124) (1340 884 124) (1340 884 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 368.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } - hidden + solid { - solid + "id" "2320" + side { - "id" "37812" - side - { - "id" "30015" - "plane" "(2808 480 104) (2720 480 104) (2720 512 112)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30014" - "plane" "(2720 480 104) (2808 480 104) (2808 512 104)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30013" - "plane" "(2808 512 104) (2808 480 104) (2808 512 112)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30012" - "plane" "(2720 512 104) (2808 512 104) (2808 512 112)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30011" - "plane" "(2720 512 112) (2720 480.003 104) (2720 512 104)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 151" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "6776" + "plane" "(1332 884 128) (1340 884 128) (1340 876 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 368.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - hidden - { - solid + side { - "id" "37817" - side - { - "id" "30025" - "plane" "(2672 432 104) (2656 448 112) (2720 512 112)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30024" - "plane" "(2720 480 104) (2720 512 104) (2656 448 104)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30023" - "plane" "(2720 480 104) (2720 512 112) (2720 512 104)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30022" - "plane" "(2720 512 104) (2720 512 112) (2656 448 112)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30021" - "plane" "(2672 432 104) (2656 448 104) (2656 448 112)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 151" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "6775" + "plane" "(1332 876 124) (1340 876 124) (1340 884 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.660156] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - hidden - { - solid + side { - "id" "37831" - side - { - "id" "30054" - "plane" "(2640 400 112) (2656 448 112) (2672 432 104)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30053" - "plane" "(2661.33 400 104) (2672 432 104) (2656 448 104)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30052" - "plane" "(2656 448 104) (2672 432 104) (2656 448 112)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30051" - "plane" "(2640 400 104) (2656 448 104) (2656 448 112)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30050" - "plane" "(2640 400 112) (2661.34 400 104) (2640 400 104)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 151" - "visgroupshown" "1" - "visgroupautoshown" "0" - } + "id" "6774" + "plane" "(1340 884 128) (1332 884 128) (1332 884 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6773" + "plane" "(1332 876 128) (1340 876 128) (1340 876 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6772" + "plane" "(1332 884 128) (1332 876 128) (1332 876 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.660156] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6771" + "plane" "(1340 876 128) (1340 884 128) (1340 884 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 368.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } } - hidden + solid { - solid + "id" "2321" + side { - "id" "37832" - side - { - "id" "30058" - "plane" "(2661.33 400 104) (2656 384 100) (2640 400 112)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30057" - "plane" "(2661.33 400 104) (2640 400 104) (2656 384 100)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30056" - "plane" "(2656 384 100) (2640 400 104) (2640 400 112)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30055" - "plane" "(2661.33 400 104) (2640 400 112) (2640 400 104)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 151" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "37834" - side - { - "id" "30066" - "plane" "(2640 400 112) (2656 384 100) (2632 376 98)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 5.32617] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30065" - "plane" "(2632 376 98) (2656 384 100) (2640 400 104)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 5.32617] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30064" - "plane" "(2640 400 112) (2632 376 98) (2640 400 104)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 5.32617] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "30063" - "plane" "(2640 400 104) (2656 384 100) (2640 400 112)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 5.32617] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 151" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - solid - { - "id" "36843" - side - { - "id" "29394" - "plane" "(1440 -896 256) (1440 -640 256) (1472 -640 256)" + "id" "6782" + "plane" "(1332 876 136) (1340 876 136) (1340 864 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "29393" - "plane" "(1440 -640 64) (1440 -896 64) (1472 -896 64)" + "id" "6781" + "plane" "(1332 864 124) (1340 864 124) (1340 876 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "29392" - "plane" "(1440 -896 64) (1440 -640 64) (1440 -640 256)" + "id" "6780" + "plane" "(1340 876 136) (1332 876 136) (1332 876 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "29391" - "plane" "(1472 -640 64) (1472 -896 64) (1472 -896 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6779" + "plane" "(1332 864 136) (1340 864 136) (1340 864 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "29390" - "plane" "(1440 -640 64) (1472 -640 64) (1472 -640 256)" + "id" "6778" + "plane" "(1332 876 136) (1332 864 136) (1332 864 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "29389" - "plane" "(1472 -896 64) (1440 -896 64) (1440 -896 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6777" + "plane" "(1340 864 136) (1340 876 136) (1340 876 124)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 464.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 137 234" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } - hidden - { - solid - { - "id" "37212" - side - { - "id" "29744" - "plane" "(2808 240 64) (2624 240 64) (2624 400 104)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29743" - "plane" "(2624 240 64) (2808 240 64) (2808 400 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29742" - "plane" "(2808 400 64) (2808 240 64) (2808 400 104)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29741" - "plane" "(2624 400 64) (2808 400 64) (2808 400 104)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29740" - "plane" "(2624 400 104) (2624 239.984 64) (2624 400 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 151" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "37222" - side - { - "id" "29765" - "plane" "(2544 240 64) (2576 272 72) (2624 272 72)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.0625] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29764" - "plane" "(2624 240.003 64) (2624 272 64) (2576 272 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.0625] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29763" - "plane" "(2624 240.003 64) (2624 272 72) (2624 272 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 -0.0625] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29762" - "plane" "(2624 272 64) (2624 272 72) (2576 272 72)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29761" - "plane" "(2544 240 64) (2576 272 64) (2576 272 72)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 -0.0625] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 151" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "37226" - side - { - "id" "29775" - "plane" "(2576 272.003 72) (2608 304 80) (2624 304 80)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.0625] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29774" - "plane" "(2624 272.003 72) (2624 304 72) (2608 304 72)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.0625] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29773" - "plane" "(2624 272.003 72) (2624 304 80) (2624 304 72)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 -0.0625] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29772" - "plane" "(2624 304 72) (2624 304 80) (2608 304 80)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29771" - "plane" "(2576 272.003 72) (2608 304 72) (2608 304 80)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 -0.0625] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 151" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "37230" - side - { - "id" "29785" - "plane" "(2576 320 72) (2576 272 72) (2544 240 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0.0615234] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29784" - "plane" "(2576 272 64) (2576 320 64) (2544 320 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0.0615234] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29783" - "plane" "(2576 272 72) (2576 272 64) (2544 240 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 -0.0615234] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29782" - "plane" "(2576 272 72) (2576 320 72) (2576 320 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29781" - "plane" "(2576 320 64) (2576 320 72) (2544 320 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 -0.0615234] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 151" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "37234" - side - { - "id" "29795" - "plane" "(2608 304 80) (2576 272 72) (2576 336 72)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0.0498047] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29794" - "plane" "(2608 336 72) (2576 336 72) (2576 272 72)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0.0498047] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29793" - "plane" "(2608 304 72) (2576 272 72) (2608 304 80)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 -0.0498047] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29792" - "plane" "(2608 336 80) (2608 336 72) (2608 304 72)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29791" - "plane" "(2608 336 80) (2576 336 72) (2608 336 72)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 -0.0498047] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 151" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "37252" - side - { - "id" "29809" - "plane" "(2608 304 80) (2608 336 80) (2624 336 88)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.0498047] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29808" - "plane" "(2608 336 80) (2608 304 80) (2624 336 80)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.0498047] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29807" - "plane" "(2624 336 88) (2608 336 80) (2624 336 80)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 -0.0498047] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29806" - "plane" "(2624 336 80) (2608 304 80) (2624 336 88)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 151" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "37253" - side - { - "id" "29814" - "plane" "(2608 304 80) (2624 336 88) (2624 304 80)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.0498047] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29813" - "plane" "(2624 304 80) (2624 336 80) (2608 304 80)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.0498047] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29811" - "plane" "(2624 304 80) (2624 336 88) (2624 336 80)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29810" - "plane" "(2608 304 80) (2624 336 80) (2624 336 88)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 151" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } solid { - "id" "36082" + "id" "2322" side { - "id" "28681" - "plane" "(1664 -128 128) (1664 320 128) (1856 320 128)" - "material" "RYAN_DEV/DEV_BROWN4" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6789" + "plane" "(1332 864 136) (1340 864 136) (1340 858 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28680" - "plane" "(1664 320 64) (1664 -128 64) (1856 -128 64)" + "id" "6788" + "plane" "(1332 856 128) (1338 856 128) (1340 858 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -15.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28679" - "plane" "(1664 -128 64) (1664 320 64) (1664 320 128)" + "id" "6787" + "plane" "(1340 864 136) (1332 864 136) (1332 864 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28678" - "plane" "(1856 320 64) (1856 -128 64) (1856 -128 128)" - "material" "RYAN_DEV/BROWN2" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6786" + "plane" "(1332 856 136) (1338 856 136) (1338 856 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28677" - "plane" "(1664 320 64) (1856 320 64) (1856 320 128)" + "id" "6785" + "plane" "(1332 864 136) (1332 856 136) (1332 856 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28676" - "plane" "(1856 -128 64) (1664 -128 64) (1664 -128 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6784" + "plane" "(1340 858 136) (1340 864 136) (1340 864 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 368.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6783" + "plane" "(1338 856 136) (1340 858 136) (1340 858 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 112" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "36498" + "id" "2323" side { - "id" "29191" - "plane" "(1024 -1472 64) (1024 -1152 64) (1136 -1152 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "6795" + "plane" "(1332 864 128) (1340 864 128) (1340 856 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 368.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "29190" - "plane" "(1024 -1152 0) (1024 -1472 0) (1136 -1248 0)" + "id" "6794" + "plane" "(1332 856 124) (1340 856 124) (1340 864 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -15.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "29189" - "plane" "(1024 -1472 0) (1024 -1152 0) (1024 -1152 64)" + "id" "6793" + "plane" "(1340 864 128) (1332 864 128) (1332 864 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "29188" - "plane" "(1136 -1152 0) (1136 -1248 0) (1136 -1248 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6792" + "plane" "(1332 856 128) (1340 856 128) (1340 856 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "29187" - "plane" "(1024 -1152 0) (1136 -1152 0) (1136 -1152 64)" + "id" "6791" + "plane" "(1332 864 128) (1332 856 128) (1332 856 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "29186" - "plane" "(1136 -1248 0) (1024 -1472 0) (1024 -1472 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6790" + "plane" "(1340 856 128) (1340 864 128) (1340 864 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 368.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 119 112" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34295" + "id" "2324" side { - "id" "28028" - "plane" "(512 1280 384) (528 1296 384) (552 1272 384)" + "id" "6802" + "plane" "(1336 780 288) (1340 780 288) (1340 770 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28027" - "plane" "(552 1272 64) (528 1296 64) (512 1280 64)" + "id" "6801" + "plane" "(1336 768 176) (1338 768 176) (1340 770 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28026" - "plane" "(512 1280 64) (528 1296 64) (528 1296 384)" + "id" "6800" + "plane" "(1340 780 288) (1336 780 288) (1336 780 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28025" - "plane" "(528 1296 64) (552 1272 64) (552 1272 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6799" + "plane" "(1336 768 288) (1338 768 288) (1338 768 176)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 320.695] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28024" - "plane" "(536 1256 64) (512 1280 64) (512 1280 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6798" + "plane" "(1340 770 288) (1340 780 288) (1340 780 176)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 320.662] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28023" - "plane" "(552 1272 64) (536 1256 64) (536 1256 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6797" + "plane" "(1338 768 288) (1340 770 288) (1340 770 176)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 333.958] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6796" + "plane" "(1336 780 288) (1336 768 288) (1336 768 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34297" + "id" "2325" side { - "id" "28040" - "plane" "(512 1280 432) (528 1296 432) (560 1264 432)" + "id" "6808" + "plane" "(736 764 460) (1344 764 460) (1156 952 460)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 -16.6934] 0.25" + "vaxis" "[0 1 0 15.3384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28039" - "plane" "(552 1272 384) (528 1296 384) (512 1280 384)" + "id" "6807" + "plane" "(924 952 560) (1156 952 560) (1284 824 560)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 -16.6934] 0.25" + "vaxis" "[0 1 0 15.3384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28038" - "plane" "(512 1280 384) (528 1296 384) (528 1296 432)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6806" + "plane" "(796 824 560) (1284 824 560) (1344 764 460)" + "material" "WOOD/MILROOF001" + "uaxis" "[1 0 0 -144.697] 0.25" + "vaxis" "[0 0 1 -293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28037" - "plane" "(528 1296 384) (552 1272 384) (560 1264 432)" + "id" "6805" + "plane" "(1156 952 560) (924 952 560) (924 952 460)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28036" - "plane" "(536 1256 384) (512 1280 384) (512 1280 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6804" + "plane" "(924 952 560) (796 824 560) (736 764 460)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28035" - "plane" "(552 1272 384) (536 1256 384) (544 1248 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6803" + "plane" "(1284 824 560) (1156 952 560) (1156 952 460)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34301" + "id" "2326" side { - "id" "28052" - "plane" "(624 1168 656) (640 1184 656) (664 1160 656)" + "id" "6814" + "plane" "(802.012 824 560) (1278 824 560) (1270 832 560)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28051" - "plane" "(560 1264 432) (528 1296 432) (512 1280 432)" + "id" "6813" + "plane" "(1282 820 568) (798 820 568) (810 832 568)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28050" - "plane" "(512 1280 432) (528 1296 432) (640 1184 656)" + "id" "6812" + "plane" "(1270 832 568) (1270 832 560) (1278 824 560)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 32.6602] 0.25" + "vaxis" "[0 0 1 -21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28049" - "plane" "(528 1296 432) (560 1264 432) (664 1160 656)" + "id" "6811" + "plane" "(798 820 568) (802.012 824 560) (810.012 832 560)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28048" - "plane" "(544 1248 432) (512 1280 432) (624 1168 656)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6810" + "plane" "(810 832 568) (810.012 832 560) (1270 832 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28047" - "plane" "(560 1264 432) (544 1248 432) (648 1144 656)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6809" + "plane" "(1282 820 568) (1278 824 560) (802.012 824 560)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -432.697] 0.25" + "vaxis" "[0 0 -1 157.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34312" + "id" "2327" side { - "id" "28088" - "plane" "(664 1160 656) (688 1136 656) (672 1120 656)" + "id" "6821" + "plane" "(1184 770 420) (1184 776 420) (1220 776 420)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28087" - "plane" "(784 1008 432) (800 1024 432) (768 1056 432)" + "id" "6820" + "plane" "(1184 770 312) (1186 768 312) (1220 768 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28086" - "plane" "(800 1024 432) (784 1008 432) (672 1120 656)" + "id" "6819" + "plane" "(1184 776 420) (1184 770 420) (1184 770 312)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -400.656] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6818" + "plane" "(1220 776 420) (1184 776 420) (1184 776 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28085" - "plane" "(784 1008 432) (752 1040 432) (648 1144 656)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6817" + "plane" "(1186 768 420) (1220 768 420) (1220 768 312)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28084" - "plane" "(768 1056 432) (800 1024 432) (688 1136 656)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6816" + "plane" "(1184 770 420) (1186 768 420) (1186 768 312)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 0.707107 0 -57.3585] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28083" - "plane" "(752 1040 432) (768 1056 432) (664 1160 656)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6815" + "plane" "(1220 768 420) (1220 776 420) (1220 776 312)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34313" + "id" "2360" side { - "id" "28094" - "plane" "(832 1120 432) (864 1088 432) (784 1008 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "6827" + "plane" "(1344 856 108) (1340 856 112) (1340 856 92)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28093" - "plane" "(784 1008 384) (864 1088 384) (840 1112 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "6826" + "plane" "(1344 792 92) (1340 792 92) (1340 792 112)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28092" - "plane" "(864 1088 384) (784 1008 384) (784 1008 432)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6825" + "plane" "(1344 792 92) (1344 792 108) (1344 856 108)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 192.66] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28091" - "plane" "(784 1008 384) (760 1032 384) (752 1040 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6824" + "plane" "(1344 792 108) (1340 792 112) (1340 856 112)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -288.66] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28090" - "plane" "(840 1112 384) (864 1088 384) (864 1088 432)" + "id" "6823" + "plane" "(1340 792 92) (1344 792 92) (1344 856 92)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[1 0 0 15.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28089" - "plane" "(760 1032 384) (840 1112 384) (832 1120 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6822" + "plane" "(1340 856 92) (1340 856 112) (1340 792 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.660156] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34314" + "id" "2361" side { - "id" "28100" - "plane" "(776 1048 384) (800 1024 384) (784 1008 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "6833" + "plane" "(1344 948 108) (1340 948 112) (1340 948 92)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28099" - "plane" "(784 1008 64) (800 1024 64) (776 1048 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "6832" + "plane" "(1344 884 92) (1340 884 92) (1340 884 112)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28098" - "plane" "(800 1024 64) (784 1008 64) (784 1008 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6831" + "plane" "(1344 884 92) (1344 884 108) (1344 948 108)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 48.6602] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28097" - "plane" "(784 1008 64) (760 1032 64) (760 1032 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6830" + "plane" "(1344 884 108) (1340 884 112) (1340 948 112)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -144.66] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28096" - "plane" "(776 1048 64) (800 1024 64) (800 1024 384)" + "id" "6829" + "plane" "(1340 884 92) (1344 884 92) (1344 948 92)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[1 0 0 15.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28095" - "plane" "(760 1032 64) (776 1048 64) (776 1048 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6828" + "plane" "(1340 948 92) (1340 948 112) (1340 884 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34331" + "id" "2362" side { - "id" "28111" - "plane" "(776 1048 432) (792 1064 432) (568 1288 432)" + "id" "6839" + "plane" "(1344 764 460) (1344 1080 460) (1156 1080 460)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 15.3447] 0.25" + "vaxis" "[-1 0 0 -7.30469] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28110" - "plane" "(552 1272 432) (568 1288 432) (680 1176 656)" + "id" "6838" + "plane" "(1284 1080 560) (1284 824 560) (1156 952 560)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3447] 0.25" + "vaxis" "[-1 0 0 -7.30469] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28109" - "plane" "(792 1064 432) (776 1048 432) (664 1160 656)" + "id" "6837" + "plane" "(1284 824 560) (1284 1080 560) (1344 1080 460)" + "material" "WOOD/MILROOF001" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -293.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6836" + "plane" "(1156 1080 560) (1156 952 560) (1156 952 460)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 -15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28108" - "plane" "(680 1176 656) (568 1288 432) (792 1064 432)" + "id" "6835" + "plane" "(1156 952 560) (1284 824 560) (1344 764 460)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 8.69727] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28107" - "plane" "(776 1048 432) (552 1272 432) (664 1160 656)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6834" + "plane" "(1284 1080 560) (1156 1080 560) (1156 1080 460)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34334" + "id" "2363" side { - "id" "28124" - "plane" "(840 1112 480) (864 1088 480) (784 1008 480)" + "id" "6845" + "plane" "(732 764 452) (1344 764 452) (1332 776 452)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28122" - "plane" "(784 1008 432) (784 1008 480) (864 1088 480)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6844" + "plane" "(732 776 460) (1332 776 460) (1348 760 460)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28121" - "plane" "(760 1032 480) (784 1008 480) (784 1008 432)" + "id" "6843" + "plane" "(732 776 460) (732 760 460) (732 764 452)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28120" - "plane" "(864 1088 432) (864 1088 480) (840 1112 480)" + "id" "6842" + "plane" "(1332 776 460) (732 776 460) (732 776 452)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 1 -5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28119" - "plane" "(784 1008 432) (864 1088 432) (840 1112 480)" + "id" "6841" + "plane" "(732 760 460) (1348 760 460) (1344 764 452)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -432.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6840" + "plane" "(1348 760 460) (1332 776 460) (1332 776 452)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34344" + "id" "2364" side { - "id" "28134" - "plane" "(512 1280 480) (588 1356 480) (612 1332 480)" + "id" "6851" + "plane" "(732 764 448) (1344 764 448) (1332 776 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28133" - "plane" "(588 1356 432) (588 1356 480) (512 1280 480)" + "id" "6850" + "plane" "(732 776 452) (1332 776 452) (1344 764 452)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6849" + "plane" "(732 776 452) (732 764 452) (732 764 448)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28132" - "plane" "(612 1332 480) (588 1356 480) (588 1356 432)" + "id" "6848" + "plane" "(1332 776 452) (732 776 452) (732 776 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28131" - "plane" "(512 1280 432) (512 1280 480) (536 1256 480)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6847" + "plane" "(732 764 452) (1344 764 452) (1344 764 448)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -432.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28130" - "plane" "(588 1356 432) (512 1280 432) (536 1256 480)" + "id" "6846" + "plane" "(1344 764 452) (1332 776 452) (1332 776 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34364" + "id" "2365" side { - "id" "28146" - "plane" "(816 1136 528) (864 1088 528) (768 992 528)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "6857" + "plane" "(732 768 440) (1340 768 440) (1332 776 440)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 216.697] 0.25" + "vaxis" "[0 -1 0 408.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28145" - "plane" "(784 1008 480) (864 1088 480) (840 1112 480)" + "id" "6856" + "plane" "(732 776 448) (1332 776 448) (1344 764 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28144" - "plane" "(864 1088 480) (784 1008 480) (768 992 528)" + "id" "6855" + "plane" "(732 776 448) (732 764 448) (732 768 440)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28143" - "plane" "(784 1008 480) (760 1032 480) (720 1040 528)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6854" + "plane" "(1332 776 448) (732 776 448) (732 776 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 1 -21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28142" - "plane" "(840 1112 480) (864 1088 480) (864 1088 528)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6853" + "plane" "(732 764 448) (1344 764 448) (1340 768 440)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -432.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28141" - "plane" "(760 1032 480) (840 1112 480) (816 1136 528)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6852" + "plane" "(1344 764 448) (1332 776 448) (1332 776 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34369" + "id" "2366" side { - "id" "28158" - "plane" "(496 1264 528) (588 1356 528) (636 1308 528)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "6863" + "plane" "(1340 768 440) (1340 1080 440) (1332 1080 440)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -392.66] 0.25" + "vaxis" "[1 0 0 -200.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28157" - "plane" "(612 1332 480) (588 1356 480) (512 1280 480)" + "id" "6862" + "plane" "(1344 1080 448) (1344 764 448) (1332 776 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 23.3398] 0.25" + "vaxis" "[1 0 0 -16.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28156" - "plane" "(512 1280 480) (588 1356 480) (588 1356 528)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6861" + "plane" "(1332 1080 448) (1332 776 448) (1332 776 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 23.3398] 0.25" + "vaxis" "[0 0 1 -21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28155" - "plane" "(536 1256 480) (512 1280 480) (496 1264 528)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6860" + "plane" "(1344 764 448) (1344 1080 448) (1340 1080 440)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 56.6602] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28154" - "plane" "(588 1356 480) (612 1332 480) (636 1308 528)" + "id" "6859" + "plane" "(1332 776 448) (1344 764 448) (1340 768 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28153" - "plane" "(612 1332 480) (536 1256 480) (544 1216 528)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6858" + "plane" "(1344 1080 448) (1332 1080 448) (1332 1080 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34374" + "id" "2367" side { - "id" "28170" - "plane" "(748 1076 544) (804 1020 544) (768 984 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "6869" + "plane" "(1344 764 448) (1344 1080 448) (1332 1080 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 23.3398] 0.25" + "vaxis" "[1 0 0 31.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28169" - "plane" "(768 984 528) (804 1020 528) (748 1076 528)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "6868" + "plane" "(1344 1080 452) (1344 764 452) (1332 776 452)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 23.3398] 0.25" + "vaxis" "[1 0 0 31.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28168" - "plane" "(804 1020 528) (768 984 528) (768 984 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6867" + "plane" "(1332 1080 452) (1332 776 452) (1332 776 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 23.3398] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28167" - "plane" "(768 984 528) (712 1040 528) (712 1040 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6866" + "plane" "(1344 764 452) (1344 1080 452) (1344 1080 448)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 56.6602] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28166" - "plane" "(748 1076 528) (804 1020 528) (804 1020 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6865" + "plane" "(1332 776 452) (1344 764 452) (1344 764 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28165" - "plane" "(712 1040 528) (748 1076 528) (748 1076 544)" + "id" "6864" + "plane" "(1344 1080 452) (1332 1080 452) (1332 1080 448)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -24.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34380" + "id" "2368" side { - "id" "28182" - "plane" "(688 1136 664) (748 1076 544) (712 1040 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "6875" + "plane" "(1344 764 452) (1344 1080 452) (1332 1080 452)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 23.3398] 0.25" + "vaxis" "[1 0 0 31.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28181" - "plane" "(652 1100 648) (712 1040 528) (748 1076 528)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "6874" + "plane" "(1348 1080 460) (1348 760 460) (1332 776 460)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 23.3398] 0.25" + "vaxis" "[1 0 0 31.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28180" - "plane" "(748 1076 528) (712 1040 528) (712 1040 544)" + "id" "6873" + "plane" "(1332 1080 460) (1332 776 460) (1332 776 452)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 23.3398] 0.25" + "vaxis" "[0 0 1 -5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28179" - "plane" "(652 1100 664) (712 1040 544) (712 1040 528)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6872" + "plane" "(1348 760 460) (1348 1080 460) (1344 1080 452)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 -1 0 56.6602] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28178" - "plane" "(688 1136 648) (748 1076 528) (748 1076 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6871" + "plane" "(1332 776 460) (1348 760 460) (1344 764 452)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28177" - "plane" "(652 1100 648) (688 1136 648) (688 1136 664)" + "id" "6870" + "plane" "(1348 1080 460) (1332 1080 460) (1332 1080 452)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -24.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34384" + "id" "2369" side { - "id" "28200" - "plane" "(488 1264 544) (584 1360 544) (640 1304 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6881" + "plane" "(1278 824 560) (1278 1080 560) (1270 1080 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[1 0 0 -0.697266] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28199" - "plane" "(640 1304 528) (584 1360 528) (488 1264 528)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6880" + "plane" "(1270 1080 568) (1282 1080 568) (1282 820 568)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[1 0 0 -0.697266] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28198" - "plane" "(488 1264 528) (584 1360 528) (584 1360 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6879" + "plane" "(1270 832 568) (1282 820 568) (1278 824 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28197" - "plane" "(584 1360 528) (640 1304 528) (640 1304 544)" + "id" "6878" + "plane" "(1270 1080 568) (1270 832 568) (1270 832 560)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28196" - "plane" "(544 1208 528) (488 1264 528) (488 1264 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6877" + "plane" "(1282 820 568) (1282 1080 568) (1278 1080 560)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -320.66] 0.25" + "vaxis" "[0 0 -1 157.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28195" - "plane" "(640 1304 528) (544 1208 528) (544 1208 544)" + "id" "6876" + "plane" "(1282 1080 568) (1270 1080 568) (1270 1080 560)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34385" + "id" "2370" side { - "id" "28206" - "plane" "(604 1148 664) (544 1208 544) (580 1244 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6888" + "plane" "(1340 780 420) (1340 770 420) (1338 768 420)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28205" - "plane" "(640 1184 648) (580 1244 528) (544 1208 528)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6887" + "plane" "(1338 768 288) (1340 770 288) (1340 780 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 0.660156] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28204" - "plane" "(544 1208 528) (580 1244 528) (580 1244 544)" + "id" "6886" + "plane" "(1340 770 420) (1340 780 420) (1340 780 288)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 320.662] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6885" + "plane" "(1220 780 420) (1220 768 420) (1220 768 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28203" - "plane" "(640 1184 664) (580 1244 544) (580 1244 528)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6884" + "plane" "(1340 780 420) (1220 780 420) (1220 780 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28202" - "plane" "(604 1148 648) (544 1208 528) (544 1208 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6883" + "plane" "(1220 768 420) (1338 768 420) (1338 768 288)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 144.697] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28201" - "plane" "(640 1184 648) (604 1148 648) (604 1148 664)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6882" + "plane" "(1338 768 420) (1340 770 420) (1340 770 288)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 329.272] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34392" + "id" "2371" side { - "id" "28218" - "plane" "(640 1184 664) (688 1136 664) (652 1100 664)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "6895" + "plane" "(1338 768 420) (1340 770 420) (1340 780 420)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28217" - "plane" "(652 1100 648) (688 1136 648) (640 1184 648)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "6894" + "plane" "(1340 780 440) (1340 770 440) (1338 768 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28216" - "plane" "(688 1136 648) (652 1100 648) (652 1100 664)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "6893" + "plane" "(1340 770 440) (1340 780 440) (1340 780 420)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 320.662] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28215" - "plane" "(652 1100 648) (604 1148 648) (604 1148 664)" - "material" "DEV/REFLECTIVITY_10B" + "id" "6892" + "plane" "(732 780 440) (732 768 440) (732 768 420)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28214" - "plane" "(640 1184 648) (688 1136 648) (688 1136 664)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6891" + "plane" "(1340 780 440) (732 780 440) (732 780 420)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 1 -5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28213" - "plane" "(604 1148 648) (640 1184 648) (640 1184 664)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "6890" + "plane" "(732 768 440) (1338 768 440) (1338 768 420)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -80.6973] 0.25" + "vaxis" "[0 0 -1 453.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6889" + "plane" "(1338 768 440) (1340 770 440) (1340 770 420)" + "material" "BRICK/WALL20" + "uaxis" "[0.707107 0.707107 0 -93.9615] 0.25" + "vaxis" "[0 0 -1 453.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34396" + "id" "2373" side { - "id" "28228" - "plane" "(760 1096 544) (1152 1488 544) (992 1648 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6907" + "plane" "(760 768 104) (768 768 104) (768 764 100)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28227" - "plane" "(600 1256 544) (992 1648 544) (1072 1568 704)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6906" + "plane" "(764 764 64) (768 764 64) (768 768 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28226" - "plane" "(1152 1488 544) (760 1096 544) (680 1176 704)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6905" + "plane" "(764 764 64) (760 768 64) (760 768 104)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28225" - "plane" "(1072 1568 704) (992 1648 544) (1152 1488 544)" + "id" "6904" + "plane" "(768 768 104) (760 768 104) (760 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28224" - "plane" "(760 1096 544) (600 1256 544) (680 1176 704)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6903" + "plane" "(764 764 100) (768 764 100) (768 764 64)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6902" + "plane" "(768 764 100) (768 768 104) (768 768 64)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34448" + "id" "2374" side { - "id" "28255" - "plane" "(624 1232 544) (600 1256 544) (584 1240 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "6913" + "plane" "(768 768 104) (844 768 104) (844 764 100)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28254" - "plane" "(644 1180 664) (584 1240 544) (600 1256 544)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6912" + "plane" "(768 764 96) (768 768 96) (768 768 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28253" - "plane" "(660 1196 664) (600 1256 544) (624 1232 544)" + "id" "6911" + "plane" "(768 768 104) (768 768 96) (844 768 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28252" - "plane" "(608 1216 544) (584 1240 544) (644 1180 664)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6910" + "plane" "(844 764 100) (844 764 96) (768 764 96)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28251" - "plane" "(644 1180 664) (660 1196 664) (680 1176 664)" + "id" "6909" + "plane" "(844 768 104) (844 768 96) (844 764 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28250" - "plane" "(624 1232 544) (608 1216 544) (664 1160 664)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6908" + "plane" "(768 764 96) (844 764 96) (844 768 96)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34449" + "id" "2375" side { - "id" "28261" - "plane" "(744 1080 544) (760 1096 544) (736 1120 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "49730" + "plane" "(844 764 100) (844 768 104) (852 768 104)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28260" - "plane" "(700 1156 664) (760 1096 544) (744 1080 544)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49729" + "plane" "(852 768 64) (844 768 64) (844 764 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28259" - "plane" "(736 1120 544) (760 1096 544) (700 1156 664)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49728" + "plane" "(848 764 100) (852 768 104) (852 768 64)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28258" - "plane" "(684 1140 664) (744 1080 544) (720 1104 544)" + "id" "49727" + "plane" "(852 768 104) (844 768 104) (844 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28257" - "plane" "(680 1176 664) (700 1156 664) (684 1140 664)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "49726" + "plane" "(844 764 100) (848 764 100) (848 764 64)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28256" - "plane" "(720 1104 544) (736 1120 544) (680 1176 664)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49725" + "plane" "(844 764 64) (844 768 64) (844 768 104)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34469" + "id" "2377" side { - "id" "28267" - "plane" "(644 1180 664) (660 1196 664) (680 1176 704)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6931" + "plane" "(948 764 100) (948 768 104) (956 768 104)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28266" - "plane" "(680 1176 704) (700 1156 664) (684 1140 664)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6930" + "plane" "(956 768 64) (948 768 64) (948 764 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28265" - "plane" "(680 1176 704) (660 1196 664) (700 1156 664)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6929" + "plane" "(952 764 100) (956 768 104) (956 768 64)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28263" - "plane" "(684 1140 664) (700 1156 664) (660 1196 664)" + "id" "6928" + "plane" "(956 768 104) (948 768 104) (948 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28262" - "plane" "(644 1180 664) (680 1176 704) (684 1140 664)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6927" + "plane" "(948 764 100) (952 764 100) (952 764 64)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6926" + "plane" "(948 764 64) (948 768 64) (948 768 104)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34486" + "id" "2378" side { - "id" "28285" - "plane" "(720 1224 708) (756 1260 708) (764 1252 708)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "id" "6937" + "plane" "(872 768 104) (948 768 104) (948 764 100)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28284" - "plane" "(764 1252 696) (756 1260 696) (720 1224 696)" + "id" "6936" + "plane" "(872 764 96) (872 768 96) (872 768 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28283" - "plane" "(720 1224 696) (756 1260 696) (756 1260 708)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6935" + "plane" "(872 768 104) (872 768 96) (948 768 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28282" - "plane" "(756 1260 696) (764 1252 696) (764 1252 708)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6934" + "plane" "(948 764 100) (948 764 96) (872 764 96)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28281" - "plane" "(728 1216 696) (720 1224 696) (720 1224 708)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6933" + "plane" "(948 768 104) (948 768 96) (948 764 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28280" - "plane" "(764 1252 696) (728 1216 696) (728 1216 708)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6932" + "plane" "(872 764 96) (948 764 96) (948 768 96)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34493" + "id" "2379" side { - "id" "28297" - "plane" "(716 1228 712) (752 1264 712) (768 1248 712)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "id" "49724" + "plane" "(864 768 104) (872 768 104) (872 764 100)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28296" - "plane" "(764 1252 708) (756 1260 708) (720 1224 708)" + "id" "49723" + "plane" "(868 764 64) (872 764 64) (872 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -40] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28295" - "plane" "(720 1224 708) (756 1260 708) (752 1264 712)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49722" + "plane" "(868 764 64) (864 768 64) (864 768 104)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28294" - "plane" "(756 1260 708) (764 1252 708) (768 1248 712)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49721" + "plane" "(872 768 104) (864 768 104) (864 768 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28293" - "plane" "(728 1216 708) (720 1224 708) (716 1228 712)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49720" + "plane" "(868 764 100) (872 764 100) (872 764 64)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28292" - "plane" "(732 1212 712) (768 1248 712) (764 1252 708)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "49719" + "plane" "(872 764 100) (872 768 104) (872 768 64)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34498" + "id" "2380" side { - "id" "28309" - "plane" "(600 1256 544) (992 1648 544) (1152 1488 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "6949" + "plane" "(952 764 92) (952 768 96) (968 768 96)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28308" - "plane" "(760 1096 64) (1152 1488 64) (992 1648 64)" + "id" "6948" + "plane" "(964 764 64) (968 768 64) (952 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28307" - "plane" "(600 1256 64) (992 1648 64) (992 1648 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6947" + "plane" "(964 764 92) (968 768 96) (968 768 64)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28306" - "plane" "(1152 1488 64) (760 1096 64) (760 1096 544)" + "id" "6946" + "plane" "(952 764 64) (952 768 64) (952 768 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28305" - "plane" "(992 1648 64) (1152 1488 64) (1152 1488 544)" + "id" "6945" + "plane" "(968 768 96) (952 768 96) (952 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28304" - "plane" "(760 1096 64) (600 1256 64) (600 1256 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6944" + "plane" "(952 764 92) (964 764 92) (964 764 64)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34532" + "id" "2383" side { - "id" "28327" - "plane" "(624 1232 432) (672 1184 432) (656 1168 432)" + "id" "6967" + "plane" "(968 780 116) (968 768 116) (732 768 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28326" - "plane" "(672 1184 192) (624 1232 192) (608 1216 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6966" + "plane" "(968 768 96) (968 780 96) (732 780 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28325" - "plane" "(624 1232 192) (672 1184 192) (672 1184 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6965" + "plane" "(968 768 116) (968 780 116) (968 780 96)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28324" - "plane" "(656 1168 192) (608 1216 192) (608 1216 432)" + "id" "6964" + "plane" "(732 780 116) (732 768 116) (732 768 96)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -152179,2552 +154766,2716 @@ world } side { - "id" "28323" - "plane" "(608 1216 192) (624 1232 192) (624 1232 432)" + "id" "6963" + "plane" "(968 780 116) (732 780 116) (732 780 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28322" - "plane" "(672 1184 192) (656 1168 192) (656 1168 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6962" + "plane" "(732 768 116) (968 768 116) (968 768 96)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34534" + "id" "2384" side { - "id" "28339" - "plane" "(552 1272 432) (568 1288 432) (624 1232 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6973" + "plane" "(872 776 128) (872 768 128) (864 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28338" - "plane" "(624 1232 64) (568 1288 64) (552 1272 64)" + "id" "6972" + "plane" "(872 768 124) (872 776 124) (864 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28337" - "plane" "(552 1272 64) (568 1288 64) (568 1288 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6971" + "plane" "(872 768 128) (872 776 128) (872 776 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28336" - "plane" "(568 1288 64) (624 1232 64) (624 1232 432)" + "id" "6970" + "plane" "(864 776 128) (864 768 128) (864 768 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28335" - "plane" "(608 1216 64) (552 1272 64) (552 1272 432)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6969" + "plane" "(872 776 128) (864 776 128) (864 776 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28334" - "plane" "(624 1232 64) (608 1216 64) (608 1216 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6968" + "plane" "(864 768 128) (872 768 128) (872 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34539" + "id" "2385" side { - "id" "28345" - "plane" "(672 1184 432) (704 1152 432) (688 1136 432)" + "id" "6979" + "plane" "(872 776 124) (872 768 124) (844 768 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28344" - "plane" "(704 1152 64) (672 1184 64) (656 1168 64)" + "id" "6978" + "plane" "(872 768 116) (872 776 116) (844 776 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28343" - "plane" "(672 1184 64) (704 1152 64) (704 1152 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6977" + "plane" "(872 768 124) (872 776 124) (872 776 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28342" - "plane" "(688 1136 64) (656 1168 64) (656 1168 432)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6976" + "plane" "(844 776 124) (844 768 124) (844 768 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28341" - "plane" "(656 1168 64) (672 1184 64) (672 1184 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6975" + "plane" "(872 776 124) (844 776 124) (844 776 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28340" - "plane" "(704 1152 64) (688 1136 64) (688 1136 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6974" + "plane" "(844 768 124) (872 768 124) (872 768 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34548" + "id" "2386" side { - "id" "28357" - "plane" "(704 1152 112) (768 1088 112) (752 1072 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6985" + "plane" "(852 776 128) (852 768 128) (844 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28356" - "plane" "(768 1088 64) (704 1152 64) (688 1136 64)" + "id" "6984" + "plane" "(852 768 124) (852 776 124) (844 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28355" - "plane" "(704 1152 64) (768 1088 64) (768 1088 112)" + "id" "6983" + "plane" "(852 768 128) (852 776 128) (852 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28354" - "plane" "(752 1072 64) (688 1136 64) (688 1136 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6982" + "plane" "(844 776 128) (844 768 128) (844 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28353" - "plane" "(688 1136 64) (704 1152 64) (704 1152 112)" + "id" "6981" + "plane" "(852 776 128) (844 776 128) (844 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28352" - "plane" "(768 1088 64) (752 1072 64) (752 1072 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6980" + "plane" "(844 768 128) (852 768 128) (852 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34549" + "id" "2396" side { - "id" "28363" - "plane" "(768 1088 432) (792 1064 432) (776 1048 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6992" + "plane" "(1264 776 120) (1328 776 120) (1328 768 120)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -128.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28362" - "plane" "(776 1048 64) (792 1064 64) (768 1088 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6991" + "plane" "(1264 766 116) (1328 766 116) (1328 776 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -128.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28361" - "plane" "(792 1064 64) (776 1048 64) (776 1048 432)" + "id" "6990" + "plane" "(1328 776 120) (1264 776 120) (1264 776 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28360" - "plane" "(768 1088 64) (792 1064 64) (792 1064 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6989" + "plane" "(1264 766 118) (1328 766 118) (1328 766 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -128.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28359" - "plane" "(776 1048 64) (752 1072 64) (752 1072 432)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6988" + "plane" "(1264 768 120) (1328 768 120) (1328 766 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -128.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28358" - "plane" "(752 1072 64) (768 1088 64) (768 1088 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6987" + "plane" "(1264 776 120) (1264 768 120) (1264 766 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -112.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6986" + "plane" "(1328 766 118) (1328 768 120) (1328 776 120)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -112.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2395" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34551" + "id" "2409" side { - "id" "28375" - "plane" "(704 1152 240) (768 1088 240) (752 1072 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6998" + "plane" "(864 776 136) (864 768 136) (852 768 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28374" - "plane" "(768 1088 192) (704 1152 192) (688 1136 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "6997" + "plane" "(864 768 124) (864 776 124) (852 776 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28373" - "plane" "(704 1152 192) (768 1088 192) (768 1088 240)" + "id" "6996" + "plane" "(864 768 136) (864 776 136) (864 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28372" - "plane" "(752 1072 192) (688 1136 192) (688 1136 240)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6995" + "plane" "(852 776 136) (852 768 136) (852 768 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28371" - "plane" "(688 1136 192) (704 1152 192) (704 1152 240)" + "id" "6994" + "plane" "(864 776 136) (852 776 136) (852 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28370" - "plane" "(768 1088 192) (752 1072 192) (752 1072 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "6993" + "plane" "(852 768 136) (864 768 136) (864 768 124)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34552" + "id" "2410" side { - "id" "28387" - "plane" "(704 1152 432) (768 1088 432) (752 1072 432)" + "id" "7005" + "plane" "(852 776 136) (852 768 136) (846 768 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28386" - "plane" "(768 1088 320) (704 1152 320) (688 1136 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7004" + "plane" "(846 768 128) (852 768 128) (852 776 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28385" - "plane" "(704 1152 320) (768 1088 320) (768 1088 432)" + "id" "7003" + "plane" "(852 768 136) (852 776 136) (852 776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28384" - "plane" "(752 1072 320) (688 1136 320) (688 1136 432)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7002" + "plane" "(844 776 136) (844 770 136) (844 770 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28383" - "plane" "(688 1136 320) (704 1152 320) (704 1152 432)" + "id" "7001" + "plane" "(852 776 136) (844 776 136) (844 776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28382" - "plane" "(768 1088 320) (752 1072 320) (752 1072 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7000" + "plane" "(846 768 136) (852 768 136) (852 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6999" + "plane" "(844 770 136) (846 768 136) (846 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34555" + "id" "2411" side { - "id" "28399" - "plane" "(704 1152 192) (768 1088 192) (760 1080 192)" + "id" "7012" + "plane" "(872 776 136) (872 770 136) (870 768 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28398" - "plane" "(768 1088 112) (704 1152 112) (696 1144 112)" + "id" "7011" + "plane" "(870 768 128) (872 770 128) (872 776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28397" - "plane" "(704 1152 112) (768 1088 112) (768 1088 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7010" + "plane" "(872 770 136) (872 776 136) (872 776 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28396" - "plane" "(760 1080 112) (696 1144 112) (696 1144 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7009" + "plane" "(864 776 136) (864 768 136) (864 768 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28395" - "plane" "(696 1144 112) (704 1152 112) (704 1152 192)" + "id" "7008" + "plane" "(872 776 136) (864 776 136) (864 776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28394" - "plane" "(768 1088 112) (760 1080 112) (760 1080 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7007" + "plane" "(864 768 136) (870 768 136) (870 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7006" + "plane" "(870 768 136) (872 770 136) (872 770 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34562" + "id" "2412" side { - "id" "28411" - "plane" "(704 1152 320) (768 1088 320) (760 1080 320)" + "id" "7020" + "plane" "(872 776 174) (872 770 174) (870 768 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28410" - "plane" "(768 1088 240) (704 1152 240) (696 1144 240)" + "id" "7019" + "plane" "(846 768 136) (870 768 136) (872 770 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28409" - "plane" "(704 1152 240) (768 1088 240) (768 1088 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7018" + "plane" "(872 770 174) (872 776 174) (872 776 136)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 0.663086] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28408" - "plane" "(760 1080 240) (696 1144 240) (696 1144 320)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7017" + "plane" "(844 776 174) (844 770 174) (844 770 136)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -400.656] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28407" - "plane" "(696 1144 240) (704 1152 240) (704 1152 320)" + "id" "7016" + "plane" "(872 776 174) (844 776 174) (844 776 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28406" - "plane" "(768 1088 240) (760 1080 240) (760 1080 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7015" + "plane" "(846 768 174) (870 768 174) (870 768 136)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7014" + "plane" "(844 770 174) (846 768 174) (846 768 136)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 0.707107 0 -507.023] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7013" + "plane" "(870 768 174) (872 770 174) (872 770 136)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 226.256] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34563" + "id" "2413" side { - "id" "28423" - "plane" "(688 1136 112) (752 1072 112) (744 1064 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7026" + "plane" "(952 776 236) (952 775 236) (872 775 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28422" - "plane" "(752 1072 104) (688 1136 104) (680 1128 104)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7025" + "plane" "(952 775 120) (952 776 120) (872 776 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28421" - "plane" "(688 1136 104) (752 1072 104) (752 1072 112)" + "id" "7024" + "plane" "(952 775 236) (952 776 236) (952 776 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28420" - "plane" "(744 1064 104) (680 1128 104) (680 1128 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7023" + "plane" "(872 776 236) (872 775 236) (872 775 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28419" - "plane" "(680 1128 104) (688 1136 104) (688 1136 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7022" + "plane" "(952 776 236) (872 776 236) (872 776 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28418" - "plane" "(752 1072 104) (744 1064 104) (744 1064 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7021" + "plane" "(872 775 236) (952 775 236) (952 775 120)" + "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" + "uaxis" "[-1 0 0 460.8] 0.15625" + "vaxis" "[0 0 -1 17.6552] 0.226563" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34566" + "id" "2414" side { - "id" "28435" - "plane" "(688 1136 240) (752 1072 240) (744 1064 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7032" + "plane" "(952 775 122) (952 773 122) (872 773 122)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28434" - "plane" "(752 1072 232) (688 1136 232) (680 1128 232)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7031" + "plane" "(952 773 120) (952 775 120) (872 775 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28433" - "plane" "(688 1136 232) (752 1072 232) (752 1072 240)" + "id" "7030" + "plane" "(952 773 122) (952 775 122) (952 775 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28432" - "plane" "(744 1064 232) (680 1128 232) (680 1128 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7029" + "plane" "(872 775 122) (872 773 122) (872 773 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28431" - "plane" "(680 1128 232) (688 1136 232) (688 1136 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7028" + "plane" "(952 775 122) (872 775 122) (872 775 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28430" - "plane" "(752 1072 232) (744 1064 232) (744 1064 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7027" + "plane" "(872 773 122) (952 773 122) (952 773 120)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "34567" + "id" "2415" side { - "id" "28447" - "plane" "(568 1288 64) (792 1064 64) (760 1032 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7038" + "plane" "(952 775 123) (952 774 123) (872 774 123)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28446" - "plane" "(792 1064 56) (568 1288 56) (536 1256 56)" + "id" "7037" + "plane" "(952 774 122) (952 775 122) (872 775 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28445" - "plane" "(568 1288 56) (792 1064 56) (792 1064 64)" + "id" "7036" + "plane" "(952 774 123) (952 775 123) (952 775 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28444" - "plane" "(760 1032 56) (536 1256 56) (536 1256 64)" + "id" "7035" + "plane" "(872 775 123) (872 774 123) (872 774 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28443" - "plane" "(536 1256 56) (568 1288 56) (568 1288 64)" + "id" "7034" + "plane" "(952 775 123) (872 775 123) (872 775 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "28442" - "plane" "(792 1064 56) (760 1032 56) (760 1032 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "7033" + "plane" "(872 774 123) (952 774 123) (952 774 122)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "217 230 0" - "groupid" "61486" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33768" + "id" "2416" side { - "id" "27696" - "plane" "(0 -2752 80) (0 -2720 80) (128 -2720 80)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7045" + "plane" "(952 775 125) (952 774 125) (872 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27695" - "plane" "(0 -2720 0) (0 -2752 0) (128 -2752 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7044" + "plane" "(952 773 123) (952 775 123) (872 775 123)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27694" - "plane" "(0 -2752 0) (0 -2720 0) (0 -2720 80)" + "id" "7043" + "plane" "(952 773 124) (952 774 125) (952 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -4.66016] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27693" - "plane" "(128 -2720 0) (128 -2752 0) (128 -2752 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7042" + "plane" "(872 775 125) (872 774 125) (872 773 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4.66016] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27692" - "plane" "(0 -2720 0) (128 -2720 0) (128 -2720 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7041" + "plane" "(952 775 125) (872 775 125) (872 775 123)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27691" - "plane" "(128 -2752 0) (0 -2752 0) (0 -2752 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7040" + "plane" "(872 773 124) (952 773 124) (952 773 123)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7039" + "plane" "(952 774 125) (952 773 124) (872 773 124)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[1 0 0 -144.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 252 129" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33785" + "id" "2417" side { - "id" "27720" - "plane" "(-576 -2752 160) (-576 -2432 216) (-480 -2432 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7053" + "plane" "(914 770 126) (910 770 126) (910 780 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27719" - "plane" "(-576 -2432 0) (-576 -2752 0) (-480 -2752 0)" + "id" "7052" + "plane" "(915 770 120) (915 780 120) (909 780 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27718" - "plane" "(-576 -2432 216) (-576 -2752 160) (-576 -2752 0)" + "id" "7051" + "plane" "(915 770 125) (915 780 125) (915 780 120)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7050" + "plane" "(909 780 125) (909 770 125) (909 770 120)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7049" + "plane" "(915 780 125) (914 780 126) (910 780 126)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27717" - "plane" "(-480 -2432 0) (-480 -2752 0) (-480 -2752 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7048" + "plane" "(909 770 125) (910 770 126) (914 770 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27716" - "plane" "(-576 -2432 0) (-480 -2432 0) (-480 -2432 216)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7047" + "plane" "(910 780 126) (910 770 126) (909 770 125)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27715" - "plane" "(-480 -2752 0) (-576 -2752 0) (-576 -2752 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7046" + "plane" "(914 770 126) (914 780 126) (915 780 125)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 252 129" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33790" + "id" "2418" side { - "id" "27732" - "plane" "(-384 -2752 160) (-384 -2432 216) (-352 -2432 216)" + "id" "7061" + "plane" "(914 780 228) (914 772 228) (913 771 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27731" - "plane" "(-384 -2432 0) (-384 -2752 0) (-352 -2752 0)" + "id" "7060" + "plane" "(910 772 126) (911 771 126) (913 771 126)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27730" - "plane" "(-384 -2432 216) (-384 -2752 160) (-384 -2752 0)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7059" + "plane" "(914 780 228) (910 780 228) (910 780 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 0 -1 45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27729" - "plane" "(-352 -2432 0) (-352 -2752 0) (-352 -2752 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7058" + "plane" "(910 780 228) (910 772 228) (910 772 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27728" - "plane" "(-384 -2432 0) (-352 -2432 0) (-352 -2432 216)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7057" + "plane" "(914 772 228) (914 780 228) (914 780 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27727" - "plane" "(-352 -2752 0) (-384 -2752 0) (-384 -2752 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7056" + "plane" "(913 771 228) (914 772 228) (914 772 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7055" + "plane" "(910 772 228) (911 771 228) (911 771 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7054" + "plane" "(911 771 228) (913 771 228) (913 771 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 252 129" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33791" + "id" "2419" side { - "id" "27744" - "plane" "(-480 -2752 160) (-480 -2432 216) (-384 -2432 216)" + "id" "7067" + "plane" "(910 775 192) (910 774 192) (908 774 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27743" - "plane" "(-480 -2432 128) (-480 -2752 128) (-384 -2752 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7066" + "plane" "(910 774 125) (910 775 125) (908 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27742" - "plane" "(-480 -2432 216) (-480 -2752 160) (-480 -2752 128)" + "id" "7065" + "plane" "(910 774 192) (910 775 192) (910 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27741" - "plane" "(-384 -2432 128) (-384 -2752 128) (-384 -2752 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7064" + "plane" "(908 775 192) (908 774 192) (908 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27740" - "plane" "(-480 -2432 128) (-384 -2432 128) (-384 -2432 216)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7063" + "plane" "(910 775 192) (908 775 192) (908 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27739" - "plane" "(-384 -2752 128) (-480 -2752 128) (-480 -2752 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7062" + "plane" "(908 774 192) (910 774 192) (910 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 252 129" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33794" + "id" "2420" side { - "id" "27756" - "plane" "(-480 -2752 32) (-480 -2432 32) (-384 -2432 32)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7073" + "plane" "(874 775 231) (874 774 231) (872 774 231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27755" - "plane" "(-480 -2432 0) (-480 -2752 0) (-384 -2752 0)" + "id" "7072" + "plane" "(874 774 125) (874 775 125) (872 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27754" - "plane" "(-480 -2752 0) (-480 -2432 0) (-480 -2432 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7071" + "plane" "(874 774 231) (874 775 231) (874 775 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27753" - "plane" "(-384 -2432 0) (-384 -2752 0) (-384 -2752 32)" + "id" "7070" + "plane" "(872 775 231) (872 774 231) (872 774 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27752" - "plane" "(-480 -2432 0) (-384 -2432 0) (-384 -2432 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7069" + "plane" "(874 775 231) (872 775 231) (872 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27751" - "plane" "(-384 -2752 0) (-480 -2752 0) (-480 -2752 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7068" + "plane" "(872 774 231) (874 774 231) (874 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 252 129" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33796" + "id" "2421" side { - "id" "27768" - "plane" "(-480 -2736 128) (-480 -2448 128) (-384 -2448 128)" + "id" "7079" + "plane" "(916 775 192) (916 774 192) (914 774 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27767" - "plane" "(-480 -2448 32) (-480 -2736 32) (-384 -2736 32)" + "id" "7078" + "plane" "(916 774 125) (916 775 125) (914 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27766" - "plane" "(-480 -2736 32) (-480 -2448 32) (-480 -2448 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7077" + "plane" "(916 774 192) (916 775 192) (916 775 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27765" - "plane" "(-384 -2448 32) (-384 -2736 32) (-384 -2736 128)" + "id" "7076" + "plane" "(914 775 192) (914 774 192) (914 774 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27764" - "plane" "(-480 -2448 32) (-384 -2448 32) (-384 -2448 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7075" + "plane" "(916 775 192) (914 775 192) (914 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27763" - "plane" "(-384 -2736 32) (-480 -2736 32) (-480 -2736 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7074" + "plane" "(914 774 192) (916 774 192) (916 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 146 131" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33804" + "id" "2422" side { - "id" "27780" - "plane" "(-576 -2752 168) (-576 -2432 224) (-352 -2432 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7085" + "plane" "(952 775 231) (952 774 231) (950 774 231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8.69727] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27779" - "plane" "(-576 -2432 216) (-576 -2752 160) (-352 -2752 160)" + "id" "7084" + "plane" "(952 774 125) (952 775 125) (950 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 8.69727] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27778" - "plane" "(-576 -2752 160) (-576 -2432 216) (-576 -2432 224)" + "id" "7083" + "plane" "(952 774 231) (952 775 231) (952 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27777" - "plane" "(-352 -2432 216) (-352 -2752 160) (-352 -2752 168)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7082" + "plane" "(950 775 231) (950 774 231) (950 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27776" - "plane" "(-576 -2432 216) (-352 -2432 216) (-352 -2432 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7081" + "plane" "(952 775 231) (950 775 231) (950 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8.69727] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27775" - "plane" "(-352 -2752 160) (-576 -2752 160) (-576 -2752 168)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7080" + "plane" "(950 774 231) (952 774 231) (952 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 162 123" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33865" + "id" "2423" side { - "id" "27902" - "plane" "(-352 -2496 256) (-352 -2432 256) (0 -2432 256)" + "id" "7091" + "plane" "(952 775 191) (952 773 191) (872 773 191)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27901" - "plane" "(-352 -2432 0) (-352 -2496 0) (0 -2496 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7090" + "plane" "(952 773 189) (952 775 189) (872 775 189)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27900" - "plane" "(-352 -2496 0) (-352 -2432 0) (-352 -2432 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7089" + "plane" "(952 773 191) (952 775 191) (952 775 189)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27899" - "plane" "(0 -2432 0) (0 -2496 0) (0 -2496 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7088" + "plane" "(872 775 191) (872 773 191) (872 773 189)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27898" - "plane" "(-352 -2432 0) (0 -2432 0) (0 -2432 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7087" + "plane" "(952 775 191) (872 775 191) (872 775 189)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27897" - "plane" "(0 -2496 0) (-352 -2496 0) (-352 -2496 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7086" + "plane" "(872 773 191) (952 773 191) (952 773 189)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 252 129" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33866" + "id" "2424" side { - "id" "27914" - "plane" "(-352 -2688 256) (-352 -2624 256) (0 -2624 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7097" + "plane" "(960 776 128) (960 768 128) (952 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27913" - "plane" "(-352 -2624 176) (-352 -2688 176) (0 -2688 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7096" + "plane" "(960 768 124) (960 776 124) (952 776 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27912" - "plane" "(-352 -2688 176) (-352 -2624 176) (-352 -2624 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7095" + "plane" "(952 776 128) (952 768 128) (952 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27911" - "plane" "(0 -2624 176) (0 -2688 176) (0 -2688 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7094" + "plane" "(960 768 128) (960 776 128) (960 776 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27910" - "plane" "(-352 -2624 176) (0 -2624 176) (0 -2624 256)" + "id" "7093" + "plane" "(960 776 128) (952 776 128) (952 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27909" - "plane" "(0 -2688 176) (-352 -2688 176) (-352 -2688 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7092" + "plane" "(952 768 128) (960 768 128) (960 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 252 129" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33868" + "id" "2425" side { - "id" "27926" - "plane" "(-16 -2688 64) (-16 -2624 64) (0 -2624 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7104" + "plane" "(960 776 136) (960 768 136) (954 768 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27925" - "plane" "(-16 -2624 -16) (-16 -2688 -16) (0 -2688 -16)" + "id" "7103" + "plane" "(954 768 128) (960 768 128) (960 776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27924" - "plane" "(-16 -2688 -16) (-16 -2624 -16) (-16 -2624 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7102" + "plane" "(952 776 136) (952 770 136) (952 770 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27923" - "plane" "(0 -2624 -16) (0 -2688 -16) (0 -2688 64)" + "id" "7101" + "plane" "(960 768 136) (960 776 136) (960 776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27922" - "plane" "(-16 -2624 -16) (0 -2624 -16) (0 -2624 64)" + "id" "7100" + "plane" "(960 776 136) (952 776 136) (952 776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27921" - "plane" "(0 -2688 -16) (-16 -2688 -16) (-16 -2688 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7099" + "plane" "(954 768 136) (960 768 136) (960 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7098" + "plane" "(952 770 136) (954 768 136) (954 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 252 129" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33870" + "id" "2426" side { - "id" "27938" - "plane" "(-32 -2688 176) (-32 -2624 176) (-16 -2624 176)" + "id" "7110" + "plane" "(844 776 236) (844 775 236) (764 775 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27937" - "plane" "(-32 -2624 64) (-32 -2688 64) (-16 -2688 64)" + "id" "7109" + "plane" "(844 775 120) (844 776 120) (764 776 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27936" - "plane" "(-32 -2688 64) (-32 -2624 64) (-32 -2624 176)" + "id" "7108" + "plane" "(844 775 236) (844 776 236) (844 776 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27935" - "plane" "(-16 -2624 64) (-16 -2688 64) (-16 -2688 176)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7107" + "plane" "(764 776 236) (764 775 236) (764 775 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27934" - "plane" "(-32 -2624 64) (-16 -2624 64) (-16 -2624 176)" + "id" "7106" + "plane" "(844 776 236) (764 776 236) (764 776 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27933" - "plane" "(-16 -2688 64) (-32 -2688 64) (-32 -2688 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7105" + "plane" "(764 775 236) (844 775 236) (844 775 120)" + "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" + "uaxis" "[-1 0 0 281.6] 0.15625" + "vaxis" "[0 0 -1 17.6552] 0.226563" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 134 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33877" + "id" "2427" side { - "id" "27950" - "plane" "(-32 -2624 256) (-32 -2592 256) (0 -2592 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7118" + "plane" "(806 770 126) (802 770 126) (802 780 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27949" - "plane" "(-32 -2592 0) (-32 -2624 0) (0 -2624 0)" + "id" "7117" + "plane" "(807 770 120) (807 780 120) (801 780 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27948" - "plane" "(-32 -2624 0) (-32 -2592 0) (-32 -2592 256)" + "id" "7116" + "plane" "(807 770 125) (807 780 125) (807 780 120)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7115" + "plane" "(801 780 125) (801 770 125) (801 770 120)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7114" + "plane" "(807 780 125) (806 780 126) (802 780 126)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27947" - "plane" "(0 -2592 0) (0 -2624 0) (0 -2624 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7113" + "plane" "(801 770 125) (802 770 126) (806 770 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27946" - "plane" "(-32 -2592 0) (0 -2592 0) (0 -2592 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7112" + "plane" "(802 780 126) (802 770 126) (801 770 125)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27945" - "plane" "(0 -2624 0) (-32 -2624 0) (-32 -2624 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7111" + "plane" "(806 770 126) (806 780 126) (807 780 125)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 252 129" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33880" + "id" "2428" side { - "id" "27962" - "plane" "(-32 -2592 96) (-32 -2496 96) (0 -2496 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7126" + "plane" "(806 780 228) (806 772 228) (805 771 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27961" - "plane" "(-32 -2496 0) (-32 -2592 0) (0 -2592 0)" + "id" "7125" + "plane" "(802 772 126) (803 771 126) (805 771 126)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27960" - "plane" "(-32 -2592 0) (-32 -2496 0) (-32 -2496 96)" + "id" "7124" + "plane" "(806 780 228) (802 780 228) (802 780 126)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 0 -1 45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27959" - "plane" "(0 -2496 0) (0 -2592 0) (0 -2592 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7123" + "plane" "(802 780 228) (802 772 228) (802 772 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27958" - "plane" "(-32 -2496 0) (0 -2496 0) (0 -2496 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7122" + "plane" "(806 772 228) (806 780 228) (806 780 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27957" - "plane" "(0 -2592 0) (-32 -2592 0) (-32 -2592 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7121" + "plane" "(805 771 228) (806 772 228) (806 772 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7120" + "plane" "(802 772 228) (803 771 228) (803 771 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7119" + "plane" "(803 771 228) (805 771 228) (805 771 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 252 129" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33883" + "id" "2429" side { - "id" "27974" - "plane" "(-32 -2592 240) (-32 -2496 240) (0 -2496 240)" + "id" "7132" + "plane" "(802 775 192) (802 774 192) (800 774 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27973" - "plane" "(-32 -2496 176) (-32 -2592 176) (0 -2592 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7131" + "plane" "(802 774 125) (802 775 125) (800 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27972" - "plane" "(-32 -2592 176) (-32 -2496 176) (-32 -2496 240)" + "id" "7130" + "plane" "(802 774 192) (802 775 192) (802 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27971" - "plane" "(0 -2496 176) (0 -2592 176) (0 -2592 240)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7129" + "plane" "(800 775 192) (800 774 192) (800 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27970" - "plane" "(-32 -2496 176) (0 -2496 176) (0 -2496 240)" + "id" "7128" + "plane" "(802 775 192) (800 775 192) (800 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27969" - "plane" "(0 -2592 176) (-32 -2592 176) (-32 -2592 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7127" + "plane" "(800 774 192) (802 774 192) (802 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 252 129" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33885" + "id" "2430" side { - "id" "27986" - "plane" "(-32 -2592 176) (-32 -2496 176) (-16 -2496 176)" + "id" "7138" + "plane" "(808 775 192) (808 774 192) (806 774 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 8.69727] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27985" - "plane" "(-32 -2496 96) (-32 -2592 96) (-16 -2592 96)" + "id" "7137" + "plane" "(808 774 125) (808 775 125) (806 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 8.69727] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27984" - "plane" "(-32 -2592 96) (-32 -2496 96) (-32 -2496 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7136" + "plane" "(808 774 192) (808 775 192) (808 775 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27983" - "plane" "(-16 -2496 96) (-16 -2592 96) (-16 -2592 176)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7135" + "plane" "(806 775 192) (806 774 192) (806 774 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27982" - "plane" "(-32 -2496 96) (-16 -2496 96) (-16 -2496 176)" + "id" "7134" + "plane" "(808 775 192) (806 775 192) (806 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 8.69727] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27981" - "plane" "(-16 -2592 96) (-32 -2592 96) (-32 -2592 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7133" + "plane" "(806 774 192) (808 774 192) (808 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 134 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33970" + "id" "2431" side { - "id" "27998" - "plane" "(-352 -2624 256) (-352 -2496 256) (-320 -2496 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7145" + "plane" "(844 775 125) (844 774 125) (764 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27997" - "plane" "(-352 -2496 176) (-352 -2624 176) (-320 -2624 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7144" + "plane" "(844 773 123) (844 775 123) (764 775 123)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27996" - "plane" "(-352 -2624 176) (-352 -2496 176) (-352 -2496 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7143" + "plane" "(844 773 124) (844 774 125) (844 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4.66016] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27995" - "plane" "(-320 -2496 176) (-320 -2624 176) (-320 -2624 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7142" + "plane" "(764 775 125) (764 774 125) (764 773 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4.66016] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27994" - "plane" "(-352 -2496 176) (-320 -2496 176) (-320 -2496 256)" + "id" "7141" + "plane" "(844 775 125) (764 775 125) (764 775 123)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27993" - "plane" "(-320 -2624 176) (-352 -2624 176) (-352 -2624 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7140" + "plane" "(764 773 124) (844 773 124) (844 773 123)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7139" + "plane" "(844 774 125) (844 773 124) (764 773 124)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[1 0 0 -144.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 252 129" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "33452" + "id" "2432" side { - "id" "27679" - "plane" "(-352 -2752 256) (-352 -2688 256) (0 -2688 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7151" + "plane" "(844 775 122) (844 773 122) (764 773 122)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27680" - "plane" "(-352 -2688 0) (-352 -2752 0) (0 -2752 0)" + "id" "7150" + "plane" "(844 773 120) (844 775 120) (764 775 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27681" - "plane" "(-352 -2752 0) (-352 -2688 0) (-352 -2688 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7149" + "plane" "(844 773 122) (844 775 122) (844 775 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27682" - "plane" "(0 -2688 0) (0 -2752 0) (0 -2752 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7148" + "plane" "(764 775 122) (764 773 122) (764 773 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27683" - "plane" "(-352 -2688 0) (0 -2688 0) (0 -2688 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7147" + "plane" "(844 775 122) (764 775 122) (764 775 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27684" - "plane" "(0 -2752 0) (-352 -2752 0) (-352 -2752 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7146" + "plane" "(764 773 122) (844 773 122) (844 773 120)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 252 129" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30219" + "id" "2433" side { - "id" "24228" - "plane" "(-64 832 192) (-32 848 192) (-16 824 192)" + "id" "7157" + "plane" "(844 775 123) (844 774 123) (764 774 123)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24227" - "plane" "(-48 808 176) (-16 824 184) (-32 848 184)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7156" + "plane" "(844 774 122) (844 775 122) (764 775 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24226" - "plane" "(-64 832 176) (-32 848 184) (-32 848 192)" + "id" "7155" + "plane" "(844 774 123) (844 775 123) (844 775 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24225" - "plane" "(-48 808 192) (-16 824 192) (-16 824 184)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7154" + "plane" "(764 775 123) (764 774 123) (764 774 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24224" - "plane" "(-48 808 176) (-64 832 176) (-64 832 192)" + "id" "7153" + "plane" "(844 775 123) (764 775 123) (764 775 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24223" - "plane" "(-32 848 184) (-16 824 184) (-16 824 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7152" + "plane" "(764 774 123) (844 774 123) (844 774 122)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30220" + "id" "2434" side { - "id" "24234" - "plane" "(16 840 192) (-16 824 192) (-32 847.99 192)" + "id" "7163" + "plane" "(766 775 231) (766 774 231) (764 774 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24233" - "plane" "(0 864 176) (-32 848 184) (-16 824 184)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7162" + "plane" "(766 774 125) (766 775 125) (764 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24232" - "plane" "(0 864 192) (-32 848 192) (-32 848 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7161" + "plane" "(766 774 231) (766 775 231) (766 775 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24231" - "plane" "(16 840 176) (-16 824 184) (-16 824 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7160" + "plane" "(764 775 231) (764 774 231) (764 774 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24230" - "plane" "(0 864 176) (16 840 176) (16 840 192)" + "id" "7159" + "plane" "(766 775 231) (764 775 231) (764 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24229" - "plane" "(-16 824 184) (-32 848 184) (-32 848 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7158" + "plane" "(764 774 231) (766 774 231) (766 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30224" + "id" "2435" side { - "id" "24288" - "plane" "(-64 832 384) (0 864 384) (16 840 384)" + "id" "7169" + "plane" "(844 775 191) (844 773 191) (764 773 191)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24287" - "plane" "(-48 808 352) (16 840 352) (0 864 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7168" + "plane" "(844 773 189) (844 775 189) (764 775 189)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24286" - "plane" "(0 864 384) (-64 832 384) (-64 832 352)" + "id" "7167" + "plane" "(844 773 191) (844 775 191) (844 775 189)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24285" - "plane" "(-48 808 384) (16 840 384) (16 840 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7166" + "plane" "(764 775 191) (764 773 191) (764 773 189)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24284" - "plane" "(-64 832 384) (-48 808 384) (-48 808 352)" + "id" "7165" + "plane" "(844 775 191) (764 775 191) (764 775 189)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24283" - "plane" "(16 840 384) (0 864 384) (0 864 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7164" + "plane" "(764 773 191) (844 773 191) (844 773 189)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30225" + "id" "2436" side { - "id" "24294" - "plane" "(48 856 384) (32 880 384) (96 912 384)" + "id" "7175" + "plane" "(844 775 231) (844 774 231) (842 774 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 24.6973] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24293" - "plane" "(32 880 352) (48 856 352) (112 888 352)" + "id" "7174" + "plane" "(844 774 125) (844 775 125) (842 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 24.6973] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24292" - "plane" "(96 912 352) (96 912 384) (32 880 384)" + "id" "7173" + "plane" "(844 774 231) (844 775 231) (844 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24291" - "plane" "(48 856 352) (48 856 384) (112 888 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7172" + "plane" "(842 775 231) (842 774 231) (842 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24290" - "plane" "(32 880 352) (32 880 384) (48 856 384)" + "id" "7171" + "plane" "(844 775 231) (842 775 231) (842 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 24.6973] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24289" - "plane" "(112 888 352) (112 888 384) (96 912 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7170" + "plane" "(842 774 231) (844 774 231) (844 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30226" + "id" "2437" side { - "id" "24300" - "plane" "(32 880 384) (48 856 384) (16 840 384)" + "id" "7181" + "plane" "(764 780 124) (764 768 124) (732 768 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24299" - "plane" "(48 856 256) (32 880 256) (0 864 256)" + "id" "7180" + "plane" "(764 768 116) (764 780 116) (732 780 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24298" - "plane" "(48 856 256) (48 856 384) (32 880 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7179" + "plane" "(764 768 124) (764 780 124) (764 780 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24297" - "plane" "(32 880 256) (32 880 384) (0 864 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "7178" + "plane" "(732 780 124) (732 768 124) (732 768 116)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -154732,219 +157483,230 @@ world } side { - "id" "24296" - "plane" "(16 840 256) (16 840 384) (48 856 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7177" + "plane" "(764 780 124) (732 780 124) (732 780 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24295" - "plane" "(0 864 256) (0 864 384) (16 840 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7176" + "plane" "(732 768 124) (764 768 124) (764 768 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30227" + "id" "2438" side { - "id" "24306" - "plane" "(16 840 352) (-16 824 352) (-32 847.99 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7187" + "plane" "(764 776 128) (764 768 128) (756 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24305" - "plane" "(0 864 336) (-32 848 344) (-16 824 344)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7186" + "plane" "(764 768 124) (764 776 124) (756 776 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24304" - "plane" "(0 864 352) (-32 848 352) (-32 848 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7185" + "plane" "(764 768 128) (764 776 128) (764 776 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24303" - "plane" "(16 840 336) (-16 824 344) (-16 824 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7184" + "plane" "(756 776 128) (756 768 128) (756 768 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24302" - "plane" "(0 864 336) (16 840 336) (16 840 352)" + "id" "7183" + "plane" "(764 776 128) (756 776 128) (756 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24301" - "plane" "(-16 824 344) (-32 848 344) (-32 848 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7182" + "plane" "(756 768 128) (764 768 128) (764 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30228" + "id" "2439" side { - "id" "24312" - "plane" "(-64 832 352) (-32 848 352) (-16 824 352)" + "id" "7194" + "plane" "(764 776 136) (764 770 136) (762 768 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24311" - "plane" "(-48 808 336) (-16 824 344) (-32 848 344)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7193" + "plane" "(762 768 128) (764 770 128) (764 776 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24310" - "plane" "(-64 832 336) (-32 848 344) (-32 848 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7192" + "plane" "(764 770 136) (764 776 136) (764 776 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24309" - "plane" "(-48 808 352) (-16 824 352) (-16 824 344)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7191" + "plane" "(756 776 136) (756 768 136) (756 768 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24308" - "plane" "(-48 808 336) (-64 832 336) (-64 832 352)" + "id" "7190" + "plane" "(764 776 136) (756 776 136) (756 776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24307" - "plane" "(-32 848 344) (-16 824 344) (-16 824 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7189" + "plane" "(756 768 136) (762 768 136) (762 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7188" + "plane" "(762 768 136) (764 770 136) (764 770 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30229" + "id" "2440" side { - "id" "24318" - "plane" "(112 888 352) (80 872 352) (64 895.99 352)" + "id" "7201" + "plane" "(764 776 174) (764 770 174) (762 768 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24317" - "plane" "(96 912 336) (64 896 344) (80 872 344)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7200" + "plane" "(762 768 136) (764 770 136) (764 776 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24316" - "plane" "(96 912 352) (64 896 352) (64 896 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "7199" + "plane" "(732 776 174) (732 768 174) (732 768 136)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -154952,76 +157714,87 @@ world } side { - "id" "24315" - "plane" "(112 888 336) (80 872 344) (80 872 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7198" + "plane" "(764 770 174) (764 776 174) (764 776 136)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24314" - "plane" "(96 912 336) (112 888 336) (112 888 352)" + "id" "7197" + "plane" "(764 776 174) (732 776 174) (732 776 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24313" - "plane" "(80 872 344) (64 896 344) (64 896 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7196" + "plane" "(732 768 174) (762 768 174) (762 768 136)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7195" + "plane" "(762 768 174) (764 770 174) (764 770 136)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30230" + "id" "2441" side { - "id" "24324" - "plane" "(32 880 352) (64 896 352) (80 872 352)" + "id" "7207" + "plane" "(756 776 136) (756 768 136) (732 768 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24323" - "plane" "(48 856 336) (80 872 344) (64 896 344)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7206" + "plane" "(756 768 124) (756 776 124) (732 776 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24322" - "plane" "(32 880 336) (64 896 344) (64 896 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "7205" + "plane" "(732 776 136) (732 768 136) (732 768 124)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -155029,5399 +157802,5839 @@ world } side { - "id" "24321" - "plane" "(48 856 352) (80 872 352) (80 872 344)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7204" + "plane" "(756 768 136) (756 776 136) (756 776 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24320" - "plane" "(48 856 336) (32 880 336) (32 880 352)" + "id" "7203" + "plane" "(756 776 136) (732 776 136) (732 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24319" - "plane" "(64 896 344) (80 872 344) (80 872 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7202" + "plane" "(732 768 136) (756 768 136) (756 768 124)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30231" + "id" "2442" side { - "id" "24330" - "plane" "(112 920 384) (128 896 384) (112 888 384)" + "id" "7213" + "plane" "(952 776 244) (952 768 244) (764 768 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24329" - "plane" "(128 896 256) (112 920 256) (96 912 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7212" + "plane" "(952 768 236) (952 776 236) (764 776 236)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24328" - "plane" "(128 896 256) (128 896 384) (112 920 384)" + "id" "7211" + "plane" "(952 768 244) (952 776 244) (952 776 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24327" - "plane" "(112 920 256) (112 920 384) (96 912 384)" + "id" "7210" + "plane" "(764 776 244) (764 768 244) (764 768 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24326" - "plane" "(112 888 256) (112 888 384) (128 896 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7209" + "plane" "(952 776 244) (764 776 244) (764 776 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24325" - "plane" "(96 912 256) (96 912 384) (112 888 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7208" + "plane" "(764 768 244) (952 768 244) (952 768 236)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 429.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30232" + "id" "2443" side { - "id" "24342" - "plane" "(112 920 256) (128 896 256) (-48 808 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7219" + "plane" "(872 768 186) (872 776 186) (844 776 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24341" - "plane" "(128 896 240) (112 920 240) (-64 832 240)" + "id" "7218" + "plane" "(872 776 194) (872 768 194) (844 768 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24340" - "plane" "(128 896 240) (128 896 256) (112 920 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7217" + "plane" "(872 768 194) (872 776 194) (872 776 186)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24339" - "plane" "(112 920 240) (112 920 256) (-64 832 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7216" + "plane" "(844 776 194) (844 768 194) (844 768 186)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24338" - "plane" "(-48 808 240) (-48 808 256) (128 896 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7215" + "plane" "(872 776 194) (844 776 194) (844 776 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -13.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24337" - "plane" "(-64 832 240) (-64 832 256) (-48 808 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7214" + "plane" "(844 768 194) (872 768 194) (872 768 186)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30243" + "id" "2444" side { - "id" "37338" - "plane" "(-128 832 400) (128 960 400) (128 864 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7225" + "plane" "(872 768 182) (872 776 182) (864 776 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37337" - "plane" "(-128 752 384) (128 880 384) (128 960 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7224" + "plane" "(872 776 186) (872 768 186) (864 768 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37336" - "plane" "(-128 832 384) (-128 832 400) (-128 736 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7223" + "plane" "(872 768 186) (872 776 186) (872 776 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37335" - "plane" "(128 880 384) (128 864 400) (128 960 400)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7222" + "plane" "(864 776 186) (864 768 186) (864 768 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37334" - "plane" "(128 960 384) (128 960 400) (-128 832 400)" + "id" "7221" + "plane" "(872 776 186) (864 776 186) (864 776 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37333" - "plane" "(-128 752 384) (-128 736 400) (128 864 400)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7220" + "plane" "(864 768 186) (872 768 186) (872 768 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 250 115" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30245" + "id" "2445" side { - "id" "37343" - "plane" "(-128 752 400) (128 880 400) (128 1008 400)" + "id" "7232" + "plane" "(870 768 174) (872 770 174) (872 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37342" - "plane" "(-128 880 400) (-128 880 528) (-128 752 400)" + "id" "7231" + "plane" "(872 776 182) (872 770 182) (870 768 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37341" - "plane" "(128 1008 400) (128 880 400) (128 1008 528)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7230" + "plane" "(872 770 182) (872 776 182) (872 776 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37340" - "plane" "(-128 880 400) (128 1008 400) (128 1008 528)" + "id" "7229" + "plane" "(864 776 182) (864 768 182) (864 768 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37339" - "plane" "(128 880 400) (-128 752 400) (-128 880 528)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7228" + "plane" "(872 776 182) (864 776 182) (864 776 174)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7227" + "plane" "(864 768 182) (870 768 182) (870 768 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7226" + "plane" "(870 768 182) (872 770 182) (872 770 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30247" + "id" "2446" side { - "id" "24388" - "plane" "(-384 784 192) (-384 832 192) (-288 832 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7238" + "plane" "(852 768 182) (852 776 182) (844 776 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24387" - "plane" "(-384 832 96) (-384 784 96) (-288 784 96)" + "id" "7237" + "plane" "(852 776 186) (852 768 186) (844 768 186)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24386" - "plane" "(-384 784 96) (-384 832 96) (-384 832 192)" + "id" "7236" + "plane" "(852 768 186) (852 776 186) (852 776 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24385" - "plane" "(-288 832 96) (-288 784 96) (-288 784 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7235" + "plane" "(844 776 186) (844 768 186) (844 768 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24384" - "plane" "(-384 832 96) (-288 832 96) (-288 832 192)" + "id" "7234" + "plane" "(852 776 186) (844 776 186) (844 776 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24383" - "plane" "(-288 784 96) (-384 784 96) (-384 784 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7233" + "plane" "(844 768 186) (852 768 186) (852 768 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 195 204" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30255" + "id" "2447" side { - "id" "24400" - "plane" "(-224 784 192) (-224 832 192) (-128 832 192)" + "id" "7245" + "plane" "(846 768 174) (852 768 174) (852 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24399" - "plane" "(-224 832 96) (-224 784 96) (-128 784 96)" + "id" "7244" + "plane" "(852 776 182) (852 768 182) (846 768 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24398" - "plane" "(-224 784 96) (-224 832 96) (-224 832 192)" + "id" "7243" + "plane" "(852 768 182) (852 776 182) (852 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24397" - "plane" "(-128 832 96) (-128 784 96) (-128 784 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7242" + "plane" "(844 776 182) (844 770 182) (844 770 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24396" - "plane" "(-224 832 96) (-128 832 96) (-128 832 192)" + "id" "7241" + "plane" "(852 776 182) (844 776 182) (844 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24395" - "plane" "(-128 784 96) (-224 784 96) (-224 784 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7240" + "plane" "(846 768 182) (852 768 182) (852 768 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7239" + "plane" "(844 770 182) (846 768 182) (846 768 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 195 204" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30256" + "id" "2448" side { - "id" "24418" - "plane" "(-224 784 352) (-224 832 352) (-128 832 352)" + "id" "7251" + "plane" "(864 768 174) (864 776 174) (852 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24417" - "plane" "(-224 832 256) (-224 784 256) (-128 784 256)" + "id" "7250" + "plane" "(864 776 186) (864 768 186) (852 768 186)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24416" - "plane" "(-224 784 256) (-224 832 256) (-224 832 352)" + "id" "7249" + "plane" "(864 768 186) (864 776 186) (864 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24415" - "plane" "(-128 832 256) (-128 784 256) (-128 784 352)" + "id" "7248" + "plane" "(852 776 186) (852 768 186) (852 768 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24414" - "plane" "(-224 832 256) (-128 832 256) (-128 832 352)" + "id" "7247" + "plane" "(864 776 186) (852 776 186) (852 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24413" - "plane" "(-128 784 256) (-224 784 256) (-224 784 352)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7246" + "plane" "(852 768 186) (864 768 186) (864 768 174)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 195 204" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30257" + "id" "2449" side { - "id" "24424" - "plane" "(-384 784 352) (-384 832 352) (-288 832 352)" + "id" "7258" + "plane" "(762 768 174) (764 770 174) (764 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24423" - "plane" "(-384 832 256) (-384 784 256) (-288 784 256)" + "id" "7257" + "plane" "(764 776 182) (764 770 182) (762 768 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24422" - "plane" "(-384 784 256) (-384 832 256) (-384 832 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7256" + "plane" "(764 770 182) (764 776 182) (764 776 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24421" - "plane" "(-288 832 256) (-288 784 256) (-288 784 352)" + "id" "7255" + "plane" "(756 776 182) (756 768 182) (756 768 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24420" - "plane" "(-384 832 256) (-288 832 256) (-288 832 352)" + "id" "7254" + "plane" "(764 776 182) (756 776 182) (756 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24419" - "plane" "(-288 784 256) (-384 784 256) (-384 784 352)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7253" + "plane" "(756 768 182) (762 768 182) (762 768 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7252" + "plane" "(762 768 182) (764 770 182) (764 770 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 195 204" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30258" + "id" "2450" side { - "id" "24436" - "plane" "(-544 784 352) (-544 832 352) (-448 832 352)" + "id" "7264" + "plane" "(756 768 174) (756 776 174) (732 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24435" - "plane" "(-544 832 256) (-544 784 256) (-448 784 256)" + "id" "7263" + "plane" "(756 776 202) (756 768 202) (732 768 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24434" - "plane" "(-544 784 256) (-544 832 256) (-544 832 352)" - "material" "TOOLS/TOOLSNODRAW" + "id" "7262" + "plane" "(732 776 202) (732 768 202) (732 768 174)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24433" - "plane" "(-448 832 256) (-448 784 256) (-448 784 352)" + "id" "7261" + "plane" "(756 768 202) (756 776 202) (756 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24432" - "plane" "(-544 832 256) (-448 832 256) (-448 832 352)" + "id" "7260" + "plane" "(756 776 202) (732 776 202) (732 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24431" - "plane" "(-448 784 256) (-544 784 256) (-544 784 352)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7259" + "plane" "(732 768 202) (756 768 202) (756 768 174)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 195 204" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30284" + "id" "2451" side { - "id" "24466" - "plane" "(-56 820 192) (-64 832 192) (0 864 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "id" "7270" + "plane" "(764 768 182) (764 776 182) (756 776 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24465" - "plane" "(-64 832 96) (-56 820 96) (8 852 96)" + "id" "7269" + "plane" "(764 776 202) (764 768 202) (756 768 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24464" - "plane" "(-56 820 96) (-64 832 96) (-64 832 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7268" + "plane" "(764 768 202) (764 776 202) (764 776 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24463" - "plane" "(-64 832 96) (-0 864 96) (-0 864 192)" + "id" "7267" + "plane" "(756 776 202) (756 768 202) (756 768 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24462" - "plane" "(8 852 96) (-56 820 96) (-56 820 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7266" + "plane" "(764 776 202) (756 776 202) (756 776 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24461" - "plane" "(0 864 96) (8 852 96) (8 852 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7265" + "plane" "(756 768 202) (764 768 202) (764 768 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 195 204" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30296" + "id" "2452" side { - "id" "24478" - "plane" "(32 880 192) (96 912 192) (104 900 192)" + "id" "7277" + "plane" "(954 768 174) (960 768 174) (960 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24477" - "plane" "(40 868 96) (104 900 96) (96 912 96)" + "id" "7276" + "plane" "(960 776 182) (960 768 182) (954 768 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24476" - "plane" "(96 912 96) (104 900 96) (104 900 192)" + "id" "7275" + "plane" "(952 776 182) (952 770 182) (952 770 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7274" + "plane" "(960 768 182) (960 776 182) (960 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24475" - "plane" "(32 880 96) (96 912 96) (96 912 192)" + "id" "7273" + "plane" "(960 776 182) (952 776 182) (952 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24474" - "plane" "(104 900 96) (40 868 96) (40 868 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7272" + "plane" "(954 768 182) (960 768 182) (960 768 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24473" - "plane" "(40 868 96) (32 880 96) (32 880 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7271" + "plane" "(952 770 182) (954 768 182) (954 768 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 195 204" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30297" + "id" "2453" side { - "id" "24496" - "plane" "(32 880 352) (96 912 352) (104 900 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "id" "7283" + "plane" "(960 768 182) (960 776 182) (952 776 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24495" - "plane" "(40 868 256) (104 900 256) (96 912 256)" + "id" "7282" + "plane" "(960 776 194) (960 768 194) (952 768 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24494" - "plane" "(96 912 256) (104 900 256) (104 900 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7281" + "plane" "(952 776 194) (952 768 194) (952 768 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24493" - "plane" "(32 880 256) (96 912 256) (96 912 352)" + "id" "7280" + "plane" "(960 768 194) (960 776 194) (960 776 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24492" - "plane" "(104 900 256) (40 868 256) (40 868 352)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7279" + "plane" "(960 776 194) (952 776 194) (952 776 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24491" - "plane" "(40 868 256) (32 880 256) (32 880 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7278" + "plane" "(952 768 194) (960 768 194) (960 768 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 195 204" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30298" + "id" "2454" side { - "id" "24502" - "plane" "(-56 820 352) (-64 832 352) (0 864 352)" + "id" "7290" + "plane" "(952 770 174) (952 780 174) (968 780 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24501" - "plane" "(-64 832 256) (-56 820 256) (8 852 256)" + "id" "7289" + "plane" "(952 770 136) (954 768 136) (968 768 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24500" - "plane" "(-56 820 256) (-64 832 256) (-64 832 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7288" + "plane" "(952 780 174) (952 770 174) (952 770 136)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -320.656] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24499" - "plane" "(-64 832 256) (0 864 256) (0 864 352)" + "id" "7287" + "plane" "(968 780 174) (952 780 174) (952 780 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24498" - "plane" "(8 852 256) (-56 820 256) (-56 820 352)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7286" + "plane" "(954 768 174) (968 768 174) (968 768 136)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24497" - "plane" "(0 864 256) (8 852 256) (8 852 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7285" + "plane" "(952 770 174) (954 768 174) (954 768 136)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 0.707107 0 -121.554] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7284" + "plane" "(968 768 174) (968 780 174) (968 780 136)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 195 204" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30299" + "id" "2455" side { - "id" "24514" - "plane" "(-544 784 192) (-544 832 192) (-448 832 192)" + "id" "7296" + "plane" "(960 768 174) (968 768 174) (968 780 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24513" - "plane" "(-544 832 64) (-544 784 64) (-448 784 64)" + "id" "7295" + "plane" "(960 780 202) (968 780 202) (968 768 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24512" - "plane" "(-544 784 64) (-544 832 64) (-544 832 192)" + "id" "7294" + "plane" "(960 780 202) (960 768 202) (960 768 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24511" - "plane" "(-448 832 64) (-448 784 64) (-448 784 192)" + "id" "7293" + "plane" "(968 780 202) (960 780 202) (960 780 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24510" - "plane" "(-544 832 64) (-448 832 64) (-448 832 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7292" + "plane" "(960 768 202) (968 768 202) (968 768 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24509" - "plane" "(-448 784 64) (-544 784 64) (-544 784 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7291" + "plane" "(968 768 202) (968 780 202) (968 780 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 195 204" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30301" + "id" "2456" side { - "id" "24526" - "plane" "(-544 768 64) (-544 784 64) (-448 784 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7302" + "plane" "(960 780 136) (968 780 136) (968 768 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24525" - "plane" "(-544 784 0) (-544 768 0) (-448 768 0)" + "id" "7301" + "plane" "(960 768 124) (968 768 124) (968 780 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24524" - "plane" "(-544 768 0) (-544 784 0) (-544 784 64)" + "id" "7300" + "plane" "(960 780 136) (960 768 136) (960 768 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24523" - "plane" "(-448 784 0) (-448 768 0) (-448 768 64)" + "id" "7299" + "plane" "(968 780 136) (960 780 136) (960 780 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24522" - "plane" "(-544 784 0) (-448 784 0) (-448 784 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7298" + "plane" "(960 768 136) (968 768 136) (968 768 124)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24521" - "plane" "(-448 768 0) (-544 768 0) (-544 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7297" + "plane" "(968 768 136) (968 780 136) (968 780 124)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 211 200" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30309" + "id" "2457" side { - "id" "24538" - "plane" "(-56 804 256) (24 844 256) (28 840 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7308" + "plane" "(952 780 124) (968 780 124) (968 768 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24537" - "plane" "(-52 800 248) (28 840 248) (24 844 248)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7307" + "plane" "(952 768 116) (968 768 116) (968 780 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24536" - "plane" "(-56 804 248) (-56 804 256) (-52 800 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7306" + "plane" "(952 780 124) (952 768 124) (952 768 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24535" - "plane" "(28 840 248) (28 840 256) (24 844 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7305" + "plane" "(968 780 124) (952 780 124) (952 780 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24534" - "plane" "(24 844 248) (24 844 256) (-56 804 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7304" + "plane" "(952 768 124) (968 768 124) (968 768 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24533" - "plane" "(-52 800 248) (-52 800 256) (28 840 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7303" + "plane" "(968 768 124) (968 780 124) (968 780 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 207" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30311" + "id" "2458" side { - "id" "24550" - "plane" "(40 852 256) (120 892 256) (124 888 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7314" + "plane" "(1020 776 72) (1020 768 72) (968 768 72)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24549" - "plane" "(44 848 248) (124 888 248) (120 892 248)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7313" + "plane" "(1020 768 68) (1020 776 68) (968 776 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24548" - "plane" "(40 852 248) (40 852 256) (44 848 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7312" + "plane" "(1020 768 72) (1020 776 72) (1020 776 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24547" - "plane" "(124 888 248) (124 888 256) (120 892 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7311" + "plane" "(968 776 72) (968 768 72) (968 768 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24546" - "plane" "(120 892 248) (120 892 256) (40 852 256)" + "id" "7310" + "plane" "(1020 776 72) (968 776 72) (968 776 68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24545" - "plane" "(44 848 248) (44 848 256) (124 888 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7309" + "plane" "(968 768 72) (1020 768 72) (1020 768 68)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 207" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30312" + "id" "2459" side { - "id" "24568" - "plane" "(40 852 96) (120 892 96) (124 888 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7320" + "plane" "(968 776 68) (986 776 68) (986 768 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24567" - "plane" "(44 848 88) (124 888 88) (120 892 88)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7319" + "plane" "(968 768 64) (984 768 64) (984 776 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24566" - "plane" "(40 852 88) (40 852 96) (44 848 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7318" + "plane" "(968 776 68) (968 768 68) (968 768 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24565" - "plane" "(124 888 88) (124 888 96) (120 892 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7317" + "plane" "(986 776 68) (968 776 68) (968 776 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24564" - "plane" "(120 892 88) (120 892 96) (40 852 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7316" + "plane" "(968 768 68) (986 768 68) (984 768 64)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24563" - "plane" "(44 848 88) (44 848 96) (124 888 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7315" + "plane" "(986 768 68) (986 776 68) (984 776 64)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 207" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30313" + "id" "2460" side { - "id" "24574" - "plane" "(-56 804 96) (24 844 96) (28 840 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7326" + "plane" "(1020 768 68) (1002 768 68) (1002 776 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24573" - "plane" "(-52 800 88) (28 840 88) (24 844 88)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7325" + "plane" "(1020 776 64) (1004 776 64) (1004 768 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24572" - "plane" "(-56 804 88) (-56 804 96) (-52 800 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7324" + "plane" "(1020 768 68) (1020 776 68) (1020 776 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24571" - "plane" "(28 840 88) (28 840 96) (24 844 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7323" + "plane" "(1020 776 68) (1002 776 68) (1004 776 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24570" - "plane" "(24 844 88) (24 844 96) (-56 804 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7322" + "plane" "(1002 768 68) (1020 768 68) (1020 768 64)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24569" - "plane" "(-52 800 88) (-52 800 96) (28 840 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7321" + "plane" "(1002 776 68) (1002 768 68) (1004 768 64)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 207" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30316" + "id" "2461" side { - "id" "24586" - "plane" "(-152 848 560) (-152 896 560) (-128 896 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "id" "7332" + "plane" "(1020 780 76) (1020 776 76) (968 776 76)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24585" - "plane" "(-152 896 496) (-152 848 496) (-128 848 496)" + "id" "7331" + "plane" "(1020 776 72) (1020 780 72) (968 780 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24584" - "plane" "(-152 848 496) (-152 896 496) (-152 896 560)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7330" + "plane" "(1020 776 76) (1020 780 76) (1020 780 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24583" - "plane" "(-128 896 496) (-128 848 496) (-128 848 560)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7329" + "plane" "(968 780 76) (968 776 76) (968 776 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24582" - "plane" "(-152 896 496) (-128 896 496) (-128 896 560)" + "id" "7328" + "plane" "(1020 780 76) (968 780 76) (968 780 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24581" - "plane" "(-128 848 496) (-152 848 496) (-152 848 560)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7327" + "plane" "(968 776 76) (1020 776 76) (1020 776 72)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[-1 0 0 195.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 209 218" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30329" + "id" "2462" side { - "id" "24587" - "plane" "(-116 836 400) (-120 828 400) (-116 820 400)" + "id" "7338" + "plane" "(1020 784 190) (1020 780 190) (968 780 190)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24588" - "plane" "(-108 840 528) (-100 836 528) (-96 828 528)" + "id" "7337" + "plane" "(1020 780 76) (1020 784 76) (968 784 76)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24589" - "plane" "(-108 840 400) (-100 836 400) (-100 836 528)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7336" + "plane" "(1020 780 190) (1020 784 190) (1020 784 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24590" - "plane" "(-100 836 400) (-96 828 400) (-96 828 528)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7335" + "plane" "(968 784 190) (968 780 190) (968 780 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24591" - "plane" "(-96 828 400) (-100 820 400) (-100 820 528)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7334" + "plane" "(1020 784 190) (968 784 190) (968 784 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24592" - "plane" "(-100 820 400) (-108 816 400) (-108 816 528)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7333" + "plane" "(968 780 190) (1020 780 190) (1020 780 76)" + "material" "DE_DUST/DOOR02" + "uaxis" "[-1 0 0 39.8257] 0.413" + "vaxis" "[0 0 -1 276.364] 0.275" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - side + editor { - "id" "24593" - "plane" "(-108 816 400) (-116 820 400) (-116 820 528)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + solid + { + "id" "2463" side { - "id" "24594" - "plane" "(-116 820 400) (-120 828 400) (-120 828 528)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7344" + "plane" "(968 780 96) (968 768 96) (964 768 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24595" - "plane" "(-120 828 400) (-116 836 400) (-116 836 528)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7343" + "plane" "(968 768 64) (968 780 64) (964 780 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24596" - "plane" "(-116 836 400) (-108 840 400) (-108 840 528)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7342" + "plane" "(968 768 96) (968 780 96) (968 780 64)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7341" + "plane" "(964 780 96) (964 768 96) (964 768 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7340" + "plane" "(968 780 96) (964 780 96) (964 780 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7339" + "plane" "(964 768 96) (968 768 96) (968 768 64)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 160.697] 0.25" + "vaxis" "[0 0 -1 181.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 181 122" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30363" + "id" "2464" side { - "id" "24620" - "plane" "(-120 756 400) (-120 884 400) (-128 880 400)" + "id" "7351" + "plane" "(1040 784 202) (1040 776 202) (1032 768 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24619" - "plane" "(-120 884 400) (-120 756 400) (-120 756 408)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7350" + "plane" "(1028 768 176) (1036 776 176) (1036 784 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24618" - "plane" "(-120 884 400) (-120 884 536) (-128 880 536)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7349" + "plane" "(1020 784 202) (1020 768 202) (1020 768 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24617" - "plane" "(-120 756 400) (-128 752 400) (-128 752 408)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7348" + "plane" "(1040 776 202) (1040 784 202) (1036 784 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24616" - "plane" "(-120 756 408) (-128 752 408) (-128 880 536)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7347" + "plane" "(1040 784 202) (1020 784 202) (1020 784 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24615" - "plane" "(-128 752 400) (-128 880 400) (-128 880 536)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7346" + "plane" "(1020 768 202) (1032 768 202) (1028 768 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7345" + "plane" "(1032 768 202) (1040 776 202) (1036 776 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 209 218" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "30364" + "id" "2465" side { - "id" "24626" - "plane" "(-136 752 400) (-128 752 400) (-128 880 400)" + "id" "7358" + "plane" "(1052 784 224) (1052 776 224) (1044 768 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24625" - "plane" "(-136 752 400) (-136 880 400) (-136 880 536)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7357" + "plane" "(1032 768 202) (1040 776 202) (1040 784 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24624" - "plane" "(-136 880 400) (-128 880 400) (-128 880 536)" + "id" "7356" + "plane" "(1036 784 224) (1036 768 224) (1024 768 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24623" - "plane" "(-136 752 400) (-136 752 408) (-128 752 408)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7355" + "plane" "(1052 776 224) (1052 784 224) (1040 784 202)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24622" - "plane" "(-136 752 408) (-136 880 536) (-128 880 536)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7354" + "plane" "(1052 784 224) (1036 784 224) (1024 784 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24621" - "plane" "(-128 880 400) (-128 752 400) (-128 752 408)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7353" + "plane" "(1036 768 224) (1044 768 224) (1032 768 202)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.877895 0 -0.478852 -445.999] 0.25" + "vaxis" "[-0.420382 -0.478852 -0.7707 337.594] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7352" + "plane" "(1044 768 224) (1052 776 224) (1040 776 202)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.57918 0.751497 -0.315916 -19.5278] 0.25" + "vaxis" "[-0.104466 -0.315916 -0.943018 122.846] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 209 218" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31054" + "id" "2466" side { - "id" "25333" - "plane" "(-768 -128 160) (-768 -96 160) (-736 -96 160)" + "id" "7365" + "plane" "(1068 784 238) (1068 776 238) (1060 768 238)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25334" - "plane" "(-768 -96 0) (-768 -128 0) (-736 -128 0)" + "id" "7364" + "plane" "(1044 768 224) (1052 776 224) (1052 784 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25335" - "plane" "(-768 -128 0) (-768 -96 0) (-768 -96 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7363" + "plane" "(1052 784 238) (1052 768 238) (1036 768 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25336" - "plane" "(-736 -96 0) (-736 -128 0) (-736 -128 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7362" + "plane" "(1068 776 238) (1068 784 238) (1052 784 224)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[-0.752577 0 -0.658504 253.576] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25337" - "plane" "(-768 -96 0) (-736 -96 0) (-736 -96 160)" + "id" "7361" + "plane" "(1068 784 238) (1052 784 238) (1036 784 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25338" - "plane" "(-736 -128 0) (-768 -128 0) (-768 -128 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7360" + "plane" "(1052 768 238) (1060 768 238) (1044 768 224)" + "material" "BRICK/WALL20" + "uaxis" "[0.857493 0 -0.514496 -226.447] 0.25" + "vaxis" "[-0.441176 -0.514496 -0.735294 -3.62074] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7359" + "plane" "(1060 768 238) (1068 776 238) (1052 776 224)" + "material" "BRICK/WALL20" + "uaxis" "[0.534411 0.689115 -0.489413 -396.899] 0.25" + "vaxis" "[-0.467683 -0.241227 -0.850342 410.894] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31065" + "id" "2467" side { - "id" "25350" - "plane" "(-848 -144 176) (-848 -96 176) (-592 -96 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7371" + "plane" "(968 768 190) (1020 768 190) (1020 780 190)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 288.697] 0.25" + "vaxis" "[0 -1 0 472.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25349" - "plane" "(-848 -96 144) (-848 -128 144) (-592 -128 144)" + "id" "7370" + "plane" "(968 780 202) (1020 780 202) (1020 768 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25348" - "plane" "(-848 -128 144) (-848 -96 144) (-848 -96 176)" + "id" "7369" + "plane" "(968 780 202) (968 768 202) (968 768 190)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25347" - "plane" "(-592 -96 144) (-592 -128 144) (-592 -144 176)" + "id" "7368" + "plane" "(1020 780 202) (968 780 202) (968 780 190)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25346" - "plane" "(-848 -96 144) (-592 -96 144) (-592 -96 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7367" + "plane" "(968 768 202) (1020 768 202) (1020 768 190)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 288.697] 0.25" + "vaxis" "[0 0 1 -269.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25345" - "plane" "(-592 -128 144) (-848 -128 144) (-848 -144 176)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7366" + "plane" "(1020 768 202) (1020 780 202) (1020 780 190)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 269.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31069" + "id" "2468" side { - "id" "25362" - "plane" "(-848 -128 240) (-848 -96 240) (-592 -96 240)" + "id" "7377" + "plane" "(1024 768 202) (1024 776 202) (1020 776 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25361" - "plane" "(-848 -96 176) (-848 -128 176) (-592 -128 176)" + "id" "7376" + "plane" "(1036 776 224) (1036 768 224) (1020 768 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25360" - "plane" "(-848 -128 176) (-848 -96 176) (-848 -96 240)" + "id" "7375" + "plane" "(1036 768 224) (1036 776 224) (1024 776 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25359" - "plane" "(-592 -96 176) (-592 -128 176) (-592 -128 240)" + "id" "7374" + "plane" "(1020 776 224) (1020 768 224) (1020 768 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25358" - "plane" "(-848 -96 176) (-592 -96 176) (-592 -96 240)" + "id" "7373" + "plane" "(1036 776 224) (1020 776 224) (1020 776 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25357" - "plane" "(-592 -128 176) (-848 -128 176) (-848 -128 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7372" + "plane" "(1020 768 224) (1036 768 224) (1024 768 202)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 125 210" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31073" + "id" "2469" side { - "id" "25374" - "plane" "(-848 -144 240) (-848 -128 240) (-816 -128 240)" + "id" "7383" + "plane" "(1036 768 224) (1036 776 224) (1020 776 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25373" - "plane" "(-848 -128 192) (-848 -144 192) (-816 -144 192)" + "id" "7382" + "plane" "(1052 776 238) (1052 768 238) (1020 768 238)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25372" - "plane" "(-848 -144 192) (-848 -128 192) (-848 -128 240)" + "id" "7381" + "plane" "(1052 768 238) (1052 776 238) (1036 776 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25371" - "plane" "(-816 -128 192) (-816 -144 192) (-816 -144 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7380" + "plane" "(1020 776 238) (1020 768 238) (1020 768 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25370" - "plane" "(-848 -128 192) (-816 -128 192) (-816 -128 240)" + "id" "7379" + "plane" "(1052 776 238) (1020 776 238) (1020 776 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25369" - "plane" "(-816 -144 192) (-848 -144 192) (-848 -144 240)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7378" + "plane" "(1020 768 238) (1052 768 238) (1036 768 224)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31076" + "id" "2470" side { - "id" "25386" - "plane" "(-624 -144 240) (-624 -128 240) (-592 -128 240)" + "id" "7389" + "plane" "(764 768 202) (764 776 202) (732 776 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25385" - "plane" "(-624 -128 192) (-624 -144 192) (-592 -144 192)" + "id" "7388" + "plane" "(764 776 228) (764 768 228) (732 768 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25384" - "plane" "(-624 -144 192) (-624 -128 192) (-624 -128 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7387" + "plane" "(764 768 228) (764 776 228) (764 776 202)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 432.663] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25383" - "plane" "(-592 -128 192) (-592 -144 192) (-592 -144 240)" - "material" "TOOLS/TOOLSNODRAW" + "id" "7386" + "plane" "(732 776 228) (732 768 228) (732 768 202)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25382" - "plane" "(-624 -128 192) (-592 -128 192) (-592 -128 240)" + "id" "7385" + "plane" "(764 776 228) (732 776 228) (732 776 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25381" - "plane" "(-592 -144 192) (-624 -144 192) (-624 -144 240)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7384" + "plane" "(732 768 228) (764 768 228) (764 768 202)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31077" + "id" "2471" side { - "id" "25398" - "plane" "(-672 -144 240) (-672 -128 240) (-624 -128 240)" + "id" "7396" + "plane" "(1090 784 252) (1090 776 252) (1082 768 252)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25397" - "plane" "(-672 -128 216) (-672 -144 216) (-624 -144 200)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7395" + "plane" "(1060 768 238) (1068 776 238) (1068 784 238)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25396" - "plane" "(-672 -144 216) (-672 -128 216) (-672 -128 240)" + "id" "7394" + "plane" "(1074 784 252) (1074 768 252) (1052 768 238)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25395" - "plane" "(-624 -128 200) (-624 -144 200) (-624 -144 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7393" + "plane" "(1090 776 252) (1090 784 252) (1068 784 238)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[-0.752577 0 -0.658504 338.617] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25394" - "plane" "(-624 -128 240) (-672 -128 240) (-672 -128 216)" + "id" "7392" + "plane" "(1090 784 252) (1074 784 252) (1052 784 238)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25393" - "plane" "(-624 -144 200) (-672 -144 216) (-672 -144 240)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7391" + "plane" "(1074 768 252) (1082 768 252) (1060 768 238)" + "material" "BRICK/WALL20" + "uaxis" "[0.536875 0 -0.843661 -16.2992] 0.25" + "vaxis" "[-0.833921 -0.151515 -0.530677 27.4964] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7390" + "plane" "(1082 768 252) (1090 776 252) (1068 776 238)" + "material" "BRICK/WALL20" + "uaxis" "[0.253951 0.881054 -0.399066 -323.472] 0.25" + "vaxis" "[-0.762252 -0.0716691 -0.6433 78.5521] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31079" + "id" "2472" side { - "id" "25410" - "plane" "(-720 -144 240) (-720 -128 240) (-672 -128 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7403" + "plane" "(1144 784 224) (1144 768 224) (1136 768 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25409" - "plane" "(-720 -128 220) (-720 -144 220) (-672 -144 216)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7402" + "plane" "(1148 768 202) (1156 768 202) (1156 784 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25408" - "plane" "(-720 -144 220) (-720 -128 220) (-720 -128 240)" + "id" "7401" + "plane" "(1144 768 224) (1144 784 224) (1156 784 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25407" - "plane" "(-672 -128 216) (-672 -144 216) (-672 -144 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7400" + "plane" "(1128 784 224) (1128 776 224) (1140 776 202)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25406" - "plane" "(-672 -128 240) (-720 -128 240) (-720 -128 220)" + "id" "7399" + "plane" "(1144 784 224) (1128 784 224) (1140 784 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25405" - "plane" "(-672 -144 216) (-720 -144 220) (-720 -144 240)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7398" + "plane" "(1136 768 224) (1144 768 224) (1156 768 202)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.877895 0 -0.478852 8.06409] 0.25" + "vaxis" "[0.420382 -0.478852 -0.7707 26.5834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7397" + "plane" "(1128 776 224) (1136 768 224) (1148 768 202)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.579179 0.751497 -0.315916 -285.199] 0.25" + "vaxis" "[0.104466 -0.315916 -0.943018 178.921] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31080" + "id" "2473" side { - "id" "25422" - "plane" "(-768 -144 240) (-768 -128 240) (-720 -128 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7410" + "plane" "(1128 784 238) (1128 768 238) (1120 768 238)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25421" - "plane" "(-768 -128 216) (-768 -144 216) (-720 -144 220)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7409" + "plane" "(1136 768 224) (1144 768 224) (1144 784 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25420" - "plane" "(-768 -144 216) (-768 -128 216) (-768 -128 240)" + "id" "7408" + "plane" "(1144 784 224) (1144 768 224) (1128 768 238)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25419" - "plane" "(-720 -128 220) (-720 -144 220) (-720 -144 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7407" + "plane" "(1128 776 224) (1128 784 224) (1112 784 238)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0.752577 0 -0.658504 -63.3281] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25418" - "plane" "(-768 -128 216) (-720 -128 220) (-720 -128 240)" + "id" "7406" + "plane" "(1128 784 238) (1112 784 238) (1128 784 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25417" - "plane" "(-768 -144 240) (-720 -144 240) (-720 -144 220)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7405" + "plane" "(1120 768 238) (1128 768 238) (1144 768 224)" + "material" "BRICK/WALL20" + "uaxis" "[-0.857493 0 -0.514496 38.5612] 0.25" + "vaxis" "[0.441176 -0.514496 -0.735294 4.6957] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7404" + "plane" "(1112 776 238) (1120 768 238) (1136 768 224)" + "material" "BRICK/WALL20" + "uaxis" "[-0.534411 0.689115 -0.489413 -53.3558] 0.25" + "vaxis" "[0.467683 -0.241227 -0.850342 173.626] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31081" + "id" "2474" side { - "id" "25434" - "plane" "(-816 -144 240) (-816 -128 240) (-768 -128 240)" + "id" "7417" + "plane" "(1106 784 252) (1106 768 252) (1098 768 252)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25433" - "plane" "(-816 -128 200) (-816 -144 200) (-768 -144 216)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7416" + "plane" "(1120 768 238) (1128 768 238) (1128 784 238)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25432" - "plane" "(-816 -144 200) (-816 -128 200) (-816 -128 240)" + "id" "7415" + "plane" "(1128 784 238) (1128 768 238) (1106 768 252)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25431" - "plane" "(-768 -128 216) (-768 -144 216) (-768 -144 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7414" + "plane" "(1112 776 238) (1112 784 238) (1090 784 252)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0.752577 0 -0.658504 -490.287] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25430" - "plane" "(-816 -128 200) (-768 -128 216) (-768 -128 240)" + "id" "7413" + "plane" "(1106 784 252) (1090 784 252) (1112 784 238)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25429" - "plane" "(-816 -144 240) (-768 -144 240) (-768 -144 216)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7412" + "plane" "(1098 768 252) (1106 768 252) (1128 768 238)" + "material" "BRICK/WALL20" + "uaxis" "[-0.536875 0 -0.843661 350.075] 0.25" + "vaxis" "[0.833921 -0.151515 -0.530677 -19.1065] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7411" + "plane" "(1090 776 252) (1098 768 252) (1120 768 238)" + "material" "BRICK/WALL20" + "uaxis" "[-0.253951 0.881054 -0.399066 -18.5195] 0.25" + "vaxis" "[0.762252 -0.0716691 -0.6433 -328.021] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31096" + "id" "2475" side { - "id" "25446" - "plane" "(-848 -144 304) (-848 -96 304) (-752 -96 304)" + "id" "7423" + "plane" "(1052 768 238) (1052 776 238) (1020 776 238)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25445" - "plane" "(-848 -96 240) (-848 -144 240) (-752 -144 240)" + "id" "7422" + "plane" "(1074 776 252) (1074 768 252) (1020 768 252)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25444" - "plane" "(-848 -144 240) (-848 -96 240) (-848 -96 304)" + "id" "7421" + "plane" "(1074 768 252) (1074 776 252) (1052 776 238)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25443" - "plane" "(-752 -96 240) (-752 -144 240) (-752 -144 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7420" + "plane" "(1020 776 252) (1020 768 252) (1020 768 238)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25442" - "plane" "(-848 -96 240) (-752 -96 240) (-752 -96 304)" + "id" "7419" + "plane" "(1074 776 252) (1020 776 252) (1020 776 238)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25441" - "plane" "(-752 -144 240) (-848 -144 240) (-848 -144 304)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7418" + "plane" "(1020 768 252) (1074 768 252) (1052 768 238)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31103" + "id" "2476" side { - "id" "25458" - "plane" "(-864 -144 304) (-864 -96 304) (-848 -96 304)" + "id" "7429" + "plane" "(1090 784 254) (1090 766 254) (1078 766 254)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 23.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25457" - "plane" "(-864 -96 0) (-864 -144 0) (-848 -144 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7428" + "plane" "(1090 766 242) (1090 784 242) (1078 784 238)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25456" - "plane" "(-864 -144 0) (-864 -96 0) (-864 -96 304)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "7427" + "plane" "(1078 784 254) (1078 766 254) (1078 766 238)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 237.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25455" - "plane" "(-848 -96 0) (-848 -144 0) (-848 -144 304)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "7426" + "plane" "(1090 784 254) (1078 784 254) (1078 784 238)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 23.3027] 0.25" + "vaxis" "[0 0 -1 13.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25454" - "plane" "(-864 -96 0) (-848 -96 0) (-848 -96 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7425" + "plane" "(1090 766 242) (1078 766 238) (1078 766 254)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0.536875 0 -0.843661 -450.008] 0.25" + "vaxis" "[-0.83139 -0.169937 -0.529066 172.781] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25453" - "plane" "(-848 -144 0) (-864 -144 0) (-864 -144 304)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "7424" + "plane" "(1090 766 254) (1090 784 254) (1090 784 242)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31117" + "id" "2477" side { - "id" "25470" - "plane" "(-592 -144 304) (-592 64 304) (-576 64 304)" + "id" "7435" + "plane" "(1090 784 254) (1102 784 254) (1102 766 254)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 23.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25469" - "plane" "(-592 64 0) (-592 -144 0) (-576 -144 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7434" + "plane" "(1090 766 242) (1102 766 238) (1102 784 238)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25468" - "plane" "(-592 -144 0) (-592 64 0) (-592 64 304)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "7433" + "plane" "(1090 784 242) (1102 784 238) (1102 784 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 23.3027] 0.25" + "vaxis" "[0 0 -1 13.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25467" - "plane" "(-576 64 0) (-576 -144 0) (-576 -144 304)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7432" + "plane" "(1090 766 254) (1102 766 254) (1102 766 238)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0.536875 0 -0.843661 -450.008] 0.25" + "vaxis" "[-0.83139 -0.169937 -0.529066 172.781] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25466" - "plane" "(-592 64 0) (-576 64 0) (-576 64 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7431" + "plane" "(1102 766 254) (1102 784 254) (1102 784 238)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 237.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25465" - "plane" "(-576 -144 0) (-592 -144 0) (-592 -144 304)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "7430" + "plane" "(1090 784 254) (1090 766 254) (1090 766 242)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31122" + "id" "2478" side { - "id" "25482" - "plane" "(-848 -144 192) (-848 -128 192) (-592 -128 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7442" + "plane" "(1148 784 68) (1148 774 68) (1032 774 68)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[-1 0 0 336.697] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25481" - "plane" "(-848 -128 176) (-848 -144 176) (-592 -144 176)" + "id" "7441" + "plane" "(1148 772 64) (1148 784 64) (1032 784 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 0.660156] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25480" - "plane" "(-848 -144 176) (-848 -128 176) (-848 -128 192)" + "id" "7440" + "plane" "(1148 772 66) (1148 774 68) (1148 784 68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -0.660156] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25479" - "plane" "(-592 -128 176) (-592 -144 176) (-592 -144 192)" + "id" "7439" + "plane" "(1032 784 68) (1032 774 68) (1032 772 66)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -0.660156] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25478" - "plane" "(-848 -128 176) (-592 -128 176) (-592 -128 192)" + "id" "7438" + "plane" "(1148 784 68) (1032 784 68) (1032 784 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25477" - "plane" "(-592 -144 176) (-848 -144 176) (-848 -144 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7437" + "plane" "(1032 772 66) (1148 772 66) (1148 772 64)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[-1 0 0 336.697] 0.25" + "vaxis" "[0 0 -1 245.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7436" + "plane" "(1148 774 68) (1148 772 66) (1032 772 66)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -128.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31125" + "id" "2479" side { - "id" "25494" - "plane" "(-848 -128 160) (-848 -96 160) (-832 -96 160)" + "id" "7449" + "plane" "(1160 784 202) (1160 768 202) (1148 768 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25493" - "plane" "(-848 -96 0) (-848 -128 0) (-832 -128 0)" + "id" "7448" + "plane" "(1152 768 176) (1160 768 176) (1160 784 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25492" - "plane" "(-848 -128 0) (-848 -96 0) (-848 -96 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7447" + "plane" "(1160 768 202) (1160 784 202) (1160 784 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25491" - "plane" "(-832 -96 0) (-832 -128 0) (-832 -128 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7446" + "plane" "(1140 784 202) (1140 776 202) (1144 776 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25490" - "plane" "(-848 -96 0) (-832 -96 0) (-832 -96 160)" + "id" "7445" + "plane" "(1160 784 202) (1140 784 202) (1144 784 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25489" - "plane" "(-832 -128 0) (-848 -128 0) (-848 -128 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7444" + "plane" "(1148 768 202) (1160 768 202) (1160 768 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 384.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7443" + "plane" "(1140 776 202) (1148 768 202) (1152 768 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31128" + "id" "2484" side { - "id" "25506" - "plane" "(-832 -128 32) (-832 -96 32) (-768 -96 32)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7455" + "plane" "(844 775 233) (844 773 233) (764 773 233)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25505" - "plane" "(-832 -96 0) (-832 -128 0) (-768 -128 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7454" + "plane" "(844 773 231) (844 775 231) (764 775 231)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25504" - "plane" "(-832 -128 0) (-832 -96 0) (-832 -96 32)" + "id" "7453" + "plane" "(844 773 233) (844 775 233) (844 775 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25503" - "plane" "(-768 -96 0) (-768 -128 0) (-768 -128 32)" + "id" "7452" + "plane" "(764 775 233) (764 773 233) (764 773 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25502" - "plane" "(-832 -96 0) (-768 -96 0) (-768 -96 32)" + "id" "7451" + "plane" "(844 775 233) (764 775 233) (764 775 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25501" - "plane" "(-768 -128 0) (-832 -128 0) (-832 -128 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7450" + "plane" "(764 773 233) (844 773 233) (844 773 231)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31148" + "id" "2485" side { - "id" "25554" - "plane" "(-832 -128 144) (-832 -96 144) (-816 -96 144)" + "id" "7462" + "plane" "(844 772 233) (844 771 234) (844 771 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25553" - "plane" "(-832 -96 112) (-832 -128 112) (-816 -128 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7461" + "plane" "(764 772 233) (764 780 233) (764 780 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25552" - "plane" "(-832 -128 112) (-832 -96 112) (-832 -96 144)" + "id" "7460" + "plane" "(844 780 233) (844 780 236) (764 780 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[-1 0 0 12.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25551" - "plane" "(-832 -96 112) (-816 -96 128) (-816 -96 144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7459" + "plane" "(844 772 233) (844 780 233) (764 780 233)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25550" - "plane" "(-832 -128 144) (-816 -128 144) (-816 -128 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7458" + "plane" "(764 772 233) (764 771 234) (844 771 234)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25549" - "plane" "(-816 -96 128) (-816 -128 128) (-816 -128 144)" + "id" "7457" + "plane" "(764 771 234) (764 771 236) (844 771 236)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 413.307] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7456" + "plane" "(844 780 236) (844 771 236) (764 771 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31149" + "id" "2486" side { - "id" "25560" - "plane" "(-816 -96 144) (-800 -96 144) (-800 -128 144)" + "id" "7468" + "plane" "(952 775 233) (952 773 233) (872 773 233)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25559" - "plane" "(-816 -128 128) (-800 -128 132) (-800 -96 132)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7467" + "plane" "(952 773 231) (952 775 231) (872 775 231)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25558" - "plane" "(-816 -96 128) (-800 -96 132) (-800 -96 144)" + "id" "7466" + "plane" "(952 773 233) (952 775 233) (952 775 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25557" - "plane" "(-816 -128 144) (-800 -128 144) (-800 -128 132)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7465" + "plane" "(872 775 233) (872 773 233) (872 773 231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25556" - "plane" "(-816 -128 128) (-816 -96 128) (-816 -96 144)" + "id" "7464" + "plane" "(952 775 233) (872 775 233) (872 775 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25555" - "plane" "(-800 -96 132) (-800 -128 132) (-800 -128 144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7463" + "plane" "(872 773 233) (952 773 233) (952 773 231)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31150" + "id" "2487" side { - "id" "25566" - "plane" "(-784 -96 144) (-768 -96 144) (-768 -128 144)" + "id" "7475" + "plane" "(952 772 233) (952 771 234) (952 771 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25565" - "plane" "(-768 -128 112) (-768 -96 112) (-784 -96 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7474" + "plane" "(872 772 233) (872 780 233) (872 780 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25564" - "plane" "(-768 -96 112) (-768 -128 112) (-768 -128 144)" + "id" "7473" + "plane" "(952 780 233) (952 780 236) (872 780 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[-1 0 0 -3.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25563" - "plane" "(-768 -96 144) (-784 -96 144) (-784 -96 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7472" + "plane" "(952 772 233) (952 780 233) (872 780 233)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25562" - "plane" "(-768 -128 112) (-784 -128 128) (-784 -128 144)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7471" + "plane" "(872 772 233) (872 771 234) (952 771 234)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25561" - "plane" "(-784 -128 128) (-784 -96 128) (-784 -96 144)" + "id" "7470" + "plane" "(872 771 234) (872 771 236) (952 771 236)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 413.307] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7469" + "plane" "(952 780 236) (952 771 236) (872 771 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31151" + "id" "2488" side { - "id" "25572" - "plane" "(-784 -128 144) (-800 -128 144) (-800 -96 144)" + "id" "7483" + "plane" "(914 780 228) (910 780 228) (910 770 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7482" + "plane" "(915 780 236) (915 770 236) (909 770 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25571" - "plane" "(-784 -96 128) (-800 -96 132) (-800 -128 132)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7481" + "plane" "(915 780 236) (915 780 229) (915 770 229)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25570" - "plane" "(-784 -96 144) (-800 -96 144) (-800 -96 132)" + "id" "7480" + "plane" "(909 770 236) (909 770 229) (909 780 229)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7479" + "plane" "(915 780 229) (915 780 236) (909 780 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 0 1 2.69312] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25569" - "plane" "(-784 -128 128) (-800 -128 132) (-800 -128 144)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7478" + "plane" "(909 770 229) (909 770 236) (915 770 236)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25568" - "plane" "(-800 -128 132) (-800 -96 132) (-800 -96 144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7477" + "plane" "(909 780 229) (909 770 229) (910 770 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25567" - "plane" "(-784 -96 128) (-784 -128 128) (-784 -128 144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7476" + "plane" "(915 770 229) (915 780 229) (914 780 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31157" + "id" "2489" side { - "id" "25584" - "plane" "(-736 -128 72) (-736 -96 72) (-592 -96 72)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7491" + "plane" "(806 780 228) (802 780 228) (802 770 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25583" - "plane" "(-736 -96 0) (-736 -128 0) (-592 -128 0)" + "id" "7490" + "plane" "(807 780 236) (807 770 236) (801 770 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25582" - "plane" "(-736 -128 0) (-736 -96 0) (-736 -96 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7489" + "plane" "(807 780 236) (807 780 229) (807 770 229)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25581" - "plane" "(-592 -96 0) (-592 -128 0) (-592 -128 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7488" + "plane" "(801 770 236) (801 770 229) (801 780 229)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25580" - "plane" "(-736 -96 0) (-592 -96 0) (-592 -96 72)" + "id" "7487" + "plane" "(807 780 229) (807 780 236) (801 780 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 0 1 2.69312] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25579" - "plane" "(-592 -128 0) (-736 -128 0) (-736 -128 72)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7486" + "plane" "(801 770 229) (801 770 236) (807 770 236)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7485" + "plane" "(801 780 229) (801 770 229) (802 770 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7484" + "plane" "(807 770 229) (807 780 229) (806 780 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31162" + "id" "2490" side { - "id" "25596" - "plane" "(-736 -128 144) (-736 -96 144) (-592 -96 144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7497" + "plane" "(960 780 197) (960 768 197) (764 768 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25595" - "plane" "(-736 -96 128) (-736 -128 128) (-592 -128 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7496" + "plane" "(960 768 194) (960 780 194) (764 780 194)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25594" - "plane" "(-736 -128 128) (-736 -96 128) (-736 -96 144)" + "id" "7495" + "plane" "(960 768 197) (960 780 197) (960 780 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 13.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25593" - "plane" "(-592 -96 128) (-592 -128 128) (-592 -128 144)" + "id" "7494" + "plane" "(764 780 197) (764 768 197) (764 768 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 13.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25592" - "plane" "(-736 -96 128) (-592 -96 128) (-592 -96 144)" + "id" "7493" + "plane" "(960 780 197) (764 780 197) (764 780 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 13.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25591" - "plane" "(-592 -128 128) (-736 -128 128) (-736 -128 144)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7492" + "plane" "(764 768 197) (960 768 197) (960 768 194)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31165" + "id" "2491" side { - "id" "25608" - "plane" "(-680 -128 128) (-680 -96 128) (-664 -96 128)" + "id" "7504" + "plane" "(844 772 191) (844 771 192) (844 771 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25607" - "plane" "(-680 -96 72) (-680 -128 72) (-664 -128 72)" + "id" "7503" + "plane" "(844 780 194) (805 780 194) (805 780 191)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[-1 0 0 12.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25606" - "plane" "(-680 -128 72) (-680 -96 72) (-680 -96 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7502" + "plane" "(844 780 191) (805 780 191) (805 772 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25605" - "plane" "(-664 -96 72) (-664 -128 72) (-664 -128 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7501" + "plane" "(805 772 191) (805 771 192) (844 771 192)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25604" - "plane" "(-680 -96 72) (-664 -96 72) (-664 -96 128)" + "id" "7500" + "plane" "(805 771 192) (805 771 194) (844 771 194)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 245.307] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7499" + "plane" "(844 771 194) (805 771 194) (805 780 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25603" - "plane" "(-664 -128 72) (-680 -128 72) (-680 -128 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7498" + "plane" "(805 772 191) (805 780 191) (805 780 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31168" + "id" "2492" side { - "id" "25620" - "plane" "(-608 -128 128) (-608 -96 128) (-592 -96 128)" + "id" "7511" + "plane" "(764 772 191) (764 780 191) (764 780 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25619" - "plane" "(-608 -96 72) (-608 -128 72) (-592 -128 72)" + "id" "7510" + "plane" "(803 780 191) (803 780 194) (764 780 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[-1 0 0 12.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25618" - "plane" "(-608 -128 72) (-608 -96 72) (-608 -96 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7509" + "plane" "(764 772 191) (803 772 191) (803 780 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25617" - "plane" "(-592 -96 72) (-592 -128 72) (-592 -128 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "7508" + "plane" "(764 771 192) (803 771 192) (803 772 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25616" - "plane" "(-608 -96 72) (-592 -96 72) (-592 -96 128)" + "id" "7507" + "plane" "(764 771 194) (803 771 194) (803 771 192)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 245.307] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7506" + "plane" "(764 780 194) (803 780 194) (803 771 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25615" - "plane" "(-592 -128 72) (-608 -128 72) (-608 -128 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7505" + "plane" "(803 772 191) (803 771 192) (803 771 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31170" + "id" "2493" side { - "id" "25632" - "plane" "(-736 -120 128) (-736 -96 128) (-608 -96 128)" + "id" "7518" + "plane" "(952 772 191) (952 771 192) (952 771 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25631" - "plane" "(-736 -96 72) (-736 -120 72) (-608 -120 72)" + "id" "7517" + "plane" "(952 780 194) (913 780 194) (913 780 191)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[-1 0 0 -3.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25630" - "plane" "(-736 -120 72) (-736 -96 72) (-736 -96 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "7516" + "plane" "(952 780 191) (913 780 191) (913 772 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25629" - "plane" "(-608 -96 72) (-608 -120 72) (-608 -120 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "7515" + "plane" "(913 772 191) (913 771 192) (952 771 192)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25628" - "plane" "(-736 -96 72) (-608 -96 72) (-608 -96 128)" + "id" "7514" + "plane" "(913 771 192) (913 771 194) (952 771 194)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 245.307] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7513" + "plane" "(952 771 194) (913 771 194) (913 780 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25627" - "plane" "(-608 -120 72) (-736 -120 72) (-736 -120 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7512" + "plane" "(913 772 191) (913 780 191) (913 780 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 187 236" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31176" + "id" "2494" side { - "id" "25644" - "plane" "(-832 -120 144) (-832 -96 144) (-768 -96 144)" + "id" "7525" + "plane" "(872 772 191) (872 780 191) (872 780 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25643" - "plane" "(-832 -96 32) (-832 -120 32) (-768 -120 32)" + "id" "7524" + "plane" "(911 780 191) (911 780 194) (872 780 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[-1 0 0 -3.30273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25642" - "plane" "(-832 -120 32) (-832 -96 32) (-832 -96 144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "7523" + "plane" "(872 772 191) (911 772 191) (911 780 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25641" - "plane" "(-768 -96 32) (-768 -120 32) (-768 -120 144)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "7522" + "plane" "(872 771 192) (911 771 192) (911 772 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25640" - "plane" "(-832 -96 32) (-768 -96 32) (-768 -96 144)" + "id" "7521" + "plane" "(872 771 194) (911 771 194) (911 771 192)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 245.307] 0.25" + "vaxis" "[-1 0 0 156.697] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7520" + "plane" "(872 780 194) (911 780 194) (911 771 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25639" - "plane" "(-768 -120 32) (-832 -120 32) (-832 -120 144)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7519" + "plane" "(911 772 191) (911 771 192) (911 771 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 187 236" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31180" + "id" "2495" side { - "id" "25656" - "plane" "(-864 -144 320) (-864 -128 320) (-576 -128 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7531" + "plane" "(872 768 197) (872 776 197) (844 776 197)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25655" - "plane" "(-864 -128 304) (-864 -144 304) (-576 -144 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7530" + "plane" "(872 776 199) (872 768 199) (844 768 199)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25654" - "plane" "(-864 -144 304) (-864 -128 304) (-864 -128 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7529" + "plane" "(872 768 199) (872 776 199) (872 776 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -281.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25653" - "plane" "(-576 -128 304) (-576 -144 304) (-576 -144 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7528" + "plane" "(844 776 199) (844 768 199) (844 768 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -281.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25652" - "plane" "(-864 -128 304) (-576 -128 304) (-576 -128 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7527" + "plane" "(872 776 199) (844 776 199) (844 776 197)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25651" - "plane" "(-576 -144 304) (-864 -144 304) (-864 -144 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7526" + "plane" "(844 768 199) (872 768 199) (872 768 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 1 -281.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31191" + "id" "2496" side { - "id" "25668" - "plane" "(-688 -144 304) (-688 -96 304) (-592 -96 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7537" + "plane" "(960 768 197) (960 776 197) (952 776 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25667" - "plane" "(-688 -96 240) (-688 -144 240) (-592 -144 240)" + "id" "7536" + "plane" "(960 776 202) (960 768 202) (952 768 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25666" - "plane" "(-688 -144 240) (-688 -96 240) (-688 -96 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7535" + "plane" "(952 776 202) (952 768 202) (952 768 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -277.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25665" - "plane" "(-592 -96 240) (-592 -144 240) (-592 -144 304)" + "id" "7534" + "plane" "(960 768 202) (960 776 202) (960 776 197)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 2.69312] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25664" - "plane" "(-688 -96 240) (-592 -96 240) (-592 -96 304)" + "id" "7533" + "plane" "(960 776 202) (952 776 202) (952 776 197)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 1 2.69312] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25663" - "plane" "(-592 -144 240) (-688 -144 240) (-688 -144 304)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7532" + "plane" "(952 768 202) (960 768 202) (960 768 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 1 -277.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31192" + "id" "2497" side { - "id" "25680" - "plane" "(-752 -128 304) (-752 -96 304) (-688 -96 304)" + "id" "7545" + "plane" "(872 776 236) (872 770 236) (870 768 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25679" - "plane" "(-752 -96 240) (-752 -128 240) (-688 -128 240)" + "id" "7544" + "plane" "(846 768 199) (870 768 199) (872 770 199)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25678" - "plane" "(-752 -128 240) (-752 -96 240) (-752 -96 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" + "id" "7543" + "plane" "(872 770 236) (872 776 236) (872 776 199)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 0.663086] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25677" - "plane" "(-688 -96 240) (-688 -128 240) (-688 -128 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "id" "7542" + "plane" "(844 776 236) (844 770 236) (844 770 199)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -400.656] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25676" - "plane" "(-752 -96 240) (-688 -96 240) (-688 -96 304)" + "id" "7541" + "plane" "(872 776 236) (844 776 236) (844 776 199)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25675" - "plane" "(-688 -128 240) (-752 -128 240) (-752 -128 304)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7540" + "plane" "(846 768 236) (870 768 236) (870 768 199)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7539" + "plane" "(844 770 236) (846 768 236) (846 768 199)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 0.707107 0 -507.023] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7538" + "plane" "(870 768 236) (872 770 236) (872 770 199)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 226.256] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 187 236" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31195" + "id" "2498" side { - "id" "25692" - "plane" "(-848 -144 336) (-848 -128 336) (-592 -128 336)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7551" + "plane" "(1020 768 202) (1020 776 202) (952 776 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25691" - "plane" "(-848 -128 320) (-848 -144 320) (-592 -144 320)" + "id" "7550" + "plane" "(1020 776 228) (1020 768 228) (952 768 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25690" - "plane" "(-848 -144 320) (-848 -128 320) (-848 -128 336)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7549" + "plane" "(1020 768 228) (1020 776 228) (1020 776 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25689" - "plane" "(-592 -128 320) (-592 -144 320) (-592 -144 336)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7548" + "plane" "(952 776 228) (952 768 228) (952 768 202)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -320.656] 0.25" + "vaxis" "[0 0 1 -373.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25688" - "plane" "(-848 -128 320) (-592 -128 320) (-592 -128 336)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7547" + "plane" "(1020 776 228) (952 776 228) (952 776 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25687" - "plane" "(-592 -144 320) (-848 -144 320) (-848 -144 336)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7546" + "plane" "(952 768 228) (1020 768 228) (1020 768 202)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31198" + "id" "2499" side { - "id" "25704" - "plane" "(-832 -144 352) (-832 -128 352) (-608 -128 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7557" + "plane" "(960 768 228) (960 776 228) (952 776 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25703" - "plane" "(-832 -128 336) (-832 -144 336) (-608 -144 336)" + "id" "7556" + "plane" "(960 776 244) (960 768 244) (952 768 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25702" - "plane" "(-832 -144 336) (-832 -128 336) (-832 -128 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7555" + "plane" "(952 776 244) (952 768 244) (952 768 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25701" - "plane" "(-608 -128 336) (-608 -144 336) (-608 -144 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7554" + "plane" "(960 768 244) (960 776 244) (960 776 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 14.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25700" - "plane" "(-832 -128 336) (-608 -128 336) (-608 -128 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7553" + "plane" "(960 776 244) (952 776 244) (952 776 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 1 14.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25699" - "plane" "(-608 -144 336) (-832 -144 336) (-832 -144 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7552" + "plane" "(952 768 244) (960 768 244) (960 768 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 1 -457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31201" + "id" "2500" side { - "id" "25716" - "plane" "(-816 -144 368) (-816 -128 368) (-624 -128 368)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7563" + "plane" "(764 768 228) (764 776 228) (756 776 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -416.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25715" - "plane" "(-816 -128 352) (-816 -144 352) (-624 -144 352)" + "id" "7562" + "plane" "(764 776 244) (764 768 244) (756 768 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25714" - "plane" "(-816 -144 352) (-816 -128 352) (-816 -128 368)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7561" + "plane" "(756 776 244) (756 768 244) (756 768 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25713" - "plane" "(-624 -128 352) (-624 -144 352) (-624 -144 368)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7560" + "plane" "(764 768 244) (764 776 244) (764 776 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -160.663] 0.25" + "vaxis" "[0 0 1 -457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25712" - "plane" "(-816 -128 352) (-624 -128 352) (-624 -128 368)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7559" + "plane" "(764 776 244) (756 776 244) (756 776 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 0 1 14.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25711" - "plane" "(-624 -144 352) (-816 -144 352) (-816 -144 368)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7558" + "plane" "(756 768 244) (764 768 244) (764 768 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -416.697] 0.25" + "vaxis" "[0 0 1 -457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31204" + "id" "2501" side { - "id" "25728" - "plane" "(-800 -144 384) (-800 -128 384) (-640 -128 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7569" + "plane" "(756 768 228) (756 776 228) (732 776 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25727" - "plane" "(-800 -128 368) (-800 -144 368) (-640 -144 368)" + "id" "7568" + "plane" "(756 776 244) (756 768 244) (732 768 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25726" - "plane" "(-800 -144 368) (-800 -128 368) (-800 -128 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7567" + "plane" "(756 768 244) (756 776 244) (756 776 228)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 432.663] 0.25" + "vaxis" "[0 0 1 -365.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25725" - "plane" "(-640 -128 368) (-640 -144 368) (-640 -144 384)" - "material" "DEV/REFLECTIVITY_30B" + "id" "7566" + "plane" "(732 776 244) (732 768 244) (732 768 228)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25724" - "plane" "(-800 -128 368) (-640 -128 368) (-640 -128 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7565" + "plane" "(756 776 244) (732 776 244) (732 776 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25723" - "plane" "(-640 -144 368) (-800 -144 368) (-800 -144 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7564" + "plane" "(732 768 244) (756 768 244) (756 768 228)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31206" + "id" "2502" side { - "id" "25740" - "plane" "(-784 -144 400) (-784 -128 400) (-656 -128 400)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7575" + "plane" "(1020 768 228) (1020 776 228) (960 776 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25739" - "plane" "(-784 -128 384) (-784 -144 384) (-656 -144 384)" + "id" "7574" + "plane" "(1020 776 244) (1020 768 244) (960 768 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25738" - "plane" "(-784 -144 384) (-784 -128 384) (-784 -128 400)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7573" + "plane" "(1020 768 244) (1020 776 244) (1020 776 228)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 432.663] 0.25" + "vaxis" "[0 0 1 -365.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25737" - "plane" "(-656 -128 384) (-656 -144 384) (-656 -144 400)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7572" + "plane" "(960 776 244) (960 768 244) (960 768 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25736" - "plane" "(-784 -128 384) (-656 -128 384) (-656 -128 400)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7571" + "plane" "(1020 776 244) (960 776 244) (960 776 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 1 -5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25735" - "plane" "(-656 -144 384) (-784 -144 384) (-784 -144 400)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7570" + "plane" "(960 768 244) (1020 768 244) (1020 768 228)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31209" + "id" "2503" side { - "id" "25752" - "plane" "(-768 -144 416) (-768 -128 416) (-672 -128 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7581" + "plane" "(1020 768 244) (1020 776 244) (732 776 244)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25751" - "plane" "(-768 -128 400) (-768 -144 400) (-672 -144 400)" + "id" "7580" + "plane" "(1020 776 288) (1020 768 288) (732 768 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25750" - "plane" "(-768 -144 400) (-768 -128 400) (-768 -128 416)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7579" + "plane" "(1020 768 288) (1020 776 288) (1020 776 244)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 432.663] 0.25" + "vaxis" "[0 0 1 -429.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25749" - "plane" "(-672 -128 400) (-672 -144 400) (-672 -144 416)" - "material" "DEV/REFLECTIVITY_30B" + "id" "7578" + "plane" "(732 776 288) (732 768 288) (732 768 244)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25748" - "plane" "(-768 -128 400) (-672 -128 400) (-672 -128 416)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7577" + "plane" "(1020 776 288) (732 776 288) (732 776 244)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 1 -5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25747" - "plane" "(-672 -144 400) (-768 -144 400) (-768 -144 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7576" + "plane" "(732 768 288) (1020 768 288) (1020 768 244)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31211" + "id" "2504" side { - "id" "25764" - "plane" "(-752 -144 432) (-752 -128 432) (-688 -128 432)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7587" + "plane" "(844 776 304) (844 768 304) (836 768 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25763" - "plane" "(-752 -128 416) (-752 -144 416) (-688 -144 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7586" + "plane" "(844 768 288) (844 776 288) (836 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 368.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25762" - "plane" "(-752 -144 416) (-752 -128 416) (-752 -128 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7585" + "plane" "(844 768 304) (844 776 304) (844 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25761" - "plane" "(-688 -128 416) (-688 -144 416) (-688 -144 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7584" + "plane" "(836 776 304) (836 768 304) (836 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25760" - "plane" "(-752 -128 416) (-688 -128 416) (-688 -128 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7583" + "plane" "(844 776 304) (836 776 304) (836 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25759" - "plane" "(-688 -144 416) (-752 -144 416) (-752 -144 432)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7582" + "plane" "(836 768 304) (844 768 304) (844 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 368.697] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31213" + "id" "2505" side { - "id" "25776" - "plane" "(-736 -144 448) (-736 -128 448) (-704 -128 448)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7593" + "plane" "(872 776 296) (872 768 296) (844 768 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25775" - "plane" "(-736 -128 432) (-736 -144 432) (-704 -144 432)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7592" + "plane" "(872 768 288) (872 776 288) (844 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 400.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25774" - "plane" "(-736 -144 432) (-736 -128 432) (-736 -128 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7591" + "plane" "(872 768 296) (872 776 296) (872 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25773" - "plane" "(-704 -128 432) (-704 -144 432) (-704 -144 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7590" + "plane" "(844 776 296) (844 768 296) (844 768 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25772" - "plane" "(-736 -128 432) (-704 -128 432) (-704 -128 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7589" + "plane" "(872 776 296) (844 776 296) (844 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25771" - "plane" "(-704 -144 432) (-736 -144 432) (-736 -144 448)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7588" + "plane" "(844 768 296) (872 768 296) (872 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 400.697] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31239" + "id" "2506" side { - "id" "25793" - "plane" "(-592 432 304) (-720 432 304) (-720 -128 304)" + "id" "7599" + "plane" "(880 776 304) (880 768 304) (872 768 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25792" - "plane" "(-720 -128 432) (-720 -128 304) (-720 432 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7598" + "plane" "(880 768 288) (880 776 288) (872 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25791" - "plane" "(-720 432 432) (-720 432 304) (-592 432 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7597" + "plane" "(880 768 304) (880 776 304) (880 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -48.6602] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25790" - "plane" "(-592 -128 304) (-720 -128 304) (-720 -128 432)" + "id" "7596" + "plane" "(872 776 304) (872 768 304) (872 768 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25789" - "plane" "(-592 432 304) (-592 -128 304) (-720 -128 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7595" + "plane" "(880 776 304) (872 776 304) (872 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7594" + "plane" "(872 768 304) (880 768 304) (880 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 113 138" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31255" + "id" "2507" side { - "id" "25805" - "plane" "(-1024 -128 304) (-1024 -96 304) (-864 -96 304)" + "id" "7606" + "plane" "(844 776 312) (844 768 312) (838 768 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25804" - "plane" "(-1024 -96 0) (-1024 -128 0) (-864 -128 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7605" + "plane" "(838 768 304) (844 768 304) (844 776 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 368.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25803" - "plane" "(-1024 -128 0) (-1024 -96 0) (-1024 -96 304)" + "id" "7604" + "plane" "(844 768 312) (844 776 312) (844 776 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25802" - "plane" "(-864 -96 0) (-864 -128 0) (-864 -128 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7603" + "plane" "(836 776 312) (836 770 312) (836 770 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25801" - "plane" "(-1024 -96 0) (-864 -96 0) (-864 -96 304)" + "id" "7602" + "plane" "(844 776 312) (836 776 312) (836 776 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25800" - "plane" "(-864 -128 0) (-1024 -128 0) (-1024 -128 304)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7601" + "plane" "(838 768 312) (844 768 312) (844 768 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 368.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7600" + "plane" "(836 770 312) (838 768 312) (838 768 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31258" + "id" "2508" side { - "id" "25815" - "plane" "(-720 16 304) (-1024 16 304) (-1024 -112 304)" + "id" "7613" + "plane" "(880 776 312) (880 770 312) (878 768 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25814" - "plane" "(-1024 16 432) (-1024 16 304) (-720 16 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7612" + "plane" "(878 768 304) (880 770 304) (880 776 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -384.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25813" - "plane" "(-720 16 432) (-720 16 304) (-720 -112 304)" + "id" "7611" + "plane" "(872 776 312) (872 768 312) (872 768 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25812" - "plane" "(-1024 -112 304) (-1024 16 304) (-1024 16 432)" + "id" "7610" + "plane" "(880 770 312) (880 776 312) (880 776 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7609" + "plane" "(880 776 312) (872 776 312) (872 776 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25811" - "plane" "(-720 -112 304) (-1024 -112 304) (-1024 16 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7608" + "plane" "(872 768 312) (878 768 312) (878 768 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -384.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7607" + "plane" "(878 768 312) (880 770 312) (880 770 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 113 138" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31263" + "id" "2509" side { - "id" "25825" - "plane" "(-848 -128 304) (-720 -128 304) (-720 432 304)" + "id" "7619" + "plane" "(872 776 312) (872 768 312) (844 768 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25824" - "plane" "(-720 432 432) (-720 432 304) (-720 -128 304)" + "id" "7618" + "plane" "(872 768 296) (872 776 296) (844 776 296)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 400.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7617" + "plane" "(872 768 312) (872 776 312) (872 776 296)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25823" - "plane" "(-720 -128 432) (-720 -128 304) (-848 -128 304)" + "id" "7616" + "plane" "(844 776 312) (844 768 312) (844 768 296)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25822" - "plane" "(-848 432 304) (-720 432 304) (-720 432 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7615" + "plane" "(872 776 312) (844 776 312) (844 776 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25821" - "plane" "(-848 -128 304) (-848 432 304) (-720 432 432)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7614" + "plane" "(844 768 312) (872 768 312) (872 768 296)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 144.697] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 113 138" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31310" + "id" "2510" side { - "id" "25965" - "plane" "(-848 432 304) (-848 448 304) (-592 448 304)" + "id" "7627" + "plane" "(880 776 368) (880 770 368) (878 768 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25964" - "plane" "(-848 448 0) (-848 432 0) (-592 432 0)" + "id" "7626" + "plane" "(838 768 312) (878 768 312) (880 770 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25963" - "plane" "(-848 432 0) (-848 448 0) (-848 448 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7625" + "plane" "(880 770 368) (880 776 368) (880 776 312)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 448.663] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25962" - "plane" "(-592 448 0) (-592 432 0) (-592 432 304)" + "id" "7624" + "plane" "(836 776 368) (836 770 368) (836 770 312)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -400.656] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7623" + "plane" "(880 776 368) (836 776 368) (836 776 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25961" - "plane" "(-848 448 0) (-592 448 0) (-592 448 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7622" + "plane" "(838 768 368) (878 768 368) (878 768 312)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 144.697] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25960" - "plane" "(-592 432 0) (-848 432 0) (-848 432 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7621" + "plane" "(836 770 368) (838 768 368) (838 768 312)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 0.707107 0 -17.6514] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7620" + "plane" "(878 768 368) (880 770 368) (880 770 312)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 184.882] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31480" + "id" "2511" side { - "id" "25977" - "plane" "(-592 208 304) (-592 448 304) (-576 448 304)" + "id" "7633" + "plane" "(836 776 412) (836 775 412) (764 775 412)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25976" - "plane" "(-592 448 0) (-592 208 0) (-576 208 0)" + "id" "7632" + "plane" "(836 775 288) (836 776 288) (764 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25975" - "plane" "(-592 208 0) (-592 448 0) (-592 448 304)" + "id" "7631" + "plane" "(836 775 412) (836 776 412) (836 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25974" - "plane" "(-576 448 0) (-576 208 0) (-576 208 304)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7630" + "plane" "(764 776 412) (764 775 412) (764 775 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25973" - "plane" "(-592 448 0) (-576 448 0) (-576 448 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7629" + "plane" "(836 776 412) (764 776 412) (764 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25972" - "plane" "(-576 208 0) (-592 208 0) (-592 208 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7628" + "plane" "(764 775 412) (836 775 412) (836 775 288)" + "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" + "uaxis" "[-1 0 0 312.889] 0.140625" + "vaxis" "[0 0 -1 165.161] 0.242188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31487" + "id" "2512" side { - "id" "25989" - "plane" "(-592 64 96) (-592 208 96) (-576 208 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7640" + "plane" "(836 776 412) (836 770 412) (830 770 412)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25988" - "plane" "(-592 208 0) (-592 64 0) (-576 64 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7639" + "plane" "(830 770 292) (836 770 292) (836 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 336.697] 0.25" + "vaxis" "[0 -1 0 -23.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25987" - "plane" "(-592 64 0) (-592 208 0) (-592 208 96)" + "id" "7638" + "plane" "(836 770 412) (836 776 412) (836 776 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 7.33984] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25986" - "plane" "(-576 208 0) (-576 64 0) (-576 64 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7637" + "plane" "(828 776 412) (828 772 412) (828 772 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25985" - "plane" "(-592 208 0) (-576 208 0) (-576 208 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7636" + "plane" "(830 770 412) (836 770 412) (836 770 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 336.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25984" - "plane" "(-576 64 0) (-592 64 0) (-592 64 96)" + "id" "7635" + "plane" "(828 772 412) (830 770 412) (830 770 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7634" + "plane" "(836 776 412) (828 776 412) (828 776 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31492" + "id" "2513" side { - "id" "26001" - "plane" "(-592 64 304) (-592 208 304) (-576 208 304)" + "id" "7647" + "plane" "(772 776 412) (772 772 412) (770 770 412)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26000" - "plane" "(-592 208 160) (-592 64 160) (-576 64 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7646" + "plane" "(770 770 292) (772 772 292) (772 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -464.697] 0.25" + "vaxis" "[0 -1 0 -23.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25999" - "plane" "(-592 64 160) (-592 208 160) (-592 208 304)" + "id" "7645" + "plane" "(764 776 412) (764 770 412) (764 770 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 7.33984] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25998" - "plane" "(-576 208 160) (-576 64 160) (-576 64 304)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7644" + "plane" "(772 772 412) (772 776 412) (772 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25997" - "plane" "(-592 208 160) (-576 208 160) (-576 208 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7643" + "plane" "(764 770 412) (770 770 412) (770 770 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -464.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25996" - "plane" "(-576 64 160) (-592 64 160) (-592 64 304)" + "id" "7642" + "plane" "(770 770 412) (772 772 412) (772 772 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7641" + "plane" "(772 776 412) (764 776 412) (764 776 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31494" + "id" "2514" side { - "id" "26013" - "plane" "(-592 128 160) (-592 144 160) (-576 144 160)" + "id" "7653" + "plane" "(764 776 304) (764 768 304) (756 768 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26012" - "plane" "(-592 144 96) (-592 128 96) (-576 128 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7652" + "plane" "(764 768 288) (764 776 288) (756 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 48.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26011" - "plane" "(-592 128 96) (-592 144 96) (-592 144 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7651" + "plane" "(764 768 304) (764 776 304) (764 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -48.6602] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26010" - "plane" "(-576 144 96) (-576 128 96) (-576 128 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7650" + "plane" "(756 776 304) (756 768 304) (756 768 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26009" - "plane" "(-592 144 96) (-576 144 96) (-576 144 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7649" + "plane" "(764 776 304) (756 776 304) (756 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26008" - "plane" "(-576 128 96) (-592 128 96) (-592 128 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7648" + "plane" "(756 768 304) (764 768 304) (764 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 48.6973] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31498" + "id" "2515" side { - "id" "26025" - "plane" "(-592 64 160) (-592 208 160) (-584 208 160)" + "id" "7660" + "plane" "(764 776 312) (764 770 312) (762 768 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26024" - "plane" "(-592 208 96) (-592 64 96) (-584 64 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7659" + "plane" "(762 768 304) (764 770 304) (764 776 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -432.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26023" - "plane" "(-592 64 96) (-592 208 96) (-592 208 160)" + "id" "7658" + "plane" "(756 776 312) (756 768 312) (756 768 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26022" - "plane" "(-584 208 96) (-584 64 96) (-584 64 160)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7657" + "plane" "(764 770 312) (764 776 312) (764 776 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26021" - "plane" "(-592 208 96) (-584 208 96) (-584 208 160)" + "id" "7656" + "plane" "(764 776 312) (756 776 312) (756 776 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26020" - "plane" "(-584 64 96) (-592 64 96) (-592 64 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7655" + "plane" "(756 768 312) (762 768 312) (762 768 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -432.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7654" + "plane" "(762 768 312) (764 770 312) (764 770 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 124" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31890" + "id" "2516" side { - "id" "26043" - "plane" "(128 -2976 96) (128 -2944 96) (320 -2944 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7666" + "plane" "(756 776 296) (756 768 296) (732 768 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26042" - "plane" "(128 -2944 0) (128 -2976 0) (320 -2976 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7665" + "plane" "(756 768 288) (756 776 288) (732 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 448.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26041" - "plane" "(128 -2976 0) (128 -2944 0) (128 -2944 96)" + "id" "7664" + "plane" "(756 768 296) (756 776 296) (756 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26040" - "plane" "(320 -2944 0) (320 -2976 0) (320 -2976 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "7663" + "plane" "(732 776 296) (732 768 296) (732 768 288)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -160430,99 +163643,109 @@ world } side { - "id" "26039" - "plane" "(128 -2944 0) (320 -2944 0) (320 -2944 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7662" + "plane" "(756 776 296) (732 776 296) (732 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26038" - "plane" "(320 -2976 0) (128 -2976 0) (128 -2976 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7661" + "plane" "(732 768 296) (756 768 296) (756 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 448.697] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 237 122" - "groupid" "31889" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31902" + "id" "2517" side { - "id" "26055" - "plane" "(-128 -2976 32) (-128 -2944 32) (128 -2944 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7673" + "plane" "(764 770 376) (762 768 376) (732 768 376)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26054" - "plane" "(-128 -2944 0) (-128 -2976 0) (128 -2976 0)" + "id" "7672" + "plane" "(764 770 312) (764 776 312) (732 776 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 21.3333] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26053" - "plane" "(-128 -2976 0) (-128 -2944 0) (-128 -2944 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7671" + "plane" "(764 770 376) (764 776 376) (764 776 312)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 448.663] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26052" - "plane" "(128 -2944 0) (128 -2976 0) (128 -2976 96)" + "id" "7670" + "plane" "(764 776 376) (732 776 376) (732 776 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26051" - "plane" "(128 -2944 96) (-128 -2944 32) (-128 -2944 0)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7669" + "plane" "(732 768 376) (762 768 376) (762 768 312)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 192.697] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26050" - "plane" "(128 -2976 0) (-128 -2976 0) (-128 -2976 32)" + "id" "7668" + "plane" "(762 768 376) (764 770 376) (764 770 312)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 368.786] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7667" + "plane" "(732 776 376) (732 768 376) (732 768 312)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -160530,77 +163753,76 @@ world } editor { - "color" "0 237 122" - "groupid" "31901" - "visgroupid" "23" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31939" + "id" "2518" side { - "id" "26085" - "plane" "(-800 -3264 0) (-800 -2976 0) (-512 -2976 0)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7679" + "plane" "(756 768 312) (732 768 312) (732 776 312)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26084" - "plane" "(-800 -2976 -64) (-800 -3264 -64) (-512 -3264 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7678" + "plane" "(756 776 296) (732 776 296) (732 768 296)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 448.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26083" - "plane" "(-800 -3264 -64) (-800 -2976 -64) (-800 -2976 0)" + "id" "7677" + "plane" "(756 768 312) (756 776 312) (756 776 296)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26082" - "plane" "(-512 -2976 -64) (-512 -3264 -64) (-512 -3264 0)" + "id" "7676" + "plane" "(756 776 312) (732 776 312) (732 776 296)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26081" - "plane" "(-800 -2976 -64) (-512 -2976 -64) (-512 -2976 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7675" + "plane" "(732 768 312) (756 768 312) (756 768 296)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 192.697] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26080" - "plane" "(-512 -3264 -64) (-800 -3264 -64) (-800 -3264 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "7674" + "plane" "(732 776 312) (732 768 312) (732 768 296)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -160608,11205 +163830,11835 @@ world } editor { - "color" "0 176 105" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "31941" + "id" "2519" side { - "id" "26097" - "plane" "(0 -3200 288) (128 -3072 288) (320 -3072 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7687" + "plane" "(798 768 298) (798 776 298) (802 776 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 64.6973] 0.25" + "vaxis" "[0 -1 0 472.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26096" - "plane" "(128 -3072 0) (0 -3200 0) (320 -3200 0)" + "id" "7686" + "plane" "(803 768 292) (803 776 292) (797 776 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26095" - "plane" "(0 -3200 0) (128 -3072 0) (128 -3072 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7685" + "plane" "(803 768 297) (803 776 297) (803 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26094" - "plane" "(320 -3072 0) (320 -3200 0) (320 -3200 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7684" + "plane" "(797 776 297) (797 768 297) (797 768 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26093" - "plane" "(128 -3072 0) (320 -3072 0) (320 -3072 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7683" + "plane" "(797 768 297) (798 768 298) (802 768 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 64.6973] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26092" - "plane" "(320 -3200 0) (0 -3200 0) (0 -3200 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7682" + "plane" "(798 776 298) (798 768 298) (797 768 297)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "0 199 232" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "32001" side { - "id" "26169" - "plane" "(0 -3328 160) (0 -3296 160) (32 -3296 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7681" + "plane" "(802 768 298) (802 776 298) (803 776 297)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26168" - "plane" "(0 -3296 0) (0 -3328 0) (32 -3328 0)" + "id" "7680" + "plane" "(803 776 297) (802 776 298) (798 776 298)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - side + editor { - "id" "26167" - "plane" "(0 -3328 0) (0 -3296 0) (0 -3296 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + solid + { + "id" "2520" side { - "id" "26166" - "plane" "(32 -3296 0) (32 -3328 0) (32 -3328 160)" + "id" "7695" + "plane" "(802 776 368) (802 770 368) (801 769 368)" "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" "26165" - "plane" "(0 -3296 0) (32 -3296 0) (32 -3296 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26164" - "plane" "(32 -3328 0) (0 -3328 0) (0 -3328 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7694" + "plane" "(799 769 298) (801 769 298) (802 770 298)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "0 199 232" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "32006" side { - "id" "26181" - "plane" "(0 -3456 160) (0 -3424 160) (32 -3424 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7693" + "plane" "(798 776 368) (798 770 368) (798 770 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26180" - "plane" "(0 -3424 0) (0 -3456 0) (32 -3456 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7692" + "plane" "(802 770 368) (802 776 368) (802 776 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26179" - "plane" "(0 -3456 0) (0 -3424 0) (0 -3424 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7691" + "plane" "(801 769 368) (802 770 368) (802 770 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26178" - "plane" "(32 -3424 0) (32 -3456 0) (32 -3456 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7690" + "plane" "(798 770 368) (799 769 368) (799 769 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26177" - "plane" "(0 -3424 0) (32 -3424 0) (32 -3424 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7689" + "plane" "(799 769 368) (801 769 368) (801 769 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -160.697] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26176" - "plane" "(32 -3456 0) (0 -3456 0) (0 -3456 160)" + "id" "7688" + "plane" "(802 776 368) (798 776 368) (798 776 298)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32041" + "id" "2521" side { - "id" "26307" - "plane" "(0 -3392 160) (0 -3360 160) (32 -3360 160)" + "id" "7701" + "plane" "(1186 776 376) (1186 768 376) (762 768 376)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26306" - "plane" "(0 -3360 112) (0 -3392 112) (32 -3392 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7700" + "plane" "(1186 768 368) (1186 776 368) (762 776 368)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26305" - "plane" "(0 -3392 112) (0 -3360 112) (0 -3360 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7699" + "plane" "(1186 768 376) (1186 776 376) (1186 776 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26304" - "plane" "(32 -3360 112) (32 -3392 112) (32 -3392 160)" + "id" "7698" + "plane" "(762 776 376) (762 768 376) (762 768 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26303" - "plane" "(32 -3392 112) (0 -3392 112) (0 -3392 160)" + "id" "7697" + "plane" "(1186 776 376) (762 776 376) (762 776 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26302" - "plane" "(0 -3360 112) (32 -3360 112) (32 -3360 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7696" + "plane" "(762 768 376) (1186 768 376) (1186 768 368)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 445.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32042" + "id" "2522" side { - "id" "26313" - "plane" "(0 -3360 160) (0 -3328 160) (32 -3328 160)" + "id" "7709" + "plane" "(914 768 298) (914 776 298) (918 776 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 472.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7708" + "plane" "(919 768 292) (919 776 292) (913 776 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26312" - "plane" "(0 -3328 96) (0 -3360 112) (32 -3360 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7707" + "plane" "(919 768 297) (919 776 297) (919 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26311" - "plane" "(0 -3328 160) (0 -3360 160) (0 -3360 112)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7706" + "plane" "(913 776 297) (913 768 297) (913 768 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26310" - "plane" "(32 -3328 96) (32 -3360 112) (32 -3360 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7705" + "plane" "(913 768 297) (914 768 298) (918 768 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26309" - "plane" "(0 -3328 96) (32 -3328 96) (32 -3328 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7704" + "plane" "(914 776 298) (914 768 298) (913 768 297)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26308" - "plane" "(32 -3360 112) (0 -3360 112) (0 -3360 160)" + "id" "7703" + "plane" "(918 768 298) (918 776 298) (919 776 297)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7702" + "plane" "(919 776 297) (918 776 298) (914 776 298)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32043" + "id" "2523" side { - "id" "26319" - "plane" "(0 -3424 160) (0 -3392 160) (32 -3392 160)" + "id" "7717" + "plane" "(918 776 368) (918 770 368) (917 769 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26318" - "plane" "(0 -3392 112) (0 -3424 96) (32 -3424 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7716" + "plane" "(915 769 298) (917 769 298) (918 770 298)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26317" - "plane" "(0 -3424 96) (0 -3392 112) (0 -3392 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7715" + "plane" "(914 776 368) (914 770 368) (914 770 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26316" - "plane" "(32 -3424 160) (32 -3392 160) (32 -3392 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7714" + "plane" "(918 770 368) (918 776 368) (918 776 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26315" - "plane" "(32 -3424 96) (0 -3424 96) (0 -3424 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7713" + "plane" "(917 769 368) (918 770 368) (918 770 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26314" - "plane" "(0 -3392 112) (32 -3392 112) (32 -3392 160)" + "id" "7712" + "plane" "(914 770 368) (915 769 368) (915 769 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7711" + "plane" "(915 769 368) (917 769 368) (917 769 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -112.697] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7710" + "plane" "(918 776 368) (914 776 368) (914 776 298)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32055" + "id" "2524" side { - "id" "26331" - "plane" "(0 -3216 288) (0 -3200 288) (32 -3200 288)" + "id" "7723" + "plane" "(952 776 412) (952 775 412) (880 775 412)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26330" - "plane" "(0 -3200 0) (0 -3216 0) (32 -3216 0)" + "id" "7722" + "plane" "(952 775 288) (952 776 288) (880 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26329" - "plane" "(0 -3216 0) (0 -3200 0) (0 -3200 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7721" + "plane" "(952 775 412) (952 776 412) (952 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26328" - "plane" "(32 -3200 0) (32 -3216 0) (32 -3216 288)" + "id" "7720" + "plane" "(880 776 412) (880 775 412) (880 775 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26327" - "plane" "(0 -3200 0) (32 -3200 0) (32 -3200 288)" + "id" "7719" + "plane" "(952 776 412) (880 776 412) (880 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26326" - "plane" "(32 -3216 0) (0 -3216 0) (0 -3216 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7718" + "plane" "(880 775 412) (952 775 412) (952 775 288)" + "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" + "uaxis" "[-1 0 0 113.778] 0.140625" + "vaxis" "[0 0 -1 165.161] 0.242188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32057" + "id" "2525" side { - "id" "26343" - "plane" "(0 -3296 32) (0 -3216 32) (32 -3216 32)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7730" + "plane" "(888 776 412) (888 772 412) (886 770 412)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26342" - "plane" "(0 -3216 0) (0 -3296 0) (32 -3296 0)" + "id" "7729" + "plane" "(886 770 292) (888 772 292) (888 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -416.697] 0.25" + "vaxis" "[0 -1 0 -23.3398] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7728" + "plane" "(880 776 412) (880 770 412) (880 770 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 7.33984] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26341" - "plane" "(0 -3296 0) (0 -3216 0) (0 -3216 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7727" + "plane" "(888 772 412) (888 776 412) (888 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26340" - "plane" "(32 -3216 0) (32 -3296 0) (32 -3296 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7726" + "plane" "(880 770 412) (886 770 412) (886 770 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -416.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26339" - "plane" "(0 -3216 0) (32 -3216 0) (32 -3216 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7725" + "plane" "(886 770 412) (888 772 412) (888 772 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26338" - "plane" "(32 -3296 0) (0 -3296 0) (0 -3296 32)" + "id" "7724" + "plane" "(888 776 412) (880 776 412) (880 776 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32061" + "id" "2526" side { - "id" "26355" - "plane" "(0 -3296 160) (0 -3216 160) (32 -3216 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7737" + "plane" "(952 776 412) (952 770 412) (946 770 412)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26354" - "plane" "(0 -3216 96) (0 -3296 96) (32 -3296 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7736" + "plane" "(946 770 292) (952 770 292) (952 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 288.697] 0.25" + "vaxis" "[0 -1 0 -23.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26353" - "plane" "(0 -3296 96) (0 -3216 96) (0 -3216 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7735" + "plane" "(952 770 412) (952 776 412) (952 776 292)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 7.33984] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26352" - "plane" "(32 -3216 96) (32 -3296 96) (32 -3296 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7734" + "plane" "(944 776 412) (944 772 412) (944 772 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26351" - "plane" "(0 -3216 96) (32 -3216 96) (32 -3216 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7733" + "plane" "(946 770 412) (952 770 412) (952 770 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 288.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26350" - "plane" "(32 -3296 96) (0 -3296 96) (0 -3296 160)" + "id" "7732" + "plane" "(944 772 412) (946 770 412) (946 770 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7731" + "plane" "(952 776 412) (944 776 412) (944 776 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32068" + "id" "2527" side { - "id" "26367" - "plane" "(0 -3296 288) (0 -3216 288) (32 -3216 288)" + "id" "7743" + "plane" "(960 776 304) (960 768 304) (952 768 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26366" - "plane" "(0 -3216 256) (0 -3296 256) (32 -3296 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7742" + "plane" "(960 768 288) (960 776 288) (952 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 320.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26365" - "plane" "(0 -3296 256) (0 -3216 256) (0 -3216 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7741" + "plane" "(960 768 304) (960 776 304) (960 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26364" - "plane" "(32 -3216 256) (32 -3296 256) (32 -3296 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7740" + "plane" "(952 776 304) (952 768 304) (952 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26363" - "plane" "(0 -3216 256) (32 -3216 256) (32 -3216 288)" + "id" "7739" + "plane" "(960 776 304) (952 776 304) (952 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26362" - "plane" "(32 -3296 256) (0 -3296 256) (0 -3296 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7738" + "plane" "(952 768 304) (960 768 304) (960 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 320.697] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32074" + "id" "2528" side { - "id" "26379" - "plane" "(0 -3456 288) (0 -3296 288) (32 -3296 288)" + "id" "7749" + "plane" "(988 776 296) (988 768 296) (960 768 296)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26378" - "plane" "(0 -3296 160) (0 -3456 160) (32 -3456 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7748" + "plane" "(988 768 288) (988 776 288) (960 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 352.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26377" - "plane" "(0 -3456 160) (0 -3296 160) (0 -3296 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7747" + "plane" "(988 768 296) (988 776 296) (988 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26376" - "plane" "(32 -3296 160) (32 -3456 160) (32 -3456 288)" + "id" "7746" + "plane" "(960 776 296) (960 768 296) (960 768 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26375" - "plane" "(0 -3296 160) (32 -3296 160) (32 -3296 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7745" + "plane" "(988 776 296) (960 776 296) (960 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26374" - "plane" "(32 -3456 160) (0 -3456 160) (0 -3456 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7744" + "plane" "(960 768 296) (988 768 296) (988 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 352.697] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32079" + "id" "2529" side { - "id" "26391" - "plane" "(8 -3296 96) (8 -3216 96) (32 -3216 96)" + "id" "7756" + "plane" "(960 776 312) (960 768 312) (954 768 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26390" - "plane" "(8 -3216 32) (8 -3296 32) (32 -3296 32)" + "id" "7755" + "plane" "(954 768 304) (960 768 304) (960 776 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 320.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7754" + "plane" "(960 768 312) (960 776 312) (960 776 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26389" - "plane" "(8 -3296 32) (8 -3216 32) (8 -3216 96)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7753" + "plane" "(952 776 312) (952 770 312) (952 770 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26388" - "plane" "(32 -3216 32) (32 -3296 32) (32 -3296 96)" + "id" "7752" + "plane" "(960 776 312) (952 776 312) (952 776 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26387" - "plane" "(8 -3216 32) (32 -3216 32) (32 -3216 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7751" + "plane" "(954 768 312) (960 768 312) (960 768 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 320.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26386" - "plane" "(32 -3296 32) (8 -3296 32) (8 -3296 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7750" + "plane" "(952 770 312) (954 768 312) (954 768 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 211 156" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32091" + "id" "2530" side { - "id" "26415" - "plane" "(-8 -3296 32) (-8 -3216 32) (0 -3216 32)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7762" + "plane" "(988 776 312) (988 768 312) (960 768 312)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26414" - "plane" "(-8 -3216 24) (-8 -3296 24) (0 -3296 24)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7761" + "plane" "(988 768 296) (988 776 296) (960 776 296)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 352.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26413" - "plane" "(-8 -3296 24) (-8 -3216 24) (-8 -3216 32)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7760" + "plane" "(988 768 312) (988 776 312) (988 776 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26412" - "plane" "(0 -3216 24) (0 -3296 24) (0 -3296 32)" + "id" "7759" + "plane" "(960 776 312) (960 768 312) (960 768 296)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 63.998] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26411" - "plane" "(-8 -3216 24) (0 -3216 24) (0 -3216 32)" + "id" "7758" + "plane" "(988 776 312) (960 776 312) (960 776 296)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26410" - "plane" "(0 -3296 24) (-8 -3296 24) (-8 -3296 32)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7757" + "plane" "(960 768 312) (988 768 312) (988 768 296)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 96.6973] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 211 156" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32095" + "id" "2531" side { - "id" "26427" - "plane" "(-8 -3296 160) (-8 -3216 160) (0 -3216 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7770" + "plane" "(996 776 368) (996 770 368) (994 768 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26426" - "plane" "(-8 -3216 152) (-8 -3296 152) (0 -3296 152)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7769" + "plane" "(954 768 312) (994 768 312) (996 770 312)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26425" - "plane" "(-8 -3296 152) (-8 -3216 152) (-8 -3216 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7768" + "plane" "(996 770 368) (996 776 368) (996 776 312)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 448.663] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26424" - "plane" "(0 -3216 152) (0 -3296 152) (0 -3296 160)" + "id" "7767" + "plane" "(952 776 368) (952 770 368) (952 770 312)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -400.656] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7766" + "plane" "(996 776 368) (952 776 368) (952 776 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 63.998] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26423" - "plane" "(-8 -3216 152) (0 -3216 152) (0 -3216 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7765" + "plane" "(954 768 368) (994 768 368) (994 768 312)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 96.6973] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26422" - "plane" "(0 -3296 152) (-8 -3296 152) (-8 -3296 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7764" + "plane" "(952 770 368) (954 768 368) (954 768 312)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 0.707107 0 -201.556] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7763" + "plane" "(994 768 368) (996 770 368) (996 770 312)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 0.980075] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 211 156" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32096" + "id" "2532" side { - "id" "26439" - "plane" "(8 -3424 160) (8 -3328 160) (32 -3328 160)" + "id" "7777" + "plane" "(996 776 312) (996 770 312) (994 768 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -63.998] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26438" - "plane" "(8 -3328 0) (8 -3424 0) (32 -3424 0)" + "id" "7776" + "plane" "(994 768 304) (996 770 304) (996 776 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -336.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7775" + "plane" "(988 776 312) (988 768 312) (988 768 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -63.998] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26437" - "plane" "(8 -3424 0) (8 -3328 0) (8 -3328 160)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7774" + "plane" "(996 770 312) (996 776 312) (996 776 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26436" - "plane" "(32 -3328 0) (32 -3424 0) (32 -3424 160)" + "id" "7773" + "plane" "(996 776 312) (988 776 312) (988 776 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 63.998] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26435" - "plane" "(8 -3328 0) (32 -3328 0) (32 -3328 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7772" + "plane" "(988 768 312) (994 768 312) (994 768 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -336.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26434" - "plane" "(32 -3424 0) (8 -3424 0) (8 -3424 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7771" + "plane" "(994 768 312) (996 770 312) (996 770 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 211 156" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32100" + "id" "2533" side { - "id" "26451" - "plane" "(-64 -3488 288) (-64 -3456 288) (0 -3456 288)" + "id" "7783" + "plane" "(996 776 304) (996 768 304) (988 768 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26450" - "plane" "(-64 -3456 0) (-64 -3488 0) (0 -3488 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7782" + "plane" "(996 768 288) (996 776 288) (988 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 464.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26449" - "plane" "(-64 -3488 0) (-64 -3456 0) (-64 -3456 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7781" + "plane" "(996 768 304) (996 776 304) (996 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -48.6602] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26448" - "plane" "(0 -3456 0) (0 -3488 0) (0 -3488 288)" + "id" "7780" + "plane" "(988 776 304) (988 768 304) (988 768 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26447" - "plane" "(-64 -3456 0) (0 -3456 0) (0 -3456 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7779" + "plane" "(996 776 304) (988 776 304) (988 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26446" - "plane" "(0 -3488 0) (-64 -3488 0) (-64 -3488 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7778" + "plane" "(988 768 304) (996 768 304) (996 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 464.697] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32104" + "id" "2534" side { - "id" "26463" - "plane" "(-64 -3216 32) (-64 -3200 32) (0 -3200 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7791" + "plane" "(1030 768 298) (1030 776 298) (1034 776 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 472.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26462" - "plane" "(-64 -3200 0) (-64 -3216 0) (0 -3216 0)" + "id" "7790" + "plane" "(1035 768 292) (1035 776 292) (1029 776 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 28.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26461" - "plane" "(-64 -3216 0) (-64 -3200 0) (-64 -3200 32)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7789" + "plane" "(1035 768 297) (1035 776 297) (1035 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26460" - "plane" "(0 -3200 0) (0 -3216 0) (0 -3216 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7788" + "plane" "(1029 776 297) (1029 768 297) (1029 768 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26459" - "plane" "(-64 -3200 0) (0 -3200 0) (0 -3200 32)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7787" + "plane" "(1029 768 297) (1030 768 298) (1034 768 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26458" - "plane" "(0 -3216 0) (-64 -3216 0) (-64 -3216 32)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7786" + "plane" "(1030 776 298) (1030 768 298) (1029 768 297)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7785" + "plane" "(1034 768 298) (1034 776 298) (1035 776 297)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7784" + "plane" "(1035 776 297) (1034 776 298) (1030 776 298)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32113" + "id" "2535" side { - "id" "26487" - "plane" "(-68 -3216 40) (-68 -3200 40) (0 -3200 40)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7799" + "plane" "(1034 776 368) (1034 770 368) (1033 769 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 28.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26486" - "plane" "(-68 -3196 32) (-68 -3220 32) (0 -3220 32)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7798" + "plane" "(1031 769 298) (1033 769 298) (1034 770 298)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 28.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26485" - "plane" "(-68 -3220 32) (-68 -3196 32) (-68 -3200 40)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7797" + "plane" "(1030 776 368) (1030 770 368) (1030 770 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26484" - "plane" "(0 -3196 32) (0 -3220 32) (0 -3216 40)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7796" + "plane" "(1034 770 368) (1034 776 368) (1034 776 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26483" - "plane" "(-68 -3196 32) (0 -3196 32) (0 -3200 40)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7795" + "plane" "(1033 769 368) (1034 770 368) (1034 770 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26482" - "plane" "(0 -3220 32) (-68 -3220 32) (-68 -3216 40)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7794" + "plane" "(1030 770 368) (1031 769 368) (1031 769 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7793" + "plane" "(1031 769 368) (1033 769 368) (1033 769 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -64.6973] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7792" + "plane" "(1034 776 368) (1030 776 368) (1030 776 298)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 239 200" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32125" + "id" "2536" side { - "id" "26499" - "plane" "(-320 -3488 288) (-320 -3456 288) (-256 -3456 288)" + "id" "7805" + "plane" "(1068 776 412) (1068 775 412) (996 775 412)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26498" - "plane" "(-320 -3456 0) (-320 -3488 0) (-256 -3488 0)" + "id" "7804" + "plane" "(1068 775 288) (1068 776 288) (996 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26497" - "plane" "(-320 -3488 0) (-320 -3456 0) (-320 -3456 288)" + "id" "7803" + "plane" "(1068 775 412) (1068 776 412) (1068 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26496" - "plane" "(-256 -3456 0) (-256 -3488 0) (-256 -3488 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7802" + "plane" "(996 776 412) (996 775 412) (996 775 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26495" - "plane" "(-320 -3456 0) (-256 -3456 0) (-256 -3456 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7801" + "plane" "(1068 776 412) (996 776 412) (996 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26494" - "plane" "(-256 -3488 0) (-320 -3488 0) (-320 -3488 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7800" + "plane" "(996 775 412) (1068 775 412) (1068 775 288)" + "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" + "uaxis" "[-1 0 0 426.667] 0.140625" + "vaxis" "[0 0 -1 165.161] 0.242188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32129" + "id" "2537" side { - "id" "26511" - "plane" "(-256 -3488 160) (-256 -3456 160) (-64 -3456 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7812" + "plane" "(1004 776 412) (1004 772 412) (1002 770 412)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26510" - "plane" "(-256 -3456 128) (-256 -3488 128) (-64 -3488 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7811" + "plane" "(1002 770 292) (1004 772 292) (1004 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -368.697] 0.25" + "vaxis" "[0 -1 0 -23.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26509" - "plane" "(-256 -3488 128) (-256 -3456 128) (-256 -3456 160)" + "id" "7810" + "plane" "(996 776 412) (996 770 412) (996 770 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 7.33984] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26508" - "plane" "(-64 -3456 128) (-64 -3488 128) (-64 -3488 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7809" + "plane" "(1004 772 412) (1004 776 412) (1004 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26507" - "plane" "(-256 -3456 128) (-64 -3456 128) (-64 -3456 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7808" + "plane" "(996 770 412) (1002 770 412) (1002 770 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -368.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26506" - "plane" "(-64 -3488 128) (-256 -3488 128) (-256 -3488 160)" + "id" "7807" + "plane" "(1002 770 412) (1004 772 412) (1004 772 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7806" + "plane" "(1004 776 412) (996 776 412) (996 776 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32134" + "id" "2538" side { - "id" "26523" - "plane" "(-256 -3488 0) (-256 -3456 0) (-64 -3456 0)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7819" + "plane" "(1068 776 412) (1068 770 412) (1062 770 412)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26522" - "plane" "(-256 -3456 -64) (-256 -3488 -64) (-64 -3488 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7818" + "plane" "(1062 770 292) (1068 770 292) (1068 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 240.697] 0.25" + "vaxis" "[0 -1 0 -23.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26521" - "plane" "(-256 -3488 -64) (-256 -3456 -64) (-256 -3456 0)" + "id" "7817" + "plane" "(1068 770 412) (1068 776 412) (1068 776 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 7.33984] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26520" - "plane" "(-64 -3456 -64) (-64 -3488 -64) (-64 -3488 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7816" + "plane" "(1060 776 412) (1060 772 412) (1060 772 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26519" - "plane" "(-256 -3456 -64) (-64 -3456 -64) (-64 -3456 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7815" + "plane" "(1062 770 412) (1068 770 412) (1068 770 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 240.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26518" - "plane" "(-64 -3488 -64) (-256 -3488 -64) (-256 -3488 0)" + "id" "7814" + "plane" "(1060 772 412) (1062 770 412) (1062 770 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7813" + "plane" "(1068 776 412) (1060 776 412) (1060 776 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 181 182" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32147" + "id" "2539" side { - "id" "26535" - "plane" "(-256 -3488 128) (-256 -3472 128) (-64 -3472 128)" + "id" "7825" + "plane" "(1076 776 304) (1076 768 304) (1068 768 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26534" - "plane" "(-256 -3472 0) (-256 -3488 0) (-64 -3488 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7824" + "plane" "(1076 768 288) (1076 776 288) (1068 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 272.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26533" - "plane" "(-256 -3488 0) (-256 -3472 0) (-256 -3472 128)" + "id" "7823" + "plane" "(1076 768 304) (1076 776 304) (1076 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26532" - "plane" "(-64 -3472 0) (-64 -3488 0) (-64 -3488 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7822" + "plane" "(1068 776 304) (1068 768 304) (1068 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26531" - "plane" "(-256 -3472 0) (-64 -3472 0) (-64 -3472 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7821" + "plane" "(1076 776 304) (1068 776 304) (1068 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26530" - "plane" "(-64 -3488 0) (-256 -3488 0) (-256 -3488 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7820" + "plane" "(1068 768 304) (1076 768 304) (1076 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 272.697] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 181 182" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32151" + "id" "2540" side { - "id" "26547" - "plane" "(-256 -3488 288) (-256 -3456 288) (-64 -3456 288)" + "id" "7831" + "plane" "(1104 776 296) (1104 768 296) (1076 768 296)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26546" - "plane" "(-256 -3456 256) (-256 -3488 256) (-64 -3488 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7830" + "plane" "(1104 768 288) (1104 776 288) (1076 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 304.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26545" - "plane" "(-256 -3488 256) (-256 -3456 256) (-256 -3456 288)" + "id" "7829" + "plane" "(1104 768 296) (1104 776 296) (1104 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26544" - "plane" "(-64 -3456 256) (-64 -3488 256) (-64 -3488 288)" + "id" "7828" + "plane" "(1076 776 296) (1076 768 296) (1076 768 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26543" - "plane" "(-256 -3456 256) (-64 -3456 256) (-64 -3456 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7827" + "plane" "(1104 776 296) (1076 776 296) (1076 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26542" - "plane" "(-64 -3488 256) (-256 -3488 256) (-256 -3488 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7826" + "plane" "(1076 768 296) (1104 768 296) (1104 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 304.697] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32153" + "id" "2541" side { - "id" "26559" - "plane" "(-208 -3488 256) (-208 -3456 256) (-176 -3456 256)" + "id" "7838" + "plane" "(1076 776 312) (1076 768 312) (1070 768 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26558" - "plane" "(-208 -3456 160) (-208 -3488 160) (-176 -3488 160)" + "id" "7837" + "plane" "(1070 768 304) (1076 768 304) (1076 776 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 272.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7836" + "plane" "(1076 768 312) (1076 776 312) (1076 776 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26557" - "plane" "(-208 -3488 160) (-208 -3456 160) (-208 -3456 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7835" + "plane" "(1068 776 312) (1068 770 312) (1068 770 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26556" - "plane" "(-176 -3456 160) (-176 -3488 160) (-176 -3488 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7834" + "plane" "(1076 776 312) (1068 776 312) (1068 776 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26555" - "plane" "(-208 -3456 160) (-176 -3456 160) (-176 -3456 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7833" + "plane" "(1070 768 312) (1076 768 312) (1076 768 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 272.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26554" - "plane" "(-176 -3488 160) (-208 -3488 160) (-208 -3488 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7832" + "plane" "(1068 770 312) (1070 768 312) (1070 768 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 199 232" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32160" + "id" "2542" side { - "id" "26571" - "plane" "(-256 -3488 256) (-256 -3472 256) (-64 -3472 256)" + "id" "7844" + "plane" "(1104 776 312) (1104 768 312) (1076 768 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26570" - "plane" "(-256 -3472 160) (-256 -3488 160) (-64 -3488 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7843" + "plane" "(1104 768 296) (1104 776 296) (1076 776 296)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 304.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26569" - "plane" "(-256 -3488 160) (-256 -3472 160) (-256 -3472 256)" + "id" "7842" + "plane" "(1104 768 312) (1104 776 312) (1104 776 296)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26568" - "plane" "(-64 -3472 160) (-64 -3488 160) (-64 -3488 256)" + "id" "7841" + "plane" "(1076 776 312) (1076 768 312) (1076 768 296)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26567" - "plane" "(-256 -3472 160) (-64 -3472 160) (-64 -3472 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7840" + "plane" "(1104 776 312) (1076 776 312) (1076 776 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26566" - "plane" "(-64 -3488 160) (-256 -3488 160) (-256 -3488 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7839" + "plane" "(1076 768 312) (1104 768 312) (1104 768 296)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 48.6973] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 181 182" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32297" + "id" "2543" side { - "id" "26860" - "plane" "(-352 -3520 288) (-352 -3264 288) (-320 -3264 288)" + "id" "7852" + "plane" "(1112 776 368) (1112 770 368) (1110 768 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26859" - "plane" "(-352 -3264 0) (-352 -3520 0) (-320 -3520 0)" + "id" "7851" + "plane" "(1070 768 312) (1110 768 312) (1112 770 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26858" - "plane" "(-352 -3520 0) (-352 -3264 0) (-352 -3264 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7850" + "plane" "(1112 770 368) (1112 776 368) (1112 776 312)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 448.663] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26857" - "plane" "(-320 -3264 0) (-320 -3520 0) (-320 -3520 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7849" + "plane" "(1068 776 368) (1068 770 368) (1068 770 312)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -400.656] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26856" - "plane" "(-352 -3264 0) (-320 -3264 0) (-320 -3264 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7848" + "plane" "(1112 776 368) (1068 776 368) (1068 776 312)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26855" - "plane" "(-320 -3520 0) (-352 -3520 0) (-352 -3520 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7847" + "plane" "(1070 768 368) (1110 768 368) (1110 768 312)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 48.6973] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7846" + "plane" "(1068 770 368) (1070 768 368) (1070 768 312)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 0.707107 0 -385.458] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7845" + "plane" "(1110 768 368) (1112 770 368) (1112 770 312)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 329.078] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 165 170" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32302" + "id" "2544" side { - "id" "26872" - "plane" "(-544 -3520 288) (-544 -3264 288) (-512 -3264 288)" + "id" "7859" + "plane" "(1112 776 312) (1112 770 312) (1110 768 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26871" - "plane" "(-544 -3264 0) (-544 -3520 0) (-512 -3520 0)" + "id" "7858" + "plane" "(1110 768 304) (1112 770 304) (1112 776 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -288.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7857" + "plane" "(1104 776 312) (1104 768 312) (1104 768 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26870" - "plane" "(-544 -3520 0) (-544 -3264 0) (-544 -3264 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7856" + "plane" "(1112 770 312) (1112 776 312) (1112 776 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26869" - "plane" "(-512 -3264 0) (-512 -3520 0) (-512 -3520 288)" + "id" "7855" + "plane" "(1112 776 312) (1104 776 312) (1104 776 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26868" - "plane" "(-544 -3264 0) (-512 -3264 0) (-512 -3264 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7854" + "plane" "(1104 768 312) (1110 768 312) (1110 768 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -288.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26867" - "plane" "(-512 -3520 0) (-544 -3520 0) (-544 -3520 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7853" + "plane" "(1110 768 312) (1112 770 312) (1112 770 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 165 170" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32303" + "id" "2545" side { - "id" "26884" - "plane" "(-512 -3296 288) (-512 -3264 288) (-352 -3264 288)" + "id" "7865" + "plane" "(1112 776 304) (1112 768 304) (1104 768 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26883" - "plane" "(-512 -3264 128) (-512 -3296 128) (-352 -3296 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7864" + "plane" "(1112 768 288) (1112 776 288) (1104 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 416.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26882" - "plane" "(-512 -3296 128) (-512 -3264 128) (-512 -3264 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7863" + "plane" "(1112 768 304) (1112 776 304) (1112 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -48.6602] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26881" - "plane" "(-352 -3264 128) (-352 -3296 128) (-352 -3296 288)" + "id" "7862" + "plane" "(1104 776 304) (1104 768 304) (1104 768 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26880" - "plane" "(-512 -3264 128) (-352 -3264 128) (-352 -3264 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7861" + "plane" "(1112 776 304) (1104 776 304) (1104 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26879" - "plane" "(-352 -3296 128) (-512 -3296 128) (-512 -3296 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7860" + "plane" "(1104 768 304) (1112 768 304) (1112 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 416.697] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 165 170" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32314" + "id" "2546" side { - "id" "26932" - "plane" "(-512 -3296 128) (-512 -3264 128) (-432 -3264 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7873" + "plane" "(1146 768 298) (1146 776 298) (1150 776 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 432.697] 0.25" + "vaxis" "[0 -1 0 472.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26931" - "plane" "(-512 -3264 0) (-512 -3296 0) (-432 -3296 0)" + "id" "7872" + "plane" "(1151 768 292) (1151 776 292) (1145 776 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -19.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26930" - "plane" "(-512 -3296 0) (-512 -3264 0) (-512 -3264 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7871" + "plane" "(1151 768 297) (1151 776 297) (1151 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26929" - "plane" "(-432 -3264 0) (-432 -3296 0) (-432 -3296 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7870" + "plane" "(1145 776 297) (1145 768 297) (1145 768 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26928" - "plane" "(-512 -3264 0) (-432 -3264 0) (-432 -3264 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7869" + "plane" "(1145 768 297) (1146 768 298) (1150 768 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 432.697] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26927" - "plane" "(-432 -3296 0) (-512 -3296 0) (-512 -3296 128)" + "id" "7868" + "plane" "(1146 776 298) (1146 768 298) (1145 768 297)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7867" + "plane" "(1150 768 298) (1150 776 298) (1151 776 297)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7866" + "plane" "(1151 776 297) (1150 776 298) (1146 776 298)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 165 170" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32333" + "id" "2547" side { - "id" "26962" - "plane" "(-432 -3296 128) (-432 -3264 128) (-408 -3264 128)" + "id" "7881" + "plane" "(1150 776 368) (1150 770 368) (1149 769 368)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -19.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26961" - "plane" "(-432 -3264 112) (-432 -3296 112) (-408 -3296 120)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7880" + "plane" "(1147 769 298) (1149 769 298) (1150 770 298)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -19.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26960" - "plane" "(-432 -3296 112) (-432 -3264 112) (-432 -3264 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7879" + "plane" "(1146 776 368) (1146 770 368) (1146 770 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26959" - "plane" "(-432 -3264 112) (-408 -3264 120) (-408 -3264 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7878" + "plane" "(1150 770 368) (1150 776 368) (1150 776 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26958" - "plane" "(-432 -3296 128) (-408 -3296 128) (-408 -3296 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7877" + "plane" "(1149 769 368) (1150 770 368) (1150 770 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26957" - "plane" "(-408 -3264 120) (-408 -3296 120) (-408 -3296 128)" + "id" "7876" + "plane" "(1146 770 368) (1147 769 368) (1147 769 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7875" + "plane" "(1147 769 368) (1149 769 368) (1149 769 298)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7874" + "plane" "(1150 776 368) (1146 776 368) (1146 776 298)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 165 170" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32334" + "id" "2548" side { - "id" "26968" - "plane" "(-376 -3264 128) (-352 -3264 128) (-352 -3296 128)" + "id" "7887" + "plane" "(1184 776 412) (1184 775 412) (1112 775 412)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26967" - "plane" "(-376 -3296 120) (-352 -3296 112) (-352 -3264 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7886" + "plane" "(1184 775 288) (1184 776 288) (1112 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26966" - "plane" "(-352 -3264 112) (-352 -3296 112) (-352 -3296 128)" + "id" "7885" + "plane" "(1184 775 412) (1184 776 412) (1184 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26965" - "plane" "(-352 -3264 128) (-376 -3264 128) (-376 -3264 120)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7884" + "plane" "(1112 776 412) (1112 775 412) (1112 775 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26964" - "plane" "(-352 -3296 112) (-376 -3296 120) (-376 -3296 128)" + "id" "7883" + "plane" "(1184 776 412) (1112 776 412) (1112 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26963" - "plane" "(-376 -3296 120) (-376 -3264 120) (-376 -3264 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7882" + "plane" "(1112 775 412) (1184 775 412) (1184 775 288)" + "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" + "uaxis" "[-1 0 0 227.556] 0.140625" + "vaxis" "[0 0 -1 165.161] 0.242188" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 165 170" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32335" + "id" "2549" side { - "id" "26974" - "plane" "(-376 -3296 128) (-408 -3296 128) (-408 -3264 128)" + "id" "7894" + "plane" "(1120 776 412) (1120 772 412) (1118 770 412)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26973" - "plane" "(-376 -3264 120) (-408 -3264 120) (-408 -3296 120)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7893" + "plane" "(1118 770 292) (1120 772 292) (1120 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -320.697] 0.25" + "vaxis" "[0 -1 0 -23.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26972" - "plane" "(-408 -3264 120) (-376 -3264 120) (-376 -3264 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7892" + "plane" "(1112 776 412) (1112 770 412) (1112 770 292)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 7.33984] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26971" - "plane" "(-376 -3296 120) (-408 -3296 120) (-408 -3296 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7891" + "plane" "(1120 772 412) (1120 776 412) (1120 776 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26970" - "plane" "(-408 -3296 120) (-408 -3264 120) (-408 -3264 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7890" + "plane" "(1112 770 412) (1118 770 412) (1118 770 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -320.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26969" - "plane" "(-376 -3264 120) (-376 -3296 120) (-376 -3296 128)" + "id" "7889" + "plane" "(1118 770 412) (1120 772 412) (1120 772 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7888" + "plane" "(1120 776 412) (1112 776 412) (1112 776 292)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 165 170" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32339" + "id" "2550" side { - "id" "26986" - "plane" "(-432 -3296 128) (-432 -3272 128) (-352 -3272 128)" + "id" "7901" + "plane" "(1176 776 412) (1184 776 412) (1184 770 412)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26985" - "plane" "(-432 -3272 0) (-432 -3296 0) (-352 -3296 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7900" + "plane" "(1176 772 292) (1178 770 292) (1184 770 292)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 192.697] 0.25" + "vaxis" "[0 -1 0 -23.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26984" - "plane" "(-432 -3296 0) (-432 -3272 0) (-432 -3272 128)" + "id" "7899" + "plane" "(1184 770 292) (1184 770 412) (1184 776 412)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 7.33984] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26983" - "plane" "(-352 -3272 0) (-352 -3296 0) (-352 -3296 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7898" + "plane" "(1176 776 292) (1176 776 412) (1176 772 412)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26982" - "plane" "(-432 -3272 0) (-352 -3272 0) (-352 -3272 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7897" + "plane" "(1178 770 292) (1178 770 412) (1184 770 412)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 192.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26981" - "plane" "(-352 -3296 0) (-432 -3296 0) (-432 -3296 128)" + "id" "7896" + "plane" "(1176 772 292) (1176 772 412) (1178 770 412)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -248.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7895" + "plane" "(1184 776 292) (1184 776 412) (1176 776 412)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 121 158" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32347" + "id" "2551" side { - "id" "26998" - "plane" "(-736 -3520 192) (-736 -3264 192) (-704 -3264 192)" + "id" "7907" + "plane" "(1192 776 304) (1192 768 304) (1184 768 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26997" - "plane" "(-736 -3264 0) (-736 -3520 0) (-704 -3520 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7906" + "plane" "(1192 768 288) (1192 776 288) (1184 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 224.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26996" - "plane" "(-736 -3520 0) (-736 -3264 0) (-736 -3264 192)" + "id" "7905" + "plane" "(1192 768 304) (1192 776 304) (1192 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26995" - "plane" "(-704 -3264 0) (-704 -3520 0) (-704 -3520 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7904" + "plane" "(1184 776 304) (1184 768 304) (1184 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26994" - "plane" "(-736 -3264 0) (-704 -3264 0) (-704 -3264 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7903" + "plane" "(1192 776 304) (1184 776 304) (1184 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "26993" - "plane" "(-704 -3520 0) (-736 -3520 0) (-736 -3520 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7902" + "plane" "(1184 768 304) (1192 768 304) (1192 768 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 224.697] 0.25" + "vaxis" "[0 0 -1 125.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 165 170" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32348" + "id" "2552" side { - "id" "27010" - "plane" "(-704 -3520 0) (-704 -3264 0) (-544 -3264 0)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7914" + "plane" "(1192 776 312) (1192 768 312) (1186 768 312)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27009" - "plane" "(-704 -3264 -64) (-704 -3520 -64) (-544 -3520 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7913" + "plane" "(1186 768 304) (1192 768 304) (1192 776 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 224.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27008" - "plane" "(-704 -3520 -64) (-704 -3264 -64) (-704 -3264 0)" + "id" "7912" + "plane" "(1192 768 312) (1192 776 312) (1192 776 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27007" - "plane" "(-544 -3264 -64) (-544 -3520 -64) (-544 -3520 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7911" + "plane" "(1184 776 312) (1184 770 312) (1184 770 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27006" - "plane" "(-704 -3264 -64) (-544 -3264 -64) (-544 -3264 0)" + "id" "7910" + "plane" "(1192 776 312) (1184 776 312) (1184 776 304)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27005" - "plane" "(-544 -3520 -64) (-704 -3520 -64) (-704 -3520 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7909" + "plane" "(1186 768 312) (1192 768 312) (1192 768 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 224.697] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7908" + "plane" "(1184 770 312) (1186 768 312) (1186 768 304)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -240.66] 0.25" + "vaxis" "[0 0 -1 189.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32351" + "id" "2553" side { - "id" "27022" - "plane" "(-768 -3296 192) (-768 -3264 192) (-736 -3264 192)" + "id" "7920" + "plane" "(1220 776 312) (1220 768 312) (1192 768 312)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27021" - "plane" "(-768 -3264 0) (-768 -3296 0) (-736 -3296 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7919" + "plane" "(1220 768 288) (1220 776 288) (1192 776 288)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 256.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27020" - "plane" "(-768 -3296 0) (-768 -3264 0) (-768 -3264 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7918" + "plane" "(1220 768 312) (1220 776 312) (1220 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27019" - "plane" "(-736 -3264 0) (-736 -3296 0) (-736 -3296 192)" + "id" "7917" + "plane" "(1192 776 312) (1192 768 312) (1192 768 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27018" - "plane" "(-768 -3264 0) (-736 -3264 0) (-736 -3264 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7916" + "plane" "(1220 776 312) (1192 776 312) (1192 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27017" - "plane" "(-736 -3296 0) (-768 -3296 0) (-768 -3296 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7915" + "plane" "(1192 768 312) (1220 768 312) (1220 768 288)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 165.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 165 170" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32354" + "id" "2554" side { - "id" "27034" - "plane" "(-1024 -3296 192) (-1024 -3264 192) (-848 -3264 192)" + "id" "7926" + "plane" "(1160 768 252) (1160 776 252) (1020 776 252)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27033" - "plane" "(-1024 -3264 -64) (-1024 -3296 -64) (-848 -3296 -64)" + "id" "7925" + "plane" "(1160 776 288) (1160 768 288) (1020 768 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27032" - "plane" "(-1024 -3296 -64) (-1024 -3264 -64) (-1024 -3264 192)" + "id" "7924" + "plane" "(1160 768 288) (1160 776 288) (1160 776 252)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27031" - "plane" "(-848 -3264 -64) (-848 -3296 -64) (-848 -3296 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7923" + "plane" "(1020 776 288) (1020 768 288) (1020 768 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27030" - "plane" "(-1024 -3264 -64) (-848 -3264 -64) (-848 -3264 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7922" + "plane" "(1160 776 288) (1020 776 288) (1020 776 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 1 -5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27029" - "plane" "(-848 -3296 -64) (-1024 -3296 -64) (-1024 -3296 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7921" + "plane" "(1020 768 288) (1160 768 288) (1160 768 252)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -208.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 165 170" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32356" + "id" "2555" side { - "id" "27070" - "plane" "(-848 -3296 128) (-848 -3272 128) (-768 -3272 128)" + "id" "7932" + "plane" "(1160 768 238) (1160 776 238) (1128 776 238)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27069" - "plane" "(-848 -3272 0) (-848 -3296 0) (-768 -3296 0)" + "id" "7931" + "plane" "(1160 776 252) (1160 768 252) (1106 768 252)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27068" - "plane" "(-848 -3296 0) (-848 -3272 0) (-848 -3272 128)" + "id" "7930" + "plane" "(1128 768 238) (1128 776 238) (1106 776 252)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27067" - "plane" "(-768 -3272 0) (-768 -3296 0) (-768 -3296 128)" + "id" "7929" + "plane" "(1160 768 252) (1160 776 252) (1160 776 238)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27066" - "plane" "(-848 -3272 0) (-768 -3272 0) (-768 -3272 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7928" + "plane" "(1160 776 252) (1106 776 252) (1128 776 238)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27065" - "plane" "(-768 -3296 0) (-848 -3296 0) (-848 -3296 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7927" + "plane" "(1106 768 252) (1160 768 252) (1160 768 238)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 121 158" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32357" + "id" "2556" side { - "id" "27076" - "plane" "(-848 -3296 192) (-848 -3264 192) (-768 -3264 192)" + "id" "7938" + "plane" "(1160 768 224) (1160 776 224) (1144 776 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27075" - "plane" "(-848 -3264 128) (-848 -3296 128) (-768 -3296 128)" + "id" "7937" + "plane" "(1160 776 238) (1160 768 238) (1128 768 238)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27074" - "plane" "(-848 -3296 128) (-848 -3264 128) (-848 -3264 192)" + "id" "7936" + "plane" "(1144 768 224) (1144 776 224) (1128 776 238)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27073" - "plane" "(-768 -3264 128) (-768 -3296 128) (-768 -3296 192)" + "id" "7935" + "plane" "(1160 768 238) (1160 776 238) (1160 776 224)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27072" - "plane" "(-848 -3264 128) (-768 -3264 128) (-768 -3264 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7934" + "plane" "(1160 776 238) (1128 776 238) (1144 776 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27071" - "plane" "(-768 -3296 128) (-848 -3296 128) (-848 -3296 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7933" + "plane" "(1128 768 238) (1160 768 238) (1160 768 224)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 165 170" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32358" + "id" "2557" side { - "id" "27082" - "plane" "(-848 -3296 128) (-848 -3264 128) (-824 -3264 128)" + "id" "7944" + "plane" "(1160 768 202) (1160 776 202) (1156 776 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27081" - "plane" "(-848 -3264 112) (-848 -3296 112) (-824 -3296 120)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7943" + "plane" "(1160 776 224) (1160 768 224) (1144 768 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27080" - "plane" "(-848 -3296 112) (-848 -3264 112) (-848 -3264 128)" + "id" "7942" + "plane" "(1144 776 224) (1144 768 224) (1156 768 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27079" - "plane" "(-848 -3264 112) (-824 -3264 120) (-824 -3264 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7941" + "plane" "(1160 768 224) (1160 776 224) (1160 776 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27078" - "plane" "(-848 -3296 128) (-824 -3296 128) (-824 -3296 120)" + "id" "7940" + "plane" "(1160 776 224) (1144 776 224) (1156 776 202)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27077" - "plane" "(-824 -3264 120) (-824 -3296 120) (-824 -3296 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7939" + "plane" "(1144 768 224) (1160 768 224) (1160 768 202)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 320.695] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 165 170" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32359" + "id" "2558" side { - "id" "27088" - "plane" "(-792 -3296 128) (-824 -3296 128) (-824 -3264 128)" + "id" "7950" + "plane" "(764 768 376) (764 776 376) (732 776 376)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27087" - "plane" "(-792 -3264 120) (-824 -3264 120) (-824 -3296 120)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7949" + "plane" "(764 776 420) (764 768 420) (732 768 420)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27086" - "plane" "(-824 -3264 120) (-792 -3264 120) (-792 -3264 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7948" + "plane" "(764 768 420) (764 776 420) (764 776 376)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 432.663] 0.25" + "vaxis" "[0 0 1 -445.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27085" - "plane" "(-792 -3296 120) (-824 -3296 120) (-824 -3296 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7947" + "plane" "(732 776 420) (732 768 420) (732 768 376)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27084" - "plane" "(-824 -3296 120) (-824 -3264 120) (-824 -3264 128)" + "id" "7946" + "plane" "(764 776 420) (732 776 420) (732 776 376)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 1 -21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27083" - "plane" "(-792 -3264 120) (-792 -3296 120) (-792 -3296 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7945" + "plane" "(732 768 420) (764 768 420) (764 768 376)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -80.6973] 0.25" + "vaxis" "[0 0 -1 277.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 165 170" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32360" + "id" "2559" side { - "id" "27094" - "plane" "(-792 -3264 128) (-768 -3264 128) (-768 -3296 128)" + "id" "7957" + "plane" "(1028 768 64) (1036 776 64) (1036 784 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27093" - "plane" "(-792 -3296 120) (-768 -3296 112) (-768 -3264 112)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7956" + "plane" "(1020 784 64) (1020 784 104) (1020 768 104)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27092" - "plane" "(-768 -3264 112) (-768 -3296 112) (-768 -3296 128)" + "id" "7955" + "plane" "(1036 776 64) (1036 776 104) (1036 784 104)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7954" + "plane" "(1036 784 64) (1036 784 104) (1020 784 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27091" - "plane" "(-768 -3264 128) (-792 -3264 128) (-792 -3264 120)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7953" + "plane" "(1020 768 64) (1020 768 104) (1028 768 104)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27090" - "plane" "(-768 -3296 112) (-792 -3296 120) (-792 -3296 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7952" + "plane" "(1028 768 64) (1028 768 104) (1036 776 104)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.707107 0.707107 0 18.0502] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27089" - "plane" "(-792 -3296 120) (-792 -3264 120) (-792 -3264 128)" + "id" "7951" + "plane" "(1036 784 104) (1036 776 104) (1028 768 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 165 170" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32369" + "id" "2560" side { - "id" "27106" - "plane" "(-848 -3296 0) (-848 -3264 0) (-768 -3264 0)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7964" + "plane" "(1036 784 176) (1036 776 176) (1028 768 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27105" - "plane" "(-848 -3264 -64) (-848 -3296 -64) (-768 -3296 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7963" + "plane" "(1020 768 176) (1020 768 104) (1020 784 104)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27104" - "plane" "(-848 -3296 -64) (-848 -3264 -64) (-848 -3264 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7962" + "plane" "(1036 784 176) (1036 784 104) (1036 776 104)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27103" - "plane" "(-768 -3264 -64) (-768 -3296 -64) (-768 -3296 0)" + "id" "7961" + "plane" "(1020 784 176) (1020 784 104) (1036 784 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27102" - "plane" "(-848 -3264 -64) (-768 -3264 -64) (-768 -3264 0)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7960" + "plane" "(1028 768 176) (1028 768 104) (1020 768 104)" + "material" "BRICK/WALL20" + "uaxis" "[1 0 0 -240.695] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27101" - "plane" "(-768 -3296 -64) (-848 -3296 -64) (-848 -3296 0)" + "id" "7959" + "plane" "(1036 776 176) (1036 776 104) (1028 768 104)" + "material" "BRICK/WALL20" + "uaxis" "[0.707107 0.707107 0 -86.399] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7958" + "plane" "(1028 768 104) (1036 776 104) (1036 784 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 156" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32588" + "id" "2561" side { - "id" "27403" - "plane" "(-960 -2896 288) (-960 -2816 288) (-944 -2816 288)" + "id" "7971" + "plane" "(1152 768 64) (1160 768 64) (1160 784 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27402" - "plane" "(-960 -2816 160) (-960 -2976 160) (-944 -2976 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7970" + "plane" "(1160 768 64) (1160 768 104) (1160 784 104)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27401" - "plane" "(-960 -2976 160) (-960 -2816 160) (-960 -2816 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7969" + "plane" "(1144 784 64) (1144 784 104) (1144 776 104)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27400" - "plane" "(-944 -2816 160) (-944 -2976 160) (-944 -2928 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7968" + "plane" "(1160 784 64) (1160 784 104) (1144 784 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27399" - "plane" "(-944 -2976 160) (-960 -2976 160) (-960 -2928 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7967" + "plane" "(1152 768 64) (1152 768 104) (1160 768 104)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27398" - "plane" "(-960 -2928 256) (-960 -2896 288) (-944 -2896 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7966" + "plane" "(1144 776 64) (1144 776 104) (1152 768 104)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.707107 0.707107 0 -193.962] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27397" - "plane" "(-960 -2816 160) (-944 -2816 160) (-944 -2816 288)" + "id" "7965" + "plane" "(1160 784 104) (1160 768 104) (1152 768 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32587" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32589" + "id" "2562" side { - "id" "27409" - "plane" "(-960 -2896 304) (-960 -2896 288) (-944 -2896 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7978" + "plane" "(1160 768 116) (1160 768 124) (1160 784 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 277.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27408" - "plane" "(-960 -2928 272) (-960 -2928 256) (-960 -2896 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7977" + "plane" "(1144 784 116) (1144 784 124) (1144 776 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 277.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27407" - "plane" "(-944 -2896 304) (-944 -2896 288) (-944 -2928 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7976" + "plane" "(1160 784 116) (1160 784 124) (1144 784 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27406" - "plane" "(-944 -2928 272) (-944 -2928 256) (-960 -2928 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7975" + "plane" "(1152 768 116) (1152 768 124) (1160 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 277.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27405" - "plane" "(-960 -2928 272) (-960 -2896 304) (-944 -2896 304)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7974" + "plane" "(1144 776 116) (1144 776 124) (1152 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.707107 0.707107 0 -193.962] 0.25" + "vaxis" "[0 0 -1 277.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27404" - "plane" "(-944 -2928 256) (-944 -2896 288) (-960 -2896 288)" + "id" "7973" + "plane" "(1152 768 116) (1160 768 116) (1160 784 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7972" + "plane" "(1160 784 124) (1160 768 124) (1152 768 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32587" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32590" + "id" "2563" side { - "id" "27415" - "plane" "(-960 -2816 304) (-960 -2816 288) (-944 -2816 288)" + "id" "7985" + "plane" "(1160 784 176) (1160 768 176) (1152 768 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27414" - "plane" "(-960 -2896 304) (-960 -2896 288) (-960 -2816 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7984" + "plane" "(1160 784 176) (1160 784 124) (1160 768 124)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27413" - "plane" "(-944 -2816 304) (-944 -2816 288) (-944 -2896 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7983" + "plane" "(1144 776 176) (1144 776 124) (1144 784 124)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27412" - "plane" "(-944 -2896 304) (-944 -2896 288) (-960 -2896 288)" + "id" "7982" + "plane" "(1144 784 176) (1144 784 124) (1160 784 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27411" - "plane" "(-960 -2896 304) (-960 -2816 304) (-944 -2816 304)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7981" + "plane" "(1160 768 176) (1160 768 124) (1152 768 124)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 320.695] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27410" - "plane" "(-944 -2816 288) (-960 -2816 288) (-960 -2896 288)" + "id" "7980" + "plane" "(1152 768 176) (1152 768 124) (1144 776 124)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 0.707107 0 -190.782] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7979" + "plane" "(1152 768 124) (1160 768 124) (1160 784 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32587" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32592" + "id" "2564" side { - "id" "27422" - "plane" "(-960 -2816 288) (-960 -2736 288) (-944 -2736 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "7992" + "plane" "(1160 768 104) (1160 768 116) (1160 784 116)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27421" - "plane" "(-960 -2656 160) (-960 -2816 160) (-944 -2816 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "7991" + "plane" "(1144 784 104) (1144 784 116) (1144 776 116)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -432.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27420" - "plane" "(-960 -2816 160) (-960 -2656 160) (-960 -2704 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7990" + "plane" "(1160 784 104) (1160 784 116) (1144 784 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27419" - "plane" "(-944 -2656 160) (-944 -2816 160) (-944 -2816 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7989" + "plane" "(1152 768 104) (1152 768 116) (1160 768 116)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 320.695] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27418" - "plane" "(-960 -2656 160) (-944 -2656 160) (-944 -2704 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7988" + "plane" "(1144 776 104) (1144 776 116) (1152 768 116)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 0.707107 0 -190.782] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27417" - "plane" "(-944 -2704 256) (-944 -2736 288) (-960 -2736 288)" + "id" "7987" + "plane" "(1152 768 104) (1160 768 104) (1160 784 104)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27416" - "plane" "(-944 -2816 160) (-960 -2816 160) (-960 -2816 288)" + "id" "7986" + "plane" "(1160 784 116) (1160 768 116) (1152 768 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32591" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32593" + "id" "2565" side { - "id" "27428" - "plane" "(-944 -2736 304) (-944 -2736 288) (-960 -2736 288)" + "id" "7999" + "plane" "(1324 784 96) (1340 768 96) (1156 768 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27427" - "plane" "(-960 -2736 304) (-960 -2736 288) (-960 -2704 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7998" + "plane" "(1156 784 64) (1156 764 64) (1344 764 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27426" - "plane" "(-944 -2704 272) (-944 -2704 256) (-944 -2736 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7997" + "plane" "(1344 764 92) (1340 768 96) (1324 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27425" - "plane" "(-960 -2704 272) (-960 -2704 256) (-944 -2704 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7996" + "plane" "(1156 784 96) (1156 768 96) (1156 764 92)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27424" - "plane" "(-944 -2704 272) (-944 -2736 304) (-960 -2736 304)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7995" + "plane" "(1324 784 96) (1156 784 96) (1156 784 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27423" - "plane" "(-960 -2704 256) (-960 -2736 288) (-944 -2736 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7994" + "plane" "(1156 764 92) (1344 764 92) (1344 764 64)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 80.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7993" + "plane" "(1340 768 96) (1344 764 92) (1156 764 92)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32591" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32594" + "id" "2566" side { - "id" "27434" - "plane" "(-944 -2816 304) (-944 -2816 288) (-960 -2816 288)" + "id" "8005" + "plane" "(1340 784 116) (1340 768 116) (1160 768 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 0.660156] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27433" - "plane" "(-960 -2816 304) (-960 -2816 288) (-960 -2736 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8004" + "plane" "(1340 768 96) (1340 784 96) (1160 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 0.660156] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27432" - "plane" "(-944 -2736 304) (-944 -2736 288) (-944 -2816 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8003" + "plane" "(1340 768 116) (1340 784 116) (1340 784 96)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -288.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27431" - "plane" "(-960 -2736 304) (-960 -2736 288) (-944 -2736 288)" + "id" "8002" + "plane" "(1160 784 116) (1160 768 116) (1160 768 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -0.660156] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27430" - "plane" "(-944 -2816 304) (-960 -2816 304) (-960 -2736 304)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "8001" + "plane" "(1340 784 116) (1160 784 116) (1160 784 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27429" - "plane" "(-960 -2736 288) (-960 -2816 288) (-944 -2816 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "8000" + "plane" "(1160 768 116) (1340 768 116) (1340 768 96)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 320.695] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32591" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32595" + "id" "2567" side { - "id" "27444" - "plane" "(-944 -2688 160) (-944 -2944 160) (-528 -2944 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8011" + "plane" "(1236 764 108) (1236 768 112) (1236 768 92)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -0.660156] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27443" - "plane" "(-944 -2880 256) (-944 -2912 224) (-944 -2944 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8010" + "plane" "(1172 764 92) (1172 768 92) (1172 768 112)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -0.660156] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27442" - "plane" "(-528 -2688 160) (-528 -2944 160) (-528 -2912 224)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8009" + "plane" "(1172 764 92) (1172 764 108) (1236 764 108)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 448.697] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27441" - "plane" "(-528 -2912 224) (-528 -2944 160) (-944 -2944 160)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[1 0 0 -9] 0.25" - "vaxis" "[0 0 -1 96] 0.25" + "id" "8008" + "plane" "(1172 764 108) (1172 768 112) (1236 768 112)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -32.6973] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27440" - "plane" "(-528 -2880 256) (-528 -2912 224) (-944 -2912 224)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[1 0 0 -9] 0.25" - "vaxis" "[0 0 -1 96] 0.25" + "id" "8007" + "plane" "(1236 764 92) (1236 768 92) (1172 768 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27439" - "plane" "(-944 -2880 256) (-944 -2848 272) (-528 -2848 272)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[1 0 0 -9] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "8006" + "plane" "(1236 768 92) (1236 768 112) (1172 768 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + editor + { + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2568" side { - "id" "27438" - "plane" "(-944 -2720 224) (-944 -2688 160) (-528 -2688 160)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[1 0 0 -9] 0.25" - "vaxis" "[0 0 -1 96] 0.25" + "id" "8017" + "plane" "(1328 764 108) (1328 768 112) (1328 768 92)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -0.660156] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27437" - "plane" "(-944 -2752 256) (-944 -2720 224) (-528 -2720 224)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[1 0 0 -9] 0.25" - "vaxis" "[0 0 -1 96] 0.25" + "id" "8016" + "plane" "(1264 764 92) (1264 768 92) (1264 768 112)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -0.660156] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27436" - "plane" "(-944 -2784 272) (-944 -2752 256) (-528 -2752 256)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[1 0 0 -9] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "8015" + "plane" "(1264 764 92) (1264 764 108) (1328 764 108)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 304.697] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27435" - "plane" "(-944 -2848 272) (-944 -2784 272) (-528 -2784 272)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[1 0 0 -9] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "8014" + "plane" "(1264 764 108) (1264 768 112) (1328 768 112)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -400.697] 0.25" + "vaxis" "[0 0 -1 293.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8013" + "plane" "(1328 764 92) (1328 768 92) (1264 768 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 16.6602] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8012" + "plane" "(1328 768 92) (1328 768 112) (1264 768 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32596" + "id" "2569" side { - "id" "27449" - "plane" "(-608 -2816 192) (-864 -2816 192) (-864 -2968 192)" + "id" "8023" + "plane" "(1236 775 123) (1236 774 123) (1172 774 123)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27448" - "plane" "(-864 -2816 192) (-608 -2816 192) (-736 -2816 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8022" + "plane" "(1236 774 122) (1236 775 122) (1172 775 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27447" - "plane" "(-608 -2968 192) (-864 -2968 192) (-736 -2968 288)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8021" + "plane" "(1236 774 123) (1236 775 123) (1236 775 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27446" - "plane" "(-736 -2968 288) (-864 -2968 192) (-864 -2816 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8020" + "plane" "(1172 775 123) (1172 774 123) (1172 774 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27445" - "plane" "(-736 -2816 288) (-608 -2816 192) (-608 -2968 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8019" + "plane" "(1236 775 123) (1172 775 123) (1172 775 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8018" + "plane" "(1172 774 123) (1236 774 123) (1236 774 122)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32597" + "id" "2570" side { - "id" "27455" - "plane" "(-752 -2968 224) (-752 -2968 264) (-768 -2968 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8031" + "plane" "(1206 770 126) (1202 770 126) (1202 780 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 144.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27454" - "plane" "(-821.344 -2976 224) (-768 -2976 264) (-752 -2976 264)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8030" + "plane" "(1207 770 120) (1207 780 120) (1201 780 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27453" - "plane" "(-768 -2976 264) (-821.341 -2976 224) (-821.332 -2968 224)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8029" + "plane" "(1207 770 125) (1207 780 125) (1207 780 120)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27452" - "plane" "(-752 -2968 264) (-752 -2968 224) (-752 -2976 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8028" + "plane" "(1201 780 125) (1201 770 125) (1201 770 120)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27451" - "plane" "(-752 -2968 224) (-821.336 -2968 224) (-821.348 -2976 224)" + "id" "8027" + "plane" "(1207 780 125) (1206 780 126) (1202 780 126)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27450" - "plane" "(-752 -2976 264) (-768 -2976 264) (-768 -2968 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8026" + "plane" "(1201 770 125) (1202 770 126) (1206 770 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 144.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor + side { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "id" "8025" + "plane" "(1202 780 126) (1202 770 126) (1201 770 125)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8024" + "plane" "(1206 770 126) (1206 780 126) (1207 780 125)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32598" + "id" "2571" side { - "id" "27461" - "plane" "(-608 -2968 192) (-720 -2968 192) (-720 -2976 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "8037" + "plane" "(1236 775 122) (1236 773 122) (1172 773 122)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27460" - "plane" "(-720 -2968 192) (-608 -2968 192) (-650.671 -2968 224)" + "id" "8036" + "plane" "(1236 773 120) (1236 775 120) (1172 775 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27459" - "plane" "(-608 -2976 192) (-720 -2976 192) (-720 -2976 224)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8035" + "plane" "(1236 773 122) (1236 775 122) (1236 775 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27458" - "plane" "(-650.664 -2968 224) (-608 -2968 192) (-608 -2976 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8034" + "plane" "(1172 775 122) (1172 773 122) (1172 773 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27457" - "plane" "(-720 -2976 224) (-720 -2976 192) (-720 -2968 192)" + "id" "8033" + "plane" "(1236 775 122) (1172 775 122) (1172 775 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27456" - "plane" "(-650.668 -2976 224) (-720 -2976 224) (-720 -2968 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8032" + "plane" "(1172 773 122) (1236 773 122) (1236 773 120)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32599" + "id" "2572" side { - "id" "27468" - "plane" "(-720 -2968 264) (-720 -2968 276) (-736 -2968 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8044" + "plane" "(1236 775 125) (1236 774 125) (1172 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27467" - "plane" "(-752 -2976 264) (-752 -2976 276) (-736 -2976 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8043" + "plane" "(1236 773 123) (1236 775 123) (1172 775 123)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27466" - "plane" "(-736 -2976 288) (-752 -2976 276) (-752 -2968 276)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8042" + "plane" "(1236 773 124) (1236 774 125) (1236 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4.66016] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27465" - "plane" "(-720 -2976 276) (-736 -2976 288) (-736 -2968 288)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8041" + "plane" "(1172 775 125) (1172 774 125) (1172 773 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4.66016] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27464" - "plane" "(-752 -2976 276) (-752 -2976 264) (-752 -2968 264)" + "id" "8040" + "plane" "(1236 775 125) (1172 775 125) (1172 775 123)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27463" - "plane" "(-720 -2968 276) (-720 -2968 264) (-720 -2976 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8039" + "plane" "(1172 773 124) (1236 773 124) (1236 773 123)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27462" - "plane" "(-720 -2968 264) (-752 -2968 264) (-752 -2976 264)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8038" + "plane" "(1236 774 125) (1236 773 124) (1172 773 124)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[1 0 0 -240.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32600" + "id" "2573" side { - "id" "27473" - "plane" "(-752 -2968 264) (-752 -2968 276) (-768 -2968 264)" + "id" "8052" + "plane" "(1206 780 228) (1206 772 228) (1205 771 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27472" - "plane" "(-768 -2976 264) (-752 -2976 276) (-752 -2976 264)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8051" + "plane" "(1202 772 126) (1203 771 126) (1205 771 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27471" - "plane" "(-752 -2976 276) (-768 -2976 264) (-768 -2968 264)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8050" + "plane" "(1206 780 228) (1202 780 228) (1202 780 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 0 -1 45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27470" - "plane" "(-752 -2968 276) (-752 -2968 264) (-752 -2976 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8049" + "plane" "(1202 780 228) (1202 772 228) (1202 772 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27469" - "plane" "(-752 -2968 264) (-768 -2968 264) (-768 -2976 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8048" + "plane" "(1206 772 228) (1206 780 228) (1206 780 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8047" + "plane" "(1205 771 228) (1206 772 228) (1206 772 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8046" + "plane" "(1202 772 228) (1203 771 228) (1203 771 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8045" + "plane" "(1203 771 228) (1205 771 228) (1205 771 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -240.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32601" + "id" "2574" side { - "id" "27479" - "plane" "(-650.676 -2968 224) (-704 -2968 264) (-720 -2968 264)" + "id" "8058" + "plane" "(1208 775 192) (1208 774 192) (1206 774 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 8.69727] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27478" - "plane" "(-720 -2976 224) (-720 -2976 264) (-704 -2976 264)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8057" + "plane" "(1208 774 125) (1208 775 125) (1206 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8.69727] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27477" - "plane" "(-650.668 -2976 224) (-704 -2976 264) (-704 -2968 264)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8056" + "plane" "(1208 774 192) (1208 775 192) (1208 775 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27476" - "plane" "(-720 -2976 264) (-720 -2976 224) (-720 -2968 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8055" + "plane" "(1206 775 192) (1206 774 192) (1206 774 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27475" - "plane" "(-650.668 -2968 224) (-720 -2968 224) (-720 -2976 224)" + "id" "8054" + "plane" "(1208 775 192) (1206 775 192) (1206 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 8.69727] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27474" - "plane" "(-704 -2976 264) (-720 -2976 264) (-720 -2968 264)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8053" + "plane" "(1206 774 192) (1208 774 192) (1208 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32602" + "id" "2575" side { - "id" "27485" - "plane" "(-720 -2968 192) (-752 -2968 192) (-752 -2976 192)" + "id" "8064" + "plane" "(1202 775 192) (1202 774 192) (1200 774 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27484" - "plane" "(-752 -2968 224) (-752 -2968 192) (-720 -2968 192)" + "id" "8063" + "plane" "(1202 774 125) (1202 775 125) (1200 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27483" - "plane" "(-720 -2976 224) (-720 -2976 192) (-752 -2976 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8062" + "plane" "(1202 774 192) (1202 775 192) (1202 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27482" - "plane" "(-752 -2976 224) (-752 -2976 192) (-752 -2968 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8061" + "plane" "(1200 775 192) (1200 774 192) (1200 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27481" - "plane" "(-720 -2968 224) (-720 -2968 192) (-720 -2976 192)" + "id" "8060" + "plane" "(1202 775 192) (1200 775 192) (1200 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27480" - "plane" "(-720 -2976 224) (-752 -2976 224) (-752 -2968 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8059" + "plane" "(1200 774 192) (1202 774 192) (1202 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32603" + "id" "2576" side { - "id" "27490" - "plane" "(-704 -2968 264) (-720 -2968 276) (-720 -2968 264)" + "id" "8070" + "plane" "(1174 775 231) (1174 774 231) (1172 774 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27489" - "plane" "(-720 -2976 264) (-720 -2976 276) (-704 -2976 264)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8069" + "plane" "(1174 774 125) (1174 775 125) (1172 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27488" - "plane" "(-704 -2976 264) (-720 -2976 276) (-720 -2968 276)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8068" + "plane" "(1174 774 231) (1174 775 231) (1174 775 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27487" - "plane" "(-720 -2976 276) (-720 -2976 264) (-720 -2968 264)" + "id" "8067" + "plane" "(1172 775 231) (1172 774 231) (1172 774 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27486" - "plane" "(-704 -2968 264) (-720 -2968 264) (-720 -2976 264)" + "id" "8066" + "plane" "(1174 775 231) (1172 775 231) (1172 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8065" + "plane" "(1172 774 231) (1174 774 231) (1174 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32604" + "id" "2577" side { - "id" "27496" - "plane" "(-752 -2968 192) (-864 -2968 192) (-864 -2976 192)" + "id" "8076" + "plane" "(1236 776 236) (1236 775 236) (1172 775 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27495" - "plane" "(-864 -2968 192) (-752 -2968 192) (-752 -2968 224)" + "id" "8075" + "plane" "(1236 775 120) (1236 776 120) (1172 776 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27494" - "plane" "(-752 -2976 192) (-864 -2976 192) (-821.332 -2976 224)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8074" + "plane" "(1236 775 236) (1236 776 236) (1236 776 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27493" - "plane" "(-821.337 -2976 224) (-864 -2976 192) (-864 -2968 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8073" + "plane" "(1172 776 236) (1172 775 236) (1172 775 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27492" - "plane" "(-752 -2968 224) (-752 -2968 192) (-752 -2976 192)" + "id" "8072" + "plane" "(1236 776 236) (1172 776 236) (1172 776 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27491" - "plane" "(-752 -2976 224) (-821.336 -2976 224) (-821.332 -2968 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8071" + "plane" "(1172 775 236) (1236 775 236) (1236 775 120)" + "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" + "uaxis" "[-1 0 0 160] 0.125" + "vaxis" "[0 0 -1 17.6552] 0.226563" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32605" + "id" "2578" side { - "id" "27502" - "plane" "(-720 -2976 220) (-752 -2976 220) (-752 -2980 220)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8082" + "plane" "(1236 775 191) (1236 773 191) (1172 773 191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27501" - "plane" "(-752 -2976 224) (-752 -2976 220) (-720 -2976 220)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8081" + "plane" "(1236 773 189) (1236 775 189) (1172 775 189)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27500" - "plane" "(-720 -2980 224) (-720 -2980 220) (-752 -2980 220)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8080" + "plane" "(1236 773 191) (1236 775 191) (1236 775 189)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27499" - "plane" "(-752 -2980 224) (-752 -2980 220) (-752 -2976 220)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8079" + "plane" "(1172 775 191) (1172 773 191) (1172 773 189)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27498" - "plane" "(-720 -2976 224) (-720 -2976 220) (-720 -2980 220)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8078" + "plane" "(1236 775 191) (1172 775 191) (1172 775 189)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27497" - "plane" "(-720 -2980 224) (-752 -2980 224) (-752 -2976 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8077" + "plane" "(1172 773 191) (1236 773 191) (1236 773 189)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32606" + "id" "2579" side { - "id" "27508" - "plane" "(-896 -2976 192) (-896 -2656 192) (-576 -2656 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8089" + "plane" "(1172 772 191) (1172 780 191) (1172 780 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27507" - "plane" "(-896 -2656 160) (-896 -2976 160) (-576 -2976 160)" + "id" "8088" + "plane" "(1203 780 191) (1203 780 194) (1172 780 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[-1 0 0 -19.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27506" - "plane" "(-896 -2976 160) (-896 -2656 160) (-896 -2656 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8087" + "plane" "(1172 772 191) (1203 772 191) (1203 780 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 252.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27505" - "plane" "(-576 -2656 160) (-576 -2976 160) (-576 -2976 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8086" + "plane" "(1172 771 192) (1203 771 192) (1203 772 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 252.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27504" - "plane" "(-896 -2656 160) (-576 -2656 160) (-576 -2656 192)" + "id" "8085" + "plane" "(1172 771 194) (1203 771 194) (1203 771 192)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 245.307] 0.25" + "vaxis" "[-1 0 0 252.697] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8084" + "plane" "(1172 780 194) (1203 780 194) (1203 771 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27503" - "plane" "(-576 -2976 160) (-896 -2976 160) (-896 -2976 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8083" + "plane" "(1203 772 191) (1203 771 192) (1203 771 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32607" + "id" "2580" side { - "id" "27514" - "plane" "(-960 -2976 160) (-960 -2960 160) (-512 -2960 160)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8096" + "plane" "(1236 772 191) (1236 771 192) (1236 771 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27513" - "plane" "(-960 -2960 128) (-960 -2976 128) (-512 -2976 128)" + "id" "8095" + "plane" "(1236 780 194) (1205 780 194) (1205 780 191)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[-1 0 0 -19.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27512" - "plane" "(-960 -2976 128) (-960 -2960 128) (-960 -2960 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8094" + "plane" "(1236 780 191) (1205 780 191) (1205 772 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 252.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27511" - "plane" "(-512 -2960 128) (-512 -2976 128) (-512 -2976 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8093" + "plane" "(1205 772 191) (1205 771 192) (1236 771 192)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 252.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27510" - "plane" "(-960 -2960 128) (-512 -2960 128) (-512 -2960 160)" + "id" "8092" + "plane" "(1205 771 192) (1205 771 194) (1236 771 194)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 245.307] 0.25" + "vaxis" "[-1 0 0 252.697] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8091" + "plane" "(1236 771 194) (1205 771 194) (1205 780 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27509" - "plane" "(-512 -2976 128) (-960 -2976 128) (-960 -2976 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8090" + "plane" "(1205 772 191) (1205 780 191) (1205 780 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32611" + "id" "2581" side { - "id" "27520" - "plane" "(-528 -2816 160) (-528 -2976 160) (-512 -2976 160)" + "id" "8102" + "plane" "(1236 775 231) (1236 774 231) (1234 774 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27519" - "plane" "(-528 -2968 176) (-528 -2976 160) (-528 -2816 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8101" + "plane" "(1236 774 125) (1236 775 125) (1234 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27518" - "plane" "(-512 -2816 160) (-512 -2976 160) (-512 -2968 176)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8100" + "plane" "(1236 774 231) (1236 775 231) (1236 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27517" - "plane" "(-512 -2968 176) (-512 -2976 160) (-528 -2976 160)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8099" + "plane" "(1234 775 231) (1234 774 231) (1234 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27516" - "plane" "(-528 -2816 176) (-528 -2816 160) (-512 -2816 160)" + "id" "8098" + "plane" "(1236 775 231) (1234 775 231) (1234 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27515" - "plane" "(-528 -2968 176) (-528 -2816 176) (-512 -2816 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8097" + "plane" "(1234 774 231) (1236 774 231) (1236 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 144.697] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32610" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32612" + "id" "2582" side { - "id" "27526" - "plane" "(-528 -2944 224) (-528 -2968 176) (-528 -2840 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8108" + "plane" "(1328 780 197) (1328 768 197) (1172 768 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27525" - "plane" "(-512 -2968 176) (-512 -2944 224) (-512 -2840 224)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8107" + "plane" "(1328 768 194) (1328 780 194) (1172 780 194)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27524" - "plane" "(-512 -2944 224) (-512 -2968 176) (-528 -2968 176)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8106" + "plane" "(1328 768 197) (1328 780 197) (1328 780 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 13.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27523" - "plane" "(-528 -2840 224) (-528 -2840 176) (-512 -2840 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8105" + "plane" "(1172 780 197) (1172 768 197) (1172 768 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 13.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27522" - "plane" "(-528 -2944 224) (-528 -2840 224) (-512 -2840 224)" + "id" "8104" + "plane" "(1328 780 197) (1172 780 197) (1172 780 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 13.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27521" - "plane" "(-528 -2840 176) (-528 -2968 176) (-512 -2968 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8103" + "plane" "(1172 768 197) (1328 768 197) (1328 768 194)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32610" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32613" + "id" "2583" side { - "id" "27532" - "plane" "(-528 -2896 304) (-528 -2896 288) (-512 -2896 288)" + "id" "8114" + "plane" "(1236 775 233) (1236 773 233) (1172 773 233)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27531" - "plane" "(-528 -2928 272) (-528 -2928 256) (-528 -2896 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8113" + "plane" "(1236 773 231) (1236 775 231) (1172 775 231)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27530" - "plane" "(-512 -2896 304) (-512 -2896 288) (-512 -2928 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8112" + "plane" "(1236 773 233) (1236 775 233) (1236 775 231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27529" - "plane" "(-512 -2928 272) (-512 -2928 256) (-528 -2928 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8111" + "plane" "(1172 775 233) (1172 773 233) (1172 773 231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27528" - "plane" "(-528 -2928 272) (-528 -2896 304) (-512 -2896 304)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8110" + "plane" "(1236 775 233) (1172 775 233) (1172 775 231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27527" - "plane" "(-512 -2928 256) (-512 -2896 288) (-528 -2896 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8109" + "plane" "(1172 773 233) (1236 773 233) (1236 773 231)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 0 -1 457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32610" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32614" + "id" "2584" side { - "id" "27538" - "plane" "(-528 -2816 304) (-528 -2816 288) (-512 -2816 288)" + "id" "8121" + "plane" "(1236 772 233) (1236 771 234) (1236 771 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27537" - "plane" "(-528 -2896 304) (-528 -2896 288) (-528 -2816 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8120" + "plane" "(1172 772 233) (1172 780 233) (1172 780 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27536" - "plane" "(-512 -2816 304) (-512 -2816 288) (-512 -2896 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8119" + "plane" "(1236 780 233) (1236 780 236) (1172 780 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[-1 0 0 -19.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27535" - "plane" "(-512 -2896 304) (-512 -2896 288) (-528 -2896 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8118" + "plane" "(1236 772 233) (1236 780 233) (1172 780 233)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 252.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27534" - "plane" "(-528 -2896 304) (-528 -2816 304) (-512 -2816 304)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8117" + "plane" "(1172 772 233) (1172 771 234) (1236 771 234)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 252.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27533" - "plane" "(-512 -2816 288) (-528 -2816 288) (-528 -2896 288)" + "id" "8116" + "plane" "(1172 771 234) (1172 771 236) (1236 771 236)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 413.307] 0.25" + "vaxis" "[-1 0 0 252.697] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8115" + "plane" "(1236 780 236) (1236 771 236) (1172 771 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32610" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32615" + "id" "2585" side { - "id" "27545" - "plane" "(-528 -2896 288) (-528 -2816 288) (-512 -2816 288)" + "id" "8129" + "plane" "(1264 776 174) (1264 770 174) (1262 768 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27544" - "plane" "(-528 -2816 224) (-528 -2816 288) (-528 -2896 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8128" + "plane" "(1238 768 136) (1262 768 136) (1264 770 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27543" - "plane" "(-512 -2944 224) (-512 -2928 256) (-512 -2896 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8127" + "plane" "(1264 770 174) (1264 776 174) (1264 776 136)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 0.663086] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27542" - "plane" "(-528 -2944 224) (-528 -2928 256) (-512 -2928 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8126" + "plane" "(1236 776 174) (1236 770 174) (1236 770 136)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -400.656] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27541" - "plane" "(-528 -2928 256) (-528 -2896 288) (-512 -2896 288)" + "id" "8125" + "plane" "(1264 776 174) (1236 776 174) (1236 776 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27540" - "plane" "(-512 -2816 224) (-512 -2816 288) (-528 -2816 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8124" + "plane" "(1238 768 174) (1262 768 174) (1262 768 136)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27539" - "plane" "(-528 -2816 224) (-528 -2944 224) (-512 -2944 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8123" + "plane" "(1236 770 174) (1238 768 174) (1238 768 136)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 0.707107 0 -422.28] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8122" + "plane" "(1262 768 174) (1264 770 174) (1264 770 136)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 311] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32610" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32617" + "id" "2586" side { - "id" "27551" - "plane" "(-528 -2656 160) (-528 -2816 160) (-512 -2816 160)" + "id" "8136" + "plane" "(1238 768 174) (1244 768 174) (1244 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27550" - "plane" "(-528 -2816 160) (-528 -2656 160) (-528 -2664 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8135" + "plane" "(1244 776 182) (1244 768 182) (1238 768 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27549" - "plane" "(-512 -2664 176) (-512 -2656 160) (-512 -2816 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8134" + "plane" "(1244 768 182) (1244 776 182) (1244 776 174)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27548" - "plane" "(-528 -2664 176) (-528 -2656 160) (-512 -2656 160)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8133" + "plane" "(1236 776 182) (1236 770 182) (1236 770 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27547" - "plane" "(-512 -2816 176) (-512 -2816 160) (-528 -2816 160)" + "id" "8132" + "plane" "(1244 776 182) (1236 776 182) (1236 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27546" - "plane" "(-528 -2816 176) (-528 -2664 176) (-512 -2664 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8131" + "plane" "(1238 768 182) (1244 768 182) (1244 768 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8130" + "plane" "(1236 770 182) (1238 768 182) (1238 768 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32616" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32618" + "id" "2587" side { - "id" "27557" - "plane" "(-528 -2664 176) (-528 -2688 224) (-528 -2792 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8142" + "plane" "(1256 768 174) (1256 776 174) (1244 776 174)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27556" - "plane" "(-512 -2688 224) (-512 -2664 176) (-512 -2792 176)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8141" + "plane" "(1256 776 186) (1256 768 186) (1244 768 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27555" - "plane" "(-528 -2688 224) (-528 -2664 176) (-512 -2664 176)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8140" + "plane" "(1256 768 186) (1256 776 186) (1256 776 174)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27554" - "plane" "(-512 -2792 224) (-512 -2792 176) (-528 -2792 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8139" + "plane" "(1244 776 186) (1244 768 186) (1244 768 174)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27553" - "plane" "(-528 -2792 224) (-528 -2688 224) (-512 -2688 224)" + "id" "8138" + "plane" "(1256 776 186) (1244 776 186) (1244 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27552" - "plane" "(-528 -2664 176) (-528 -2792 176) (-512 -2792 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8137" + "plane" "(1244 768 186) (1256 768 186) (1256 768 174)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32616" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32619" + "id" "2588" side { - "id" "27563" - "plane" "(-512 -2736 304) (-512 -2736 288) (-528 -2736 288)" + "id" "8148" + "plane" "(1264 768 186) (1264 776 186) (1236 776 186)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27562" - "plane" "(-528 -2736 304) (-528 -2736 288) (-528 -2704 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8147" + "plane" "(1264 776 194) (1264 768 194) (1236 768 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27561" - "plane" "(-512 -2704 272) (-512 -2704 256) (-512 -2736 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8146" + "plane" "(1264 768 194) (1264 776 194) (1264 776 186)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27560" - "plane" "(-528 -2704 272) (-528 -2704 256) (-512 -2704 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8145" + "plane" "(1236 776 194) (1236 768 194) (1236 768 186)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27559" - "plane" "(-512 -2704 272) (-512 -2736 304) (-528 -2736 304)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8144" + "plane" "(1264 776 194) (1236 776 194) (1236 776 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -13.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27558" - "plane" "(-528 -2704 256) (-528 -2736 288) (-512 -2736 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8143" + "plane" "(1236 768 194) (1264 768 194) (1264 768 186)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32616" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32620" + "id" "2589" side { - "id" "27569" - "plane" "(-512 -2816 304) (-512 -2816 288) (-528 -2816 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8154" + "plane" "(1244 768 182) (1244 776 182) (1236 776 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27568" - "plane" "(-528 -2816 304) (-528 -2816 288) (-528 -2736 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8153" + "plane" "(1244 776 186) (1244 768 186) (1236 768 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27567" - "plane" "(-512 -2736 304) (-512 -2736 288) (-512 -2816 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8152" + "plane" "(1244 768 186) (1244 776 186) (1244 776 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27566" - "plane" "(-528 -2736 304) (-528 -2736 288) (-512 -2736 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8151" + "plane" "(1236 776 186) (1236 768 186) (1236 768 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27565" - "plane" "(-512 -2816 304) (-528 -2816 304) (-528 -2736 304)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "8150" + "plane" "(1244 776 186) (1236 776 186) (1236 776 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27564" - "plane" "(-528 -2736 288) (-528 -2816 288) (-512 -2816 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "8149" + "plane" "(1236 768 186) (1244 768 186) (1244 768 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32616" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32621" + "id" "2590" side { - "id" "27576" - "plane" "(-528 -2816 288) (-528 -2736 288) (-512 -2736 288)" + "id" "8161" + "plane" "(1262 768 174) (1264 770 174) (1264 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27575" - "plane" "(-528 -2688 224) (-528 -2704 256) (-528 -2736 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8160" + "plane" "(1264 776 182) (1264 770 182) (1262 768 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27574" - "plane" "(-512 -2816 224) (-512 -2816 288) (-512 -2736 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8159" + "plane" "(1264 770 182) (1264 776 182) (1264 776 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27573" - "plane" "(-512 -2688 224) (-512 -2704 256) (-528 -2704 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8158" + "plane" "(1256 776 182) (1256 768 182) (1256 768 174)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27572" - "plane" "(-512 -2704 256) (-512 -2736 288) (-528 -2736 288)" + "id" "8157" + "plane" "(1264 776 182) (1256 776 182) (1256 776 174)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27571" - "plane" "(-528 -2816 224) (-528 -2816 288) (-512 -2816 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8156" + "plane" "(1256 768 182) (1262 768 182) (1262 768 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27570" - "plane" "(-528 -2688 224) (-528 -2816 224) (-512 -2816 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8155" + "plane" "(1262 768 182) (1264 770 182) (1264 770 174)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32616" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32622" + "id" "2591" side { - "id" "27582" - "plane" "(-512 -2848 176) (-512 -2784 176) (-508 -2784 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8167" + "plane" "(1264 768 182) (1264 776 182) (1256 776 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27581" - "plane" "(-512 -2784 168) (-512 -2848 168) (-508 -2848 168)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8166" + "plane" "(1264 776 186) (1264 768 186) (1256 768 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27580" - "plane" "(-512 -2848 168) (-512 -2784 168) (-512 -2784 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8165" + "plane" "(1264 768 186) (1264 776 186) (1264 776 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27579" - "plane" "(-508 -2784 168) (-508 -2848 168) (-508 -2848 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8164" + "plane" "(1256 776 186) (1256 768 186) (1256 768 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27578" - "plane" "(-512 -2784 168) (-508 -2784 168) (-508 -2784 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8163" + "plane" "(1264 776 186) (1256 776 186) (1256 776 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27577" - "plane" "(-508 -2848 168) (-512 -2848 168) (-512 -2848 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8162" + "plane" "(1256 768 186) (1264 768 186) (1264 768 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32623" + "id" "2592" side { - "id" "27588" - "plane" "(-672 -2980 40) (-672 -2976 40) (-608 -2976 40)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8175" + "plane" "(1264 776 236) (1264 770 236) (1262 768 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27587" - "plane" "(-672 -2976 32) (-672 -2980 32) (-608 -2980 32)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8174" + "plane" "(1238 768 199) (1262 768 199) (1264 770 199)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27586" - "plane" "(-672 -2980 32) (-672 -2976 32) (-672 -2976 40)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8173" + "plane" "(1264 770 236) (1264 776 236) (1264 776 199)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 0.663086] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27585" - "plane" "(-608 -2976 32) (-608 -2980 32) (-608 -2980 40)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8172" + "plane" "(1236 776 236) (1236 770 236) (1236 770 199)" + "material" "BRICK/WALL20" + "uaxis" "[0 1 0 -400.656] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27584" - "plane" "(-672 -2976 32) (-608 -2976 32) (-608 -2976 40)" + "id" "8171" + "plane" "(1264 776 236) (1236 776 236) (1236 776 199)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27583" - "plane" "(-608 -2980 32) (-672 -2980 32) (-672 -2980 40)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8170" + "plane" "(1238 768 236) (1262 768 236) (1262 768 199)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8169" + "plane" "(1236 770 236) (1238 768 236) (1238 768 199)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 0.707107 0 -422.28] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8168" + "plane" "(1262 768 236) (1264 770 236) (1264 770 199)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 311] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32624" + "id" "2593" side { - "id" "27594" - "plane" "(-608 -2976 128) (-608 -2960 128) (-512 -2960 128)" + "id" "8181" + "plane" "(1264 768 197) (1264 776 197) (1236 776 197)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27593" - "plane" "(-608 -2960 0) (-608 -2976 0) (-512 -2976 0)" + "id" "8180" + "plane" "(1264 776 199) (1264 768 199) (1236 768 199)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27592" - "plane" "(-608 -2976 0) (-608 -2960 0) (-608 -2960 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8179" + "plane" "(1264 768 199) (1264 776 199) (1264 776 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -281.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27591" - "plane" "(-512 -2960 0) (-512 -2976 0) (-512 -2976 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8178" + "plane" "(1236 776 199) (1236 768 199) (1236 768 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -281.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27590" - "plane" "(-608 -2960 0) (-512 -2960 0) (-512 -2960 128)" + "id" "8177" + "plane" "(1264 776 199) (1236 776 199) (1236 776 197)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27589" - "plane" "(-512 -2976 0) (-608 -2976 0) (-608 -2976 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8176" + "plane" "(1236 768 199) (1264 768 199) (1264 768 197)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 1 -281.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32625" + "id" "2594" side { - "id" "27600" - "plane" "(-672 -2976 40) (-672 -2960 40) (-608 -2960 40)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8187" + "plane" "(1328 776 244) (1328 768 244) (1172 768 244)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27599" - "plane" "(-672 -2960 0) (-672 -2976 0) (-608 -2976 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8186" + "plane" "(1328 768 236) (1328 776 236) (1172 776 236)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27598" - "plane" "(-672 -2976 0) (-672 -2960 0) (-672 -2960 40)" + "id" "8185" + "plane" "(1328 768 244) (1328 776 244) (1328 776 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27597" - "plane" "(-608 -2960 0) (-608 -2976 0) (-608 -2976 40)" + "id" "8184" + "plane" "(1172 776 244) (1172 768 244) (1172 768 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27596" - "plane" "(-672 -2960 0) (-608 -2960 0) (-608 -2960 40)" + "id" "8183" + "plane" "(1328 776 244) (1172 776 244) (1172 776 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27595" - "plane" "(-608 -2976 0) (-672 -2976 0) (-672 -2976 40)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8182" + "plane" "(1172 768 244) (1328 768 244) (1328 768 236)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 -1 429.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32626" + "id" "2595" side { - "id" "27606" - "plane" "(-704 -2976 128) (-704 -2960 128) (-672 -2960 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8193" + "plane" "(1172 768 228) (1172 776 228) (1164 776 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27605" - "plane" "(-704 -2960 0) (-704 -2976 0) (-672 -2976 0)" + "id" "8192" + "plane" "(1172 776 244) (1172 768 244) (1164 768 244)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27604" - "plane" "(-704 -2976 0) (-704 -2960 0) (-704 -2960 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8191" + "plane" "(1164 776 244) (1164 768 244) (1164 768 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27603" - "plane" "(-672 -2960 0) (-672 -2976 0) (-672 -2976 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8190" + "plane" "(1172 768 244) (1172 776 244) (1172 776 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -160.663] 0.25" + "vaxis" "[0 0 1 -457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27602" - "plane" "(-704 -2960 0) (-672 -2960 0) (-672 -2960 128)" + "id" "8189" + "plane" "(1172 776 244) (1164 776 244) (1164 776 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 1 14.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27601" - "plane" "(-672 -2976 0) (-704 -2976 0) (-704 -2976 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8188" + "plane" "(1164 768 244) (1172 768 244) (1172 768 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 1 -457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32627" + "id" "2596" side { - "id" "27612" - "plane" "(-960 -2656 160) (-512 -2656 160) (-512 -2960 160)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8199" + "plane" "(1172 776 202) (1164 776 202) (1164 768 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27611" - "plane" "(-960 -2960 -32) (-512 -2960 -32) (-512 -2656 -32)" + "id" "8198" + "plane" "(1172 768 228) (1164 768 228) (1164 776 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27610" - "plane" "(-960 -2656 -32) (-960 -2656 160) (-960 -2960 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8197" + "plane" "(1172 768 228) (1172 776 228) (1172 776 202)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 432.663] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27609" - "plane" "(-512 -2960 -32) (-512 -2960 160) (-512 -2656 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8196" + "plane" "(1172 776 228) (1164 776 228) (1164 776 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27608" - "plane" "(-512 -2656 -32) (-512 -2656 160) (-960 -2656 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8195" + "plane" "(1164 768 228) (1172 768 228) (1172 768 202)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 320.695] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27607" - "plane" "(-960 -2960 -32) (-960 -2960 160) (-512 -2960 160)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8194" + "plane" "(1164 776 228) (1164 768 228) (1164 768 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32628" + "id" "2597" side { - "id" "27618" - "plane" "(-752 -2960 128) (-704 -2960 128) (-704 -2976 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8205" + "plane" "(1172 768 182) (1172 776 182) (1164 776 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27617" - "plane" "(-752 -2976 104) (-704 -2976 96) (-704 -2960 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8204" + "plane" "(1172 776 202) (1172 768 202) (1164 768 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27616" - "plane" "(-704 -2960 96) (-704 -2976 96) (-704 -2976 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8203" + "plane" "(1172 768 202) (1172 776 202) (1172 776 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27615" - "plane" "(-704 -2960 128) (-752 -2960 128) (-752 -2960 104)" + "id" "8202" + "plane" "(1164 776 202) (1164 768 202) (1164 768 182)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27614" - "plane" "(-704 -2976 96) (-752 -2976 104) (-752 -2976 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8201" + "plane" "(1172 776 202) (1164 776 202) (1164 776 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27613" - "plane" "(-752 -2976 104) (-752 -2960 104) (-752 -2960 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8200" + "plane" "(1164 768 202) (1172 768 202) (1172 768 182)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32629" + "id" "2598" side { - "id" "27624" - "plane" "(-672 -2976 128) (-672 -2960 128) (-640 -2960 128)" + "id" "8211" + "plane" "(1164 776 176) (1160 776 176) (1160 768 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27623" - "plane" "(-672 -2960 96) (-672 -2976 96) (-640 -2976 104)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8210" + "plane" "(1164 768 244) (1160 768 244) (1160 776 244)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27622" - "plane" "(-672 -2976 96) (-672 -2960 96) (-672 -2960 128)" + "id" "8209" + "plane" "(1164 768 244) (1164 776 244) (1164 776 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27621" - "plane" "(-672 -2960 96) (-640 -2960 104) (-640 -2960 128)" + "id" "8208" + "plane" "(1164 776 244) (1160 776 244) (1160 776 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 0 1 -45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27620" - "plane" "(-672 -2976 128) (-640 -2976 128) (-640 -2976 104)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8207" + "plane" "(1160 768 244) (1164 768 244) (1164 768 176)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 320.695] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27619" - "plane" "(-640 -2960 104) (-640 -2976 104) (-640 -2976 128)" + "id" "8206" + "plane" "(1160 776 244) (1160 768 244) (1160 768 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32630" + "id" "2599" side { - "id" "27630" - "plane" "(-640 -2960 128) (-608 -2960 128) (-608 -2976 128)" + "id" "8218" + "plane" "(1170 768 176) (1172 770 176) (1172 776 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27629" - "plane" "(-640 -2976 104) (-608 -2976 96) (-608 -2960 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8217" + "plane" "(1172 776 182) (1172 770 182) (1170 768 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27628" - "plane" "(-608 -2960 96) (-608 -2976 96) (-608 -2976 128)" + "id" "8216" + "plane" "(1172 770 182) (1172 776 182) (1172 776 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8215" + "plane" "(1164 776 182) (1164 768 182) (1164 768 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27627" - "plane" "(-608 -2960 128) (-640 -2960 128) (-640 -2960 104)" + "id" "8214" + "plane" "(1172 776 182) (1164 776 182) (1164 776 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 1 -29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27626" - "plane" "(-608 -2976 96) (-640 -2976 104) (-640 -2976 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8213" + "plane" "(1164 768 182) (1170 768 182) (1170 768 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27625" - "plane" "(-640 -2976 104) (-640 -2960 104) (-640 -2960 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8212" + "plane" "(1170 768 182) (1172 770 182) (1172 770 176)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32631" + "id" "2600" side { - "id" "27636" - "plane" "(-800 -2976 128) (-800 -2960 128) (-752 -2960 128)" + "id" "8225" + "plane" "(1172 770 176) (1170 768 176) (1160 768 176)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27635" - "plane" "(-800 -2960 96) (-800 -2976 96) (-752 -2976 104)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8224" + "plane" "(1172 770 136) (1172 776 136) (1160 776 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27634" - "plane" "(-800 -2976 96) (-800 -2960 96) (-800 -2960 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8223" + "plane" "(1172 770 176) (1172 776 176) (1172 776 136)" + "material" "BRICK/WALL20" + "uaxis" "[0 -1 0 480.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27633" - "plane" "(-800 -2960 96) (-752 -2960 104) (-752 -2960 128)" + "id" "8222" + "plane" "(1172 776 176) (1160 776 176) (1160 776 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 37.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27632" - "plane" "(-800 -2976 128) (-752 -2976 128) (-752 -2976 104)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8221" + "plane" "(1160 768 176) (1170 768 176) (1170 768 136)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 320.695] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27631" - "plane" "(-752 -2960 104) (-752 -2976 104) (-752 -2976 128)" + "id" "8220" + "plane" "(1170 768 176) (1172 770 176) (1172 770 136)" + "material" "BRICK/WALL20" + "uaxis" "[-0.707107 -0.707107 0 18.7828] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8219" + "plane" "(1160 776 176) (1160 768 176) (1160 768 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32632" + "id" "2601" side { - "id" "27642" - "plane" "(-960 -2960 128) (-800 -2960 128) (-800 -2976 128)" + "id" "8232" + "plane" "(1172 776 136) (1172 770 136) (1170 768 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27641" - "plane" "(-960 -2976 -32) (-800 -2976 -32) (-800 -2960 -32)" + "id" "8231" + "plane" "(1170 768 128) (1172 770 128) (1172 776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27640" - "plane" "(-960 -2960 -32) (-960 -2960 128) (-960 -2976 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8230" + "plane" "(1172 770 136) (1172 776 136) (1172 776 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27639" - "plane" "(-800 -2976 -32) (-800 -2976 128) (-800 -2960 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8229" + "plane" "(1164 776 136) (1164 768 136) (1164 768 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27638" - "plane" "(-800 -2960 -32) (-800 -2960 128) (-960 -2960 128)" + "id" "8228" + "plane" "(1172 776 136) (1164 776 136) (1164 776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27637" - "plane" "(-960 -2976 -32) (-960 -2976 128) (-800 -2976 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8227" + "plane" "(1164 768 136) (1170 768 136) (1170 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8226" + "plane" "(1170 768 136) (1172 770 136) (1172 770 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "153 242 0" - "groupid" "32777" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "32979" + "id" "2602" side { - "id" "27654" - "plane" "(-800 -2976 0) (-800 -2960 0) (-704 -2960 0)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8238" + "plane" "(1164 768 136) (1160 768 136) (1160 776 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27653" - "plane" "(-800 -2960 -64) (-800 -2976 -64) (-704 -2976 -64)" + "id" "8237" + "plane" "(1164 776 124) (1160 776 124) (1160 768 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27652" - "plane" "(-800 -2976 -64) (-800 -2960 -64) (-800 -2960 0)" + "id" "8236" + "plane" "(1164 768 136) (1164 776 136) (1164 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27651" - "plane" "(-704 -2960 -64) (-704 -2976 -64) (-704 -2976 0)" + "id" "8235" + "plane" "(1164 776 136) (1160 776 136) (1160 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27650" - "plane" "(-800 -2960 -64) (-704 -2960 -64) (-704 -2960 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8234" + "plane" "(1160 768 136) (1164 768 136) (1164 768 124)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 320.695] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "27649" - "plane" "(-704 -2976 -64) (-800 -2976 -64) (-800 -2976 0)" + "id" "8233" + "plane" "(1160 776 136) (1160 768 136) (1160 768 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 156" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } - hidden - { - solid - { - "id" "33020" - side - { - "id" "38530" - "plane" "(-576 -3264 2048) (-576 -3264 0) (-576 -3096 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38529" - "plane" "(-512 -3096 2048) (-512 -3096 0) (-512 -3264 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38528" - "plane" "(-576 -3096 2048) (-576 -3096 0) (-512 -3096 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38527" - "plane" "(-512 -3264 2048) (-512 -3264 0) (-576 -3264 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38526" - "plane" "(-576 -3096 0) (-576 -3264 0) (-512 -3264 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38525" - "plane" "(-576 -3264 2048) (-576 -3096 2048) (-512 -3096 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "33024" - side - { - "id" "38524" - "plane" "(-576 -3096 2048) (-576 -3096 152) (-576 -2984 152)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38523" - "plane" "(-512 -2984 2048) (-512 -2984 152) (-512 -3096 152)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38522" - "plane" "(-576 -2984 2048) (-576 -2984 152) (-512 -2984 152)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38521" - "plane" "(-512 -3096 2048) (-512 -3096 152) (-576 -3096 152)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38520" - "plane" "(-576 -2984 152) (-576 -3096 152) (-512 -3096 152)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38519" - "plane" "(-576 -3096 2048) (-576 -2984 2048) (-512 -2984 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } solid { - "id" "29789" + "id" "2603" side { - "id" "23701" - "plane" "(-448 832 192) (-384 832 192) (-384 768 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8244" + "plane" "(1172 776 128) (1172 768 128) (1164 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23702" - "plane" "(-448 768 64) (-384 768 64) (-384 832 64)" + "id" "8243" + "plane" "(1172 768 124) (1172 776 124) (1164 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23703" - "plane" "(-448 832 192) (-448 768 192) (-448 768 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8242" + "plane" "(1172 768 128) (1172 776 128) (1172 776 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23704" - "plane" "(-384 832 64) (-384 768 64) (-384 768 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8241" + "plane" "(1164 776 128) (1164 768 128) (1164 768 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23705" - "plane" "(-384 832 192) (-448 832 192) (-448 832 64)" + "id" "8240" + "plane" "(1172 776 128) (1164 776 128) (1164 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23706" - "plane" "(-384 768 64) (-448 768 64) (-448 768 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8239" + "plane" "(1164 768 128) (1172 768 128) (1172 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29797" + "id" "2604" side { - "id" "23718" - "plane" "(-640 832 192) (-544 832 192) (-544 768 192)" + "id" "8250" + "plane" "(1172 768 124) (1160 768 124) (1160 780 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23717" - "plane" "(-640 768 64) (-544 768 64) (-544 832 64)" + "id" "8249" + "plane" "(1172 780 116) (1160 780 116) (1160 768 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23716" - "plane" "(-640 832 192) (-640 768 192) (-640 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8248" + "plane" "(1172 768 124) (1172 780 124) (1172 780 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23715" - "plane" "(-544 832 64) (-544 768 64) (-544 768 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8247" + "plane" "(1172 780 124) (1160 780 124) (1160 780 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23714" - "plane" "(-544 832 192) (-640 832 192) (-640 832 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8246" + "plane" "(1160 768 124) (1172 768 124) (1172 768 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23713" - "plane" "(-544 768 64) (-640 768 64) (-640 768 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8245" + "plane" "(1160 780 124) (1160 768 124) (1160 768 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29814" + "id" "2605" side { - "id" "23736" - "plane" "(-448 832 192) (-448 768 192) (-496 768 192)" + "id" "8256" + "plane" "(1264 776 124) (1264 768 124) (1236 768 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23735" - "plane" "(-448 768 176) (-448 832 176) (-496 832 184)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8255" + "plane" "(1264 768 116) (1264 776 116) (1236 776 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23734" - "plane" "(-448 768 176) (-448 768 192) (-448 832 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8254" + "plane" "(1264 768 124) (1264 776 124) (1264 776 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23733" - "plane" "(-448 832 176) (-448 832 192) (-496 832 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8253" + "plane" "(1236 776 124) (1236 768 124) (1236 768 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23732" - "plane" "(-496 768 184) (-496 768 192) (-448 768 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8252" + "plane" "(1264 776 124) (1236 776 124) (1236 776 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23731" - "plane" "(-496 832 184) (-496 832 192) (-496 768 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8251" + "plane" "(1236 768 124) (1264 768 124) (1264 768 116)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29815" + "id" "2606" side { - "id" "23742" - "plane" "(-544 832 192) (-496 832 192) (-496 768 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8262" + "plane" "(1264 776 128) (1264 768 128) (1256 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23741" - "plane" "(-544 768 176) (-496 768 184) (-496 832 184)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8261" + "plane" "(1264 768 124) (1264 776 124) (1256 776 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23740" - "plane" "(-544 832 176) (-544 832 192) (-544 768 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8260" + "plane" "(1264 768 128) (1264 776 128) (1264 776 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23739" - "plane" "(-496 832 184) (-496 832 192) (-544 832 192)" + "id" "8259" + "plane" "(1256 776 128) (1256 768 128) (1256 768 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23738" - "plane" "(-544 768 176) (-544 768 192) (-496 768 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8258" + "plane" "(1264 776 128) (1256 776 128) (1256 776 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23737" - "plane" "(-496 768 184) (-496 768 192) (-496 832 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8257" + "plane" "(1256 768 128) (1264 768 128) (1264 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29818" + "id" "2607" side { - "id" "23766" - "plane" "(-288 832 192) (-224 832 192) (-224 768 192)" + "id" "8268" + "plane" "(1256 776 136) (1256 768 136) (1244 768 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23765" - "plane" "(-288 768 64) (-224 768 64) (-224 832 64)" + "id" "8267" + "plane" "(1256 768 124) (1256 776 124) (1244 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23764" - "plane" "(-288 832 192) (-288 768 192) (-288 768 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8266" + "plane" "(1256 768 136) (1256 776 136) (1256 776 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23763" - "plane" "(-224 832 64) (-224 768 64) (-224 768 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8265" + "plane" "(1244 776 136) (1244 768 136) (1244 768 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23762" - "plane" "(-224 832 192) (-288 832 192) (-288 832 64)" + "id" "8264" + "plane" "(1256 776 136) (1244 776 136) (1244 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 16.6973] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23761" - "plane" "(-224 768 64) (-288 768 64) (-288 768 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8263" + "plane" "(1244 768 136) (1256 768 136) (1256 768 124)" + "material" "BRICK/WALL20" + "uaxis" "[-1 0 0 208.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29819" + "id" "2608" side { - "id" "23772" - "plane" "(-288 832 192) (-288 768 192) (-336 768 192)" + "id" "8275" + "plane" "(1244 776 136) (1244 768 136) (1238 768 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23771" - "plane" "(-288 768 176) (-288 832 176) (-336 832 184)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8274" + "plane" "(1238 768 128) (1244 768 128) (1244 776 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23770" - "plane" "(-288 768 176) (-288 768 192) (-288 832 192)" + "id" "8273" + "plane" "(1244 768 136) (1244 776 136) (1244 776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23769" - "plane" "(-288 832 176) (-288 832 192) (-336 832 192)" + "id" "8272" + "plane" "(1236 776 136) (1236 770 136) (1236 770 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8271" + "plane" "(1244 776 136) (1236 776 136) (1236 776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23768" - "plane" "(-336 768 184) (-336 768 192) (-288 768 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8270" + "plane" "(1238 768 136) (1244 768 136) (1244 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23767" - "plane" "(-336 832 184) (-336 832 192) (-336 768 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8269" + "plane" "(1236 770 136) (1238 768 136) (1238 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29820" + "id" "2609" side { - "id" "23778" - "plane" "(-384 832 192) (-336 832 192) (-336 768 192)" + "id" "8282" + "plane" "(1264 776 136) (1264 770 136) (1262 768 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23777" - "plane" "(-384 768 176) (-336 768 184) (-336 832 184)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8281" + "plane" "(1262 768 128) (1264 770 128) (1264 776 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23776" - "plane" "(-384 832 176) (-384 832 192) (-384 768 192)" + "id" "8280" + "plane" "(1264 770 136) (1264 776 136) (1264 776 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8279" + "plane" "(1256 776 136) (1256 768 136) (1256 768 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23775" - "plane" "(-336 832 184) (-336 832 192) (-384 832 192)" + "id" "8278" + "plane" "(1264 776 136) (1256 776 136) (1256 776 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23774" - "plane" "(-384 768 176) (-384 768 192) (-336 768 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8277" + "plane" "(1256 768 136) (1262 768 136) (1262 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23773" - "plane" "(-336 768 184) (-336 768 192) (-336 832 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8276" + "plane" "(1262 768 136) (1264 770 136) (1264 770 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29821" + "id" "2610" side { - "id" "23802" - "plane" "(-128 832 384) (-64 832 384) (-48 808 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8288" + "plane" "(1244 776 128) (1244 768 128) (1236 768 128)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23801" - "plane" "(-128 768 64) (-48 808 64) (-64 832 64)" + "id" "8287" + "plane" "(1244 768 124) (1244 776 124) (1236 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23800" - "plane" "(-128 832 64) (-128 832 384) (-128 768 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8286" + "plane" "(1244 768 128) (1244 776 128) (1244 776 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23799" - "plane" "(-48 808 64) (-48 808 384) (-64 832 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8285" + "plane" "(1236 776 128) (1236 768 128) (1236 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23798" - "plane" "(-64 832 64) (-64 832 384) (-128 832 384)" + "id" "8284" + "plane" "(1244 776 128) (1236 776 128) (1236 776 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 -10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23797" - "plane" "(-128 768 64) (-128 768 384) (-48 808 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8283" + "plane" "(1236 768 128) (1244 768 128) (1244 768 124)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 112.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29822" + "id" "2611" side { - "id" "23808" - "plane" "(-128 832 192) (-128 768 192) (-176 768 192)" + "id" "8296" + "plane" "(1206 780 228) (1202 780 228) (1202 770 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 144.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8295" + "plane" "(1207 780 236) (1207 770 236) (1201 770 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23807" - "plane" "(-128 768 176) (-128 832 176) (-176 832 184)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8294" + "plane" "(1207 780 236) (1207 780 229) (1207 770 229)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23806" - "plane" "(-128 768 176) (-128 768 192) (-128 832 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8293" + "plane" "(1201 770 236) (1201 770 229) (1201 780 229)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23805" - "plane" "(-128 832 176) (-128 832 192) (-176 832 192)" + "id" "8292" + "plane" "(1207 780 229) (1207 780 236) (1201 780 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 12.6973] 0.25" + "vaxis" "[0 0 1 2.69312] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23804" - "plane" "(-176 768 184) (-176 768 192) (-128 768 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8291" + "plane" "(1201 770 229) (1201 770 236) (1207 770 236)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 144.697] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23803" - "plane" "(-176 832 184) (-176 832 192) (-176 768 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8290" + "plane" "(1201 780 229) (1201 770 229) (1202 770 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8289" + "plane" "(1207 770 229) (1207 780 229) (1206 780 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29823" + "id" "2612" side { - "id" "23814" - "plane" "(-224 832 192) (-176 832 192) (-176 768 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8302" + "plane" "(1328 775 122) (1328 773 122) (1264 773 122)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 64.6973] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23813" - "plane" "(-224 768 176) (-176 768 184) (-176 832 184)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8301" + "plane" "(1328 773 120) (1328 775 120) (1264 775 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23812" - "plane" "(-224 832 176) (-224 832 192) (-224 768 192)" + "id" "8300" + "plane" "(1328 773 122) (1328 775 122) (1328 775 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23811" - "plane" "(-176 832 184) (-176 832 192) (-224 832 192)" + "id" "8299" + "plane" "(1264 775 122) (1264 773 122) (1264 773 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23810" - "plane" "(-224 768 176) (-224 768 192) (-176 768 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8298" + "plane" "(1328 775 122) (1264 775 122) (1264 775 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23809" - "plane" "(-176 768 184) (-176 768 192) (-176 832 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8297" + "plane" "(1264 773 122) (1328 773 122) (1328 773 120)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 64.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29827" + "id" "2613" side { - "id" "23826" - "plane" "(-640 832 224) (-128 832 224) (-128 768 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8310" + "plane" "(1298 770 126) (1294 770 126) (1294 780 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23825" - "plane" "(-640 768 192) (-128 768 192) (-128 832 192)" + "id" "8309" + "plane" "(1299 770 120) (1299 780 120) (1293 780 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23824" - "plane" "(-640 832 224) (-640 768 224) (-640 768 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8308" + "plane" "(1299 770 125) (1299 780 125) (1299 780 120)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23823" - "plane" "(-128 832 192) (-128 768 192) (-128 768 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8307" + "plane" "(1293 780 125) (1293 770 125) (1293 770 120)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23822" - "plane" "(-128 832 224) (-640 832 224) (-640 832 192)" + "id" "8306" + "plane" "(1299 780 125) (1298 780 126) (1294 780 126)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23821" - "plane" "(-128 768 192) (-640 768 192) (-640 768 224)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8305" + "plane" "(1293 770 125) (1294 770 126) (1298 770 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8304" + "plane" "(1294 780 126) (1294 770 126) (1293 770 125)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8303" + "plane" "(1298 770 126) (1298 780 126) (1299 780 125)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29829" + "id" "2614" side { - "id" "23838" - "plane" "(-384 832 96) (-288 832 96) (-288 768 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8317" + "plane" "(1328 775 125) (1328 774 125) (1264 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 64.6973] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23837" - "plane" "(-384 768 64) (-288 768 64) (-288 832 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8316" + "plane" "(1328 773 123) (1328 775 123) (1264 775 123)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 64.6973] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23836" - "plane" "(-384 832 96) (-384 768 96) (-384 768 64)" + "id" "8315" + "plane" "(1328 773 124) (1328 774 125) (1328 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -4.66016] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23835" - "plane" "(-288 832 64) (-288 768 64) (-288 768 96)" + "id" "8314" + "plane" "(1264 775 125) (1264 774 125) (1264 773 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -4.66016] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23834" - "plane" "(-288 832 96) (-384 832 96) (-384 832 64)" + "id" "8313" + "plane" "(1328 775 125) (1264 775 125) (1264 775 123)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 33.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23833" - "plane" "(-288 768 64) (-384 768 64) (-384 768 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8312" + "plane" "(1264 773 124) (1328 773 124) (1328 773 123)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 64.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8311" + "plane" "(1328 774 125) (1328 773 124) (1264 773 124)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[1 0 0 -96.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29832" + "id" "2615" side { - "id" "23850" - "plane" "(-224 832 96) (-128 832 96) (-128 768 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8323" + "plane" "(1300 775 192) (1300 774 192) (1298 774 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23849" - "plane" "(-224 768 64) (-128 768 64) (-128 832 64)" + "id" "8322" + "plane" "(1300 774 125) (1300 775 125) (1298 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23848" - "plane" "(-224 832 96) (-224 768 96) (-224 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8321" + "plane" "(1300 774 192) (1300 775 192) (1300 775 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23847" - "plane" "(-128 832 64) (-128 768 64) (-128 768 96)" + "id" "8320" + "plane" "(1298 775 192) (1298 774 192) (1298 774 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23846" - "plane" "(-128 832 96) (-224 832 96) (-224 832 64)" + "id" "8319" + "plane" "(1300 775 192) (1298 775 192) (1298 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -7.30273] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23845" - "plane" "(-128 768 64) (-224 768 64) (-224 768 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8318" + "plane" "(1298 774 192) (1300 774 192) (1300 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 32.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29835" + "id" "2616" side { - "id" "23904" - "plane" "(-288 832 352) (-224 832 352) (-224 768 352)" + "id" "8331" + "plane" "(1298 780 228) (1298 772 228) (1297 771 228)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23903" - "plane" "(-288 768 224) (-224 768 224) (-224 832 224)" + "id" "8330" + "plane" "(1294 772 126) (1295 771 126) (1297 771 126)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23902" - "plane" "(-288 832 352) (-288 768 352) (-288 768 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8329" + "plane" "(1298 780 228) (1294 780 228) (1294 780 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 0 -1 45.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23901" - "plane" "(-224 832 224) (-224 768 224) (-224 768 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8328" + "plane" "(1294 780 228) (1294 772 228) (1294 772 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23900" - "plane" "(-224 832 352) (-288 832 352) (-288 832 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8327" + "plane" "(1298 772 228) (1298 780 228) (1298 780 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23899" - "plane" "(-224 768 224) (-288 768 224) (-288 768 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8326" + "plane" "(1297 771 228) (1298 772 228) (1298 772 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8325" + "plane" "(1294 772 228) (1295 771 228) (1295 771 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8324" + "plane" "(1295 771 228) (1297 771 228) (1297 771 126)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[1 0 0 -96.6973] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29836" + "id" "2617" side { - "id" "23910" - "plane" "(-288 832 352) (-288 768 352) (-336 768 352)" + "id" "8337" + "plane" "(1294 775 192) (1294 774 192) (1292 774 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23909" - "plane" "(-288 768 336) (-288 832 336) (-336 832 344)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8336" + "plane" "(1294 774 125) (1294 775 125) (1292 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23908" - "plane" "(-288 768 336) (-288 768 352) (-288 832 352)" + "id" "8335" + "plane" "(1294 774 192) (1294 775 192) (1294 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23907" - "plane" "(-288 832 336) (-288 832 352) (-336 832 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8334" + "plane" "(1292 775 192) (1292 774 192) (1292 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23906" - "plane" "(-336 768 344) (-336 768 352) (-288 768 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8333" + "plane" "(1294 775 192) (1292 775 192) (1292 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.3027] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23905" - "plane" "(-336 832 344) (-336 832 352) (-336 768 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8332" + "plane" "(1292 774 192) (1294 774 192) (1294 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 32.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29837" + "id" "2618" side { - "id" "23916" - "plane" "(-224 832 352) (-176 832 352) (-176 768 352)" + "id" "8343" + "plane" "(1328 776 236) (1328 775 236) (1264 775 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23915" - "plane" "(-224 768 336) (-176 768 344) (-176 832 344)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8342" + "plane" "(1328 775 120) (1328 776 120) (1264 776 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 12.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23914" - "plane" "(-224 832 336) (-224 832 352) (-224 768 352)" + "id" "8341" + "plane" "(1328 775 236) (1328 776 236) (1328 776 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23913" - "plane" "(-176 832 344) (-176 832 352) (-224 832 352)" + "id" "8340" + "plane" "(1264 776 236) (1264 775 236) (1264 775 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23912" - "plane" "(-224 768 336) (-224 768 352) (-176 768 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8339" + "plane" "(1328 776 236) (1264 776 236) (1264 776 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23911" - "plane" "(-176 768 344) (-176 768 352) (-176 832 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8338" + "plane" "(1264 775 236) (1328 775 236) (1328 775 120)" + "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" + "uaxis" "[-1 0 0 384] 0.125" + "vaxis" "[0 0 -1 17.6552] 0.226563" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29838" + "id" "2619" side { - "id" "23922" - "plane" "(-128 832 352) (-128 768 352) (-176 768 352)" + "id" "8349" + "plane" "(1266 775 231) (1266 774 231) (1264 774 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23921" - "plane" "(-128 768 336) (-128 832 336) (-176 832 344)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8348" + "plane" "(1266 774 125) (1266 775 125) (1264 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23920" - "plane" "(-128 768 336) (-128 768 352) (-128 832 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8347" + "plane" "(1266 774 231) (1266 775 231) (1266 775 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23919" - "plane" "(-128 832 336) (-128 832 352) (-176 832 352)" + "id" "8346" + "plane" "(1264 775 231) (1264 774 231) (1264 774 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23918" - "plane" "(-176 768 344) (-176 768 352) (-128 768 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8345" + "plane" "(1266 775 231) (1264 775 231) (1264 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.3027] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23917" - "plane" "(-176 832 344) (-176 832 352) (-176 768 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8344" + "plane" "(1264 774 231) (1266 774 231) (1266 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 64.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29839" + "id" "2620" side { - "id" "23928" - "plane" "(-384 832 352) (-336 832 352) (-336 768 352)" + "id" "8355" + "plane" "(1328 775 231) (1328 774 231) (1326 774 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -23.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23927" - "plane" "(-384 768 336) (-336 768 344) (-336 832 344)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8354" + "plane" "(1328 774 125) (1328 775 125) (1326 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -23.3027] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23926" - "plane" "(-384 832 336) (-384 832 352) (-384 768 352)" + "id" "8353" + "plane" "(1328 774 231) (1328 775 231) (1328 775 125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23925" - "plane" "(-336 832 344) (-336 832 352) (-384 832 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8352" + "plane" "(1326 775 231) (1326 774 231) (1326 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23924" - "plane" "(-384 768 336) (-384 768 352) (-336 768 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8351" + "plane" "(1328 775 231) (1326 775 231) (1326 775 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -23.3027] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23923" - "plane" "(-336 768 344) (-336 768 352) (-336 832 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8350" + "plane" "(1326 774 231) (1328 774 231) (1328 774 125)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29840" + "id" "2621" side { - "id" "23934" - "plane" "(-448 832 352) (-384 832 352) (-384 768 352)" + "id" "8362" + "plane" "(1328 772 191) (1328 771 192) (1328 771 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23933" - "plane" "(-448 768 224) (-384 768 224) (-384 832 224)" + "id" "8361" + "plane" "(1328 780 194) (1297 780 194) (1297 780 191)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[-1 0 0 28.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23932" - "plane" "(-448 832 352) (-448 768 352) (-448 768 224)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8360" + "plane" "(1328 780 191) (1297 780 191) (1297 772 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 108.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23931" - "plane" "(-384 832 224) (-384 768 224) (-384 768 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8359" + "plane" "(1297 772 191) (1297 771 192) (1328 771 192)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 108.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23930" - "plane" "(-384 832 352) (-448 832 352) (-448 832 224)" + "id" "8358" + "plane" "(1297 771 192) (1297 771 194) (1328 771 194)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 245.307] 0.25" + "vaxis" "[-1 0 0 108.697] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8357" + "plane" "(1328 771 194) (1297 771 194) (1297 780 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23929" - "plane" "(-384 768 224) (-448 768 224) (-448 768 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8356" + "plane" "(1297 772 191) (1297 780 191) (1297 780 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29841" + "id" "2622" side { - "id" "23940" - "plane" "(-224 832 256) (-128 832 256) (-128 768 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8368" + "plane" "(1328 775 191) (1328 773 191) (1264 773 191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23939" - "plane" "(-224 768 224) (-128 768 224) (-128 832 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8367" + "plane" "(1328 773 189) (1328 775 189) (1264 775 189)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 64.6973] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23938" - "plane" "(-224 832 256) (-224 768 256) (-224 768 224)" + "id" "8366" + "plane" "(1328 773 191) (1328 775 191) (1328 775 189)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23937" - "plane" "(-128 832 224) (-128 768 224) (-128 768 256)" + "id" "8365" + "plane" "(1264 775 191) (1264 773 191) (1264 773 189)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23936" - "plane" "(-128 832 256) (-224 832 256) (-224 832 224)" + "id" "8364" + "plane" "(1328 775 191) (1264 775 191) (1264 775 189)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 41.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23935" - "plane" "(-128 768 224) (-224 768 224) (-224 768 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8363" + "plane" "(1264 773 191) (1328 773 191) (1328 773 189)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 64.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29842" + "id" "2623" side { - "id" "23946" - "plane" "(-384 832 256) (-288 832 256) (-288 768 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8375" + "plane" "(1264 772 191) (1264 780 191) (1264 780 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23945" - "plane" "(-384 768 224) (-288 768 224) (-288 832 224)" + "id" "8374" + "plane" "(1295 780 191) (1295 780 194) (1264 780 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -29.3069] 0.25" + "vaxis" "[-1 0 0 28.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23944" - "plane" "(-384 832 256) (-384 768 256) (-384 768 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8373" + "plane" "(1264 772 191) (1295 772 191) (1295 780 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 108.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23943" - "plane" "(-288 832 224) (-288 768 224) (-288 768 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8372" + "plane" "(1264 771 192) (1295 771 192) (1295 772 191)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 108.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23942" - "plane" "(-288 832 256) (-384 832 256) (-384 832 224)" + "id" "8371" + "plane" "(1264 771 194) (1295 771 194) (1295 771 192)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 245.307] 0.25" + "vaxis" "[-1 0 0 108.697] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8370" + "plane" "(1264 780 194) (1295 780 194) (1295 771 194)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23941" - "plane" "(-288 768 224) (-384 768 224) (-384 768 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8369" + "plane" "(1295 772 191) (1295 771 192) (1295 771 194)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29843" + "id" "2624" side { - "id" "23976" - "plane" "(-544 832 256) (-448 832 256) (-448 768 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8383" + "plane" "(1298 780 228) (1294 780 228) (1294 770 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23975" - "plane" "(-544 768 224) (-448 768 224) (-448 832 224)" + "id" "8382" + "plane" "(1299 780 236) (1299 770 236) (1293 770 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23974" - "plane" "(-544 832 256) (-544 768 256) (-544 768 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8381" + "plane" "(1299 780 236) (1299 780 229) (1299 770 229)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23973" - "plane" "(-448 832 224) (-448 768 224) (-448 768 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8380" + "plane" "(1293 770 236) (1293 770 229) (1293 780 229)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23972" - "plane" "(-448 832 256) (-544 832 256) (-544 832 224)" + "id" "8379" + "plane" "(1299 780 229) (1299 780 236) (1293 780 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -3.30273] 0.25" + "vaxis" "[0 0 1 2.69312] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23971" - "plane" "(-448 768 224) (-544 768 224) (-544 768 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8378" + "plane" "(1293 770 229) (1293 770 236) (1299 770 236)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8377" + "plane" "(1293 780 229) (1293 770 229) (1294 770 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8376" + "plane" "(1299 770 229) (1299 780 229) (1298 780 228)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 1 -141.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29844" + "id" "2625" side { - "id" "23982" - "plane" "(-640 832 352) (-544 832 352) (-544 768 352)" + "id" "8389" + "plane" "(1328 775 233) (1328 773 233) (1264 773 233)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23981" - "plane" "(-640 768 224) (-544 768 224) (-544 832 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8388" + "plane" "(1328 773 231) (1328 775 231) (1264 775 231)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 64.6973] 0.25" + "vaxis" "[0 -1 0 -3.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23980" - "plane" "(-640 832 352) (-640 768 352) (-640 768 224)" + "id" "8387" + "plane" "(1328 773 233) (1328 775 233) (1328 775 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23979" - "plane" "(-544 832 224) (-544 768 224) (-544 768 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8386" + "plane" "(1264 775 233) (1264 773 233) (1264 773 231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23978" - "plane" "(-544 832 352) (-640 832 352) (-640 832 224)" + "id" "8385" + "plane" "(1328 775 233) (1264 775 233) (1264 775 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 17.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23977" - "plane" "(-544 768 224) (-640 768 224) (-640 768 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8384" + "plane" "(1264 773 233) (1328 773 233) (1328 773 231)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 64.6973] 0.25" + "vaxis" "[0 0 -1 457.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29845" + "id" "2626" side { - "id" "23988" - "plane" "(-544 832 352) (-496 832 352) (-496 768 352)" + "id" "8396" + "plane" "(1328 772 233) (1328 771 234) (1328 771 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23987" - "plane" "(-544 768 336) (-496 768 344) (-496 832 344)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8395" + "plane" "(1264 772 233) (1264 780 233) (1264 780 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[0 -1 0 -7.33984] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23986" - "plane" "(-544 832 336) (-544 832 352) (-544 768 352)" + "id" "8394" + "plane" "(1328 780 233) (1328 780 236) (1264 780 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 1 -5.30688] 0.25" + "vaxis" "[-1 0 0 28.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23985" - "plane" "(-496 832 344) (-496 832 352) (-544 832 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8393" + "plane" "(1328 772 233) (1328 780 233) (1264 780 233)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 108.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23984" - "plane" "(-544 768 336) (-544 768 352) (-496 768 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8392" + "plane" "(1264 772 233) (1264 771 234) (1328 771 234)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 1 0 15.3398] 0.25" + "vaxis" "[-1 0 0 108.697] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23983" - "plane" "(-496 768 344) (-496 768 352) (-496 832 352)" + "id" "8391" + "plane" "(1264 771 234) (1264 771 236) (1328 771 236)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[0 0 -1 413.307] 0.25" + "vaxis" "[-1 0 0 108.697] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8390" + "plane" "(1328 780 236) (1328 771 236) (1264 771 236)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 -1 0 32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29846" + "id" "2627" side { - "id" "23994" - "plane" "(-448 832 352) (-448 768 352) (-496 768 352)" + "id" "8402" + "plane" "(1328 775 123) (1328 774 123) (1264 774 123)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23993" - "plane" "(-448 768 336) (-448 832 336) (-496 832 344)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8401" + "plane" "(1328 774 122) (1328 775 122) (1264 775 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 -1 0 8.66016] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23992" - "plane" "(-448 768 336) (-448 768 352) (-448 832 352)" + "id" "8400" + "plane" "(1328 774 123) (1328 775 123) (1328 775 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23991" - "plane" "(-448 832 336) (-448 832 352) (-496 832 352)" + "id" "8399" + "plane" "(1264 775 123) (1264 774 123) (1264 774 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -8.66016] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23990" - "plane" "(-496 768 344) (-496 768 352) (-448 768 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8398" + "plane" "(1328 775 123) (1264 775 123) (1264 775 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.697266] 0.25" + "vaxis" "[0 0 -1 29.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23989" - "plane" "(-496 832 344) (-496 832 352) (-496 768 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8397" + "plane" "(1264 774 123) (1328 774 123) (1328 774 122)" + "material" "CONCRETE/CONCRETE_EXT_12" + "uaxis" "[-1 0 0 64.6973] 0.25" + "vaxis" "[0 0 -1 289.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29848" + "id" "2629" side { - "id" "24006" - "plane" "(-392 768 256) (-280 768 256) (-280 760 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8409" + "plane" "(1340 948 120) (1340 884 120) (1332 884 120)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -380.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24005" - "plane" "(-392 760 248) (-280 760 248) (-280 768 248)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8408" + "plane" "(1342 884 116) (1342 948 116) (1332 948 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -380.66] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24004" - "plane" "(-392 768 256) (-392 760 256) (-392 760 248)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8407" + "plane" "(1332 948 120) (1332 884 120) (1332 884 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -28.6602] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24003" - "plane" "(-280 768 248) (-280 760 248) (-280 760 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "8406" + "plane" "(1342 884 118) (1342 948 118) (1342 948 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -380.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } side { - "id" "24002" - "plane" "(-280 768 256) (-392 768 256) (-392 768 248)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8405" + "plane" "(1340 884 120) (1340 948 120) (1342 948 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -380.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24001" - "plane" "(-280 760 248) (-392 760 248) (-392 760 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8404" + "plane" "(1332 884 120) (1340 884 120) (1342 884 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[-1 0 0 400.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8403" + "plane" "(1342 948 118) (1340 948 120) (1332 948 120)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[-1 0 0 400.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 207" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2628" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29858" + "id" "2631" side { - "id" "24018" - "plane" "(-552 768 256) (-440 768 256) (-440 760 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8416" + "plane" "(1340 856 120) (1340 792 120) (1332 792 120)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24017" - "plane" "(-552 760 248) (-440 760 248) (-440 768 248)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8415" + "plane" "(1342 792 116) (1342 856 116) (1332 856 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[1 0 0 -32.6973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24016" - "plane" "(-552 768 256) (-552 760 256) (-552 760 248)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8414" + "plane" "(1332 856 120) (1332 792 120) (1332 792 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 19.3398] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24015" - "plane" "(-440 768 248) (-440 760 248) (-440 760 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8413" + "plane" "(1342 792 118) (1342 856 118) (1342 856 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24014" - "plane" "(-440 768 256) (-552 768 256) (-552 768 248)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8412" + "plane" "(1340 792 120) (1340 856 120) (1342 856 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -12.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24013" - "plane" "(-440 760 248) (-552 760 248) (-552 760 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8411" + "plane" "(1332 792 120) (1340 792 120) (1342 792 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[-1 0 0 400.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8410" + "plane" "(1342 856 118) (1340 856 120) (1332 856 120)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[-1 0 0 400.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 207" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2630" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29859" + "id" "2633" side { - "id" "24030" - "plane" "(-232 768 256) (-120 768 256) (-120 760 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8422" + "plane" "(1233.93 768 252) (1243.93 768 261.601) (1228.93 768 271.199)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0 0.707107 -19.8726] 0.25" + "vaxis" "[0.707107 0 -0.707107 -2.10255] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24029" - "plane" "(-232 760 248) (-120 760 248) (-120 768 248)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8421" + "plane" "(1221.43 767 259.198) (1228.93 767 271.197) (1243.93 767 261.598)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.707107 0 0.707107 -358.171] 0.25" + "vaxis" "[0.707107 0 -0.707107 -248.98] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24028" - "plane" "(-232 768 256) (-232 760 256) (-232 760 248)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8420" + "plane" "(1233.93 767 252) (1243.93 767 261.598) (1243.93 768 261.601)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.721389 0 0.692529 -187.279] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24027" - "plane" "(-120 768 248) (-120 760 248) (-120 760 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8419" + "plane" "(1221.43 768 259.2) (1228.93 768 271.199) (1228.93 767 271.197)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.721389 0 0.692529 23.501] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24026" - "plane" "(-120 768 256) (-232 768 256) (-232 768 248)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8418" + "plane" "(1228.93 768 271.199) (1243.93 768 261.601) (1243.93 767 261.598)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.721389 0 0.692529 41.906] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24025" - "plane" "(-120 760 248) (-232 760 248) (-232 760 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8417" + "plane" "(1221.43 767 259.198) (1233.93 767 252) (1233.93 768 252)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.721389 0 0.692529 41.906] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 207" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2632" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29860" + "id" "2634" side { - "id" "24048" - "plane" "(-392 768 96) (-280 768 96) (-280 760 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8428" + "plane" "(1221.43 768 259.2) (1228.93 768 271.2) (1213.93 768 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0 0.707107 -19.8726] 0.25" + "vaxis" "[0.707107 0 -0.707107 -2.10255] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24047" - "plane" "(-392 760 88) (-280 760 88) (-280 768 88)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8427" + "plane" "(1211.43 767 264) (1213.93 767 276) (1228.94 767 271.199)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.856467 0.312128 0.411144 -189.214] 0.25" + "vaxis" "[-0.432765 0 -0.901507 141.343] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24046" - "plane" "(-392 768 96) (-392 760 96) (-392 760 88)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8426" + "plane" "(1221.44 767 259.199) (1228.94 767 271.199) (1228.93 768 271.2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.721389 0 0.692529 23.501] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24045" - "plane" "(-280 768 88) (-280 760 88) (-280 760 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8425" + "plane" "(1211.43 768 264) (1213.93 768 276) (1213.93 767 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.721389 0 0.692529 23.501] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24044" - "plane" "(-280 768 96) (-392 768 96) (-392 768 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8424" + "plane" "(1213.93 768 276) (1228.93 768 271.2) (1228.94 767 271.199)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.989487 0.144544 -0.00460701 102.657] 0.25" + "vaxis" "[-0.144542 -0.989498 0 264.142] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24043" - "plane" "(-280 760 88) (-392 760 88) (-392 760 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8423" + "plane" "(1211.43 767 264) (1221.44 767 259.199) (1221.43 768 259.2)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[-0.721389 0 0.692529 59.906] 0.25" + "vaxis" "[0 1 0 -425.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 207" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2632" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29861" + "id" "2635" side { - "id" "24054" - "plane" "(-232 768 96) (-120 768 96) (-120 760 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8434" + "plane" "(1211.43 768 264) (1213.93 768 276) (1193.93 768 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0 0.707107 -19.8726] 0.25" + "vaxis" "[0.707107 0 -0.707107 -2.10255] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24053" - "plane" "(-232 760 88) (-120 760 88) (-120 768 88)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8433" + "plane" "(1196.43 767 264) (1193.93 767 276) (1213.93 767 276)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.721389 0.692529 0 -61.7284] 0.25" + "vaxis" "[0 0 -1 245.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24052" - "plane" "(-232 768 96) (-232 760 96) (-232 760 88)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8432" + "plane" "(1211.43 767 264) (1213.93 767 276) (1213.93 768 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.721389 0 0.692529 23.501] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24051" - "plane" "(-120 768 88) (-120 760 88) (-120 760 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8431" + "plane" "(1196.43 768 264) (1193.93 768 276) (1193.93 767 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.721389 0 0.692529 36.4148] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24050" - "plane" "(-120 768 96) (-232 768 96) (-232 768 88)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8430" + "plane" "(1193.93 768 276) (1213.93 768 276) (1213.93 767 276)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.721403 0 -0.692515 126.003] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24049" - "plane" "(-120 760 88) (-232 760 88) (-232 760 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8429" + "plane" "(1196.43 767 264) (1211.43 767 264) (1211.43 768 264)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[-0.721389 0 0.692529 59.906] 0.25" + "vaxis" "[0 1 0 -425.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 226 207" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2632" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29863" + "id" "2636" side { - "id" "24066" - "plane" "(-640 832 384) (-128 832 384) (-128 768 384)" + "id" "8440" + "plane" "(1196.43 768 264) (1193.93 768 276) (1178.93 768 271.199)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 0 0.707107 -19.8726] 0.25" + "vaxis" "[0.707107 0 -0.707107 -2.10255] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24065" - "plane" "(-640 768 352) (-128 768 352) (-128 832 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8439" + "plane" "(1186.43 767 259.198) (1178.93 767 271.199) (1193.93 767 276)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[0.856481 0.312231 0.411037 -87.7523] 0.25" + "vaxis" "[0.432667 0 -0.901553 -212.218] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24064" - "plane" "(-640 832 384) (-640 768 384) (-640 768 352)" + "id" "8438" + "plane" "(1196.43 767 264) (1193.93 767 276) (1193.93 768 276)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.721389 0 0.692529 36.4148] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24063" - "plane" "(-128 832 352) (-128 768 352) (-128 768 384)" + "id" "8437" + "plane" "(1186.43 768 259.199) (1178.93 768 271.199) (1178.93 767 271.199)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.721389 0 0.692529 36.4148] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24062" - "plane" "(-128 832 384) (-640 832 384) (-640 832 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8436" + "plane" "(1178.93 768 271.199) (1193.93 768 276) (1193.93 767 276)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[0.989507 0.144402 -0.00468656 -182.9] 0.25" + "vaxis" "[0.1444 -0.989519 0 151.899] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24061" - "plane" "(-128 768 352) (-640 768 352) (-640 768 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8435" + "plane" "(1186.43 767 259.198) (1196.43 767 264) (1196.43 768 264)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[0.721389 0 0.692529 -169.279] 0.25" + "vaxis" "[0 1 0 -425.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2632" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29864" + "id" "2637" side { - "id" "24078" - "plane" "(-640 736 400) (-640 832 400) (-128 832 400)" + "id" "8446" + "plane" "(1186.43 768 259.203) (1178.93 768 271.198) (1163.93 768 261.594)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 0 0.707107 -19.8726] 0.25" + "vaxis" "[0.707107 0 -0.707107 -2.10255] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24077" - "plane" "(-640 832 384) (-640 752 384) (-128 752 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8445" + "plane" "(1173.93 767 252) (1163.93 767 261.6) (1178.93 767 271.195)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.707107 0 0.707107 -358.171] 0.25" + "vaxis" "[0.707107 0 -0.707107 -248.98] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24076" - "plane" "(-640 832 384) (-640 832 400) (-640 736 400)" + "id" "8444" + "plane" "(1186.43 767 259.2) (1178.93 767 271.195) (1178.93 768 271.198)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.721389 0 0.692529 36.4148] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24075" - "plane" "(-128 832 400) (-128 832 384) (-128 752 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8443" + "plane" "(1163.93 767 261.6) (1173.93 767 252) (1173.93 768 252)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.721389 0 0.692529 41.906] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24074" - "plane" "(-128 832 384) (-128 832 400) (-640 832 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8442" + "plane" "(1163.93 768 261.594) (1178.93 768 271.198) (1178.93 767 271.195)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.721389 0 0.692529 -187.279] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24073" - "plane" "(-128 736 400) (-128 752 384) (-640 752 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8441" + "plane" "(1173.93 767 252) (1186.43 767 259.2) (1186.43 768 259.203)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.721389 0 0.692529 -187.279] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 250 115" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2632" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29874" + "id" "2639" side { - "id" "24089" - "plane" "(-640 880 400) (-640 752 400) (-128 752 400)" + "id" "8452" + "plane" "(1325.93 768 252) (1335.93 768 261.602) (1320.92 768 271.199)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 0 0.707107 -24.0884] 0.25" + "vaxis" "[0.707107 0 -0.707107 -6.31934] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24088" - "plane" "(-640 880 400) (-640 880 528) (-640 752 400)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8451" + "plane" "(1313.43 767 259.2) (1320.93 767 271.199) (1335.93 767 261.598)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.707107 0 0.707107 -106.387] 0.25" + "vaxis" "[0.707107 0 -0.707107 2.80468] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24087" - "plane" "(-128 880 400) (-128 752 400) (-128 880 528)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8450" + "plane" "(1325.93 767 252) (1335.93 767 261.598) (1335.93 768 261.602)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.721389 0 0.692529 -452.75] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24086" - "plane" "(-128 880 400) (-128 880 528) (-640 880 528)" + "id" "8449" + "plane" "(1313.42 768 259.202) (1320.92 768 271.199) (1320.93 767 271.199)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.721389 0 0.692529 14.0293] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24085" - "plane" "(-128 880 528) (-128 752 400) (-640 752 400)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8448" + "plane" "(1320.92 768 271.199) (1335.93 768 261.602) (1335.93 767 261.598)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.721389 0 0.692529 307.378] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8447" + "plane" "(1313.43 767 259.2) (1325.93 767 252) (1325.93 768 252)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.721389 0 0.692529 307.378] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2638" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29880" + "id" "2640" side { - "id" "24102" - "plane" "(112 920 96) (128 896 96) (-48 808 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8458" + "plane" "(1313.43 768 259.203) (1320.93 768 271.201) (1305.93 768 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0 0.707107 -24.0884] 0.25" + "vaxis" "[0.707107 0 -0.707107 -6.31934] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24101" - "plane" "(128 896 64) (112 920 64) (-64 832 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8457" + "plane" "(1303.43 767 264) (1305.93 767 276) (1320.94 767 271.199)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.856467 0.312128 0.411144 -386.032] 0.25" + "vaxis" "[-0.432765 0 -0.901507 300.601] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24100" - "plane" "(-64 832 96) (-48 808 96) (-48 808 64)" + "id" "8456" + "plane" "(1313.44 767 259.2) (1320.94 767 271.199) (1320.93 768 271.201)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.721389 0 0.692529 14.0293] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24099" - "plane" "(128 896 96) (112 920 96) (112 920 64)" + "id" "8455" + "plane" "(1303.43 768 264) (1305.93 768 276) (1305.93 767 276)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.721389 0 0.692529 14.0293] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24098" - "plane" "(112 920 96) (-64 832 96) (-64 832 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8454" + "plane" "(1305.93 768 276) (1320.93 768 271.201) (1320.94 767 271.199)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.989487 0.144544 -0.00460701 466.788] 0.25" + "vaxis" "[-0.144542 -0.989498 0 317.333] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24097" - "plane" "(-48 808 96) (128 896 96) (128 896 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8453" + "plane" "(1303.43 767 264) (1313.44 767 259.2) (1313.43 768 259.203)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[-0.721389 0 0.692529 325.378] 0.25" + "vaxis" "[0 1 0 -425.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2638" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29890" + "id" "2641" side { - "id" "24132" - "plane" "(-48 808 240) (-64 832 240) (-0 864 240)" + "id" "8464" + "plane" "(1303.43 768 264) (1305.93 768 276) (1285.93 768 276)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 0 0.707107 -24.0884] 0.25" + "vaxis" "[0.707107 0 -0.707107 -6.31934] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24131" - "plane" "(-64 832 192) (-48 808 192) (16 840 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8463" + "plane" "(1288.43 767 264) (1285.93 767 276) (1305.93 767 276)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.721389 0.692529 0 -308.258] 0.25" + "vaxis" "[0 0 -1 245.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24130" - "plane" "(0 864 192) (-0 864 240) (-64 832 240)" + "id" "8462" + "plane" "(1303.43 767 264) (1305.93 767 276) (1305.93 768 276)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.721389 0 0.692529 14.0293] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24129" - "plane" "(-48 808 192) (-48 808 240) (16 840 240)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8461" + "plane" "(1288.43 768 264) (1285.93 768 276) (1285.93 767 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.721389 0 0.692529 45.8855] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24128" - "plane" "(-64 832 192) (-64 832 240) (-48 808 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8460" + "plane" "(1285.93 768 276) (1305.93 768 276) (1305.93 767 276)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.721403 0 -0.692515 391.479] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24127" - "plane" "(16 840 192) (16 840 240) (-0 864 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8459" + "plane" "(1288.43 767 264) (1303.43 767 264) (1303.43 768 264)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[-0.721389 0 0.692529 325.378] 0.25" + "vaxis" "[0 1 0 -425.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2638" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29891" + "id" "2642" side { - "id" "24138" - "plane" "(16 840 240) (0 864 240) (32 880 240)" + "id" "8470" + "plane" "(1288.43 768 264) (1285.93 768 276) (1270.93 768 271.199)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0.707107 0 0.707107 -24.0884] 0.25" + "vaxis" "[0.707107 0 -0.707107 -6.31934] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24137" - "plane" "(0 864 96) (16 840 96) (48 856 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "8469" + "plane" "(1278.43 767 259.198) (1270.93 767 271.2) (1285.93 767 276)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[0.856481 0.312231 0.411037 -402.938] 0.25" + "vaxis" "[0.432667 0 -0.901553 -371.44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24136" - "plane" "(32 880 240) (32 880 96) (48 856 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8468" + "plane" "(1288.43 767 264) (1285.93 767 276) (1285.93 768 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.721389 0 0.692529 45.8855] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24135" - "plane" "(0 864 240) (0 864 96) (32 880 96)" + "id" "8467" + "plane" "(1278.43 768 259.199) (1270.93 768 271.199) (1270.93 767 271.2)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.721389 0 0.692529 45.8855] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24134" - "plane" "(48 856 240) (48 856 96) (16 840 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8466" + "plane" "(1270.93 768 271.199) (1285.93 768 276) (1285.93 767 276)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[0.989507 0.144402 -0.00468656 -35.0383] 0.25" + "vaxis" "[0.1444 -0.989519 0 98.7607] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24133" - "plane" "(16 840 240) (16 840 96) (0 864 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8465" + "plane" "(1278.43 767 259.198) (1288.43 767 264) (1288.43 768 264)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[0.721389 0 0.692529 -434.75] 0.25" + "vaxis" "[0 1 0 -425.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2638" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29921" + "id" "2643" side { - "id" "24192" - "plane" "(32 880 192) (64 896 192) (80 872 192)" + "id" "8476" + "plane" "(1278.43 768 259.196) (1270.93 768 271.195) (1255.93 768 261.598)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 0 0.707107 -24.0884] 0.25" + "vaxis" "[0.707107 0 -0.707107 -6.31934] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24191" - "plane" "(48 856 176) (80 872 184) (64 896 184)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8475" + "plane" "(1265.93 767 252) (1255.93 767 261.599) (1270.93 767 271.199)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.707107 0 0.707107 -106.387] 0.25" + "vaxis" "[0.707107 0 -0.707107 2.80468] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24190" - "plane" "(64 896 192) (32 880 192) (32 880 176)" + "id" "8474" + "plane" "(1278.43 767 259.198) (1270.93 767 271.199) (1270.93 768 271.195)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.721389 0 0.692529 45.8855] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24189" - "plane" "(48 856 192) (80 872 192) (80 872 184)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8473" + "plane" "(1255.93 767 261.599) (1265.93 767 252) (1265.93 768 252)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.721389 0 0.692529 307.378] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24188" - "plane" "(32 880 192) (48 856 192) (48 856 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8472" + "plane" "(1255.93 768 261.598) (1270.93 768 271.195) (1270.93 767 271.199)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.721389 0 0.692529 -452.75] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24187" - "plane" "(80 872 192) (64 896 192) (64 896 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8471" + "plane" "(1265.93 767 252) (1278.43 767 259.198) (1278.43 768 259.196)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.721389 0 0.692529 -452.75] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2638" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29922" + "id" "2645" side { - "id" "24198" - "plane" "(112 888 240) (48 856 240) (32 880 240)" + "id" "8482" + "plane" "(872 772 120) (872 768 120) (870.667 768 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24197" - "plane" "(96 912 192) (32 880 192) (48 856 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8481" + "plane" "(872 772 116) (870 766 116) (872 766 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24196" - "plane" "(96 912 240) (32 880 240) (32 880 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8480" + "plane" "(870 766 118) (872 766 118) (872 766 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24195" - "plane" "(48 856 240) (112 888 240) (112 888 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8479" + "plane" "(870.667 768 120) (872 768 120) (872 766 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24194" - "plane" "(32 880 240) (48 856 240) (48 856 192)" + "id" "8478" + "plane" "(872 766 118) (872 768 120) (872 772 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24193" - "plane" "(112 888 240) (96 912 240) (96 912 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8477" + "plane" "(872 772 120) (870.667 768 120) (870 766 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2644" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29923" + "id" "2646" side { - "id" "24204" - "plane" "(64 896 192) (96 912 192) (112 888 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8489" + "plane" "(872 776 120) (952 776 120) (952 768 120)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24203" - "plane" "(80 872 184) (112 888 176) (96 912 176)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8488" + "plane" "(872 766 116) (952 766 116) (952 776 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24202" - "plane" "(96 912 192) (64 896 192) (64 896 184)" + "id" "8487" + "plane" "(952 776 120) (872 776 120) (872 776 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24201" - "plane" "(80 872 192) (112 888 192) (112 888 176)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8486" + "plane" "(872 766 118) (952 766 118) (952 766 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24200" - "plane" "(112 888 192) (96 912 192) (96 912 176)" + "id" "8485" + "plane" "(872 768 120) (952 768 120) (952 766 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8484" + "plane" "(872 776 120) (872 768 120) (872 766 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24199" - "plane" "(64 896 192) (80 872 192) (80 872 184)" + "id" "8483" + "plane" "(952 766 118) (952 768 120) (952 776 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2644" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "29924" + "id" "2647" side { - "id" "24210" - "plane" "(128 896 240) (112 888 240) (96 912 240)" + "id" "8495" + "plane" "(952 771.97 120) (953.332 768 120) (952 768 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24209" - "plane" "(112 920 96) (96 912 96) (112 888 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8494" + "plane" "(954 766 116) (952 771.973 116) (952 766 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24208" - "plane" "(128 896 240) (112 920 240) (112 920 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8493" + "plane" "(952 766 118) (954 766 118) (954 766 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24207" - "plane" "(112 920 240) (96 912 240) (96 912 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8492" + "plane" "(952 768 120) (953.332 768 120) (954 766 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24206" - "plane" "(112 888 240) (128 896 240) (128 896 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8491" + "plane" "(952 771.97 120) (952 768 120) (952 766 118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24205" - "plane" "(96 912 240) (112 888 240) (112 888 96)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8490" + "plane" "(954 766 118) (953.332 768 120) (952 771.97 120)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 186 151" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2644" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27890" + "id" "2649" side { - "id" "21483" - "plane" "(1471.99 -2176 448) (1471.99 -2112 448) (1807.99 -2112 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8502" + "plane" "(764 776 120) (844 776 120) (844 768 120)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21484" - "plane" "(1471.99 -2112 64) (1471.99 -2176 64) (1807.99 -2176 64)" + "id" "8501" + "plane" "(764 766 116) (844 766 116) (844 776 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8500" + "plane" "(844 776 120) (764 776 120) (764 776 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21485" - "plane" "(1471.99 -2176 64) (1471.99 -2112 64) (1471.99 -2112 448)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8499" + "plane" "(764 766 118) (844 766 118) (844 766 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21486" - "plane" "(1807.99 -2112 64) (1807.99 -2176 64) (1807.99 -2176 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8498" + "plane" "(764 768 120) (844 768 120) (844 766 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21487" - "plane" "(1471.98 -2112 64) (1807.99 -2112 64) (1807.99 -2112 448)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8497" + "plane" "(764 776 120) (764 768 120) (764 766 118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21488" - "plane" "(1807.99 -2176 64) (1471.99 -2176 64) (1471.98 -2176 448)" + "id" "8496" + "plane" "(844 766 118) (844 768 120) (844 776 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 175" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2648" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27904" + "id" "2650" side { - "id" "21506" - "plane" "(1920 -2176 448) (1920 -2112 448) (1952 -2080 448)" + "id" "8508" + "plane" "(764 772 120) (764 768 120) (762.667 768 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21505" - "plane" "(1920 -2112 64) (1920 -2176 64) (2048 -2176 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8507" + "plane" "(764 772 116) (762 766 116) (764 766 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21504" - "plane" "(1919.99 -2176 64) (1919.99 -2112 64) (1919.99 -2112 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8506" + "plane" "(762 766 118) (764 766 118) (764 766 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21503" - "plane" "(1952 -2080 64) (2048 -2176 64) (2048 -2176 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8505" + "plane" "(762.667 768 120) (764 768 120) (764 766 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21502" - "plane" "(1919.99 -2112 64) (1952 -2080 64) (1952 -2080 448)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8504" + "plane" "(764 766 118) (764 768 120) (764 772 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21501" - "plane" "(2048 -2176 64) (1919.99 -2176 64) (1920 -2176 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8503" + "plane" "(764 772 120) (762.667 768 120) (762 766 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 175" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2648" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27906" + "id" "2651" side { - "id" "21518" - "plane" "(2239.99 -1984 448) (2144 -1888 448) (2176 -1856 448)" + "id" "8514" + "plane" "(844 771.97 120) (845.332 768 120) (844 768 120)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.046875] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 -1 0 -15.3398] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21517" - "plane" "(2239.99 -1856 64) (2176 -1856 64) (2144 -1888 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.046875] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "8513" + "plane" "(846 766 116) (844 771.98 116) (844 766 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21516" - "plane" "(2176 -1856 64) (2239.99 -1856 64) (2239.99 -1856 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8512" + "plane" "(844 766 118) (846 766 118) (846 766 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21515" - "plane" "(2239.99 -1984 64) (2144 -1888 64) (2144 -1888 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8511" + "plane" "(844 768 120) (845.332 768 120) (846 766 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -176.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21514" - "plane" "(2239.99 -1856 64) (2239.99 -1984 64) (2239.99 -1984 448)" + "id" "8510" + "plane" "(844 771.97 120) (844 768 120) (844 766 118)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -32.6602] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21513" - "plane" "(2144 -1888 64) (2176 -1856 64) (2176 -1856 448)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 -0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8509" + "plane" "(846 766 118) (845.332 768 120) (844 771.97 120)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -16.6602] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 175" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2648" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27927" + "id" "2653" side { - "id" "21566" - "plane" "(2048 -2176 256) (1952 -2080 256) (2144 -1888 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8520" + "plane" "(833.93 768 256) (843.927 768 265.599) (828.93 768 275.195)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0 0.707107 -29.398] 0.25" + "vaxis" "[0.707107 0 -0.707107 11] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21565" - "plane" "(2240 -1984 192) (2144 -1888 192) (1952 -2080 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8519" + "plane" "(821.433 767 263.199) (828.932 767 275.197) (843.934 767 265.598)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.707107 0 0.707107 -239.697] 0.25" + "vaxis" "[0.707107 0 -0.707107 -107.878] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21564" - "plane" "(2048 -2176 192) (1952 -2080 192) (1952 -2080 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8518" + "plane" "(833.936 767 256) (843.934 767 265.598) (843.927 768 265.599)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.721389 0 0.692529 -45.2656] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21563" - "plane" "(2144 -1888 192) (2240 -1984 192) (2240 -1984 256)" + "id" "8517" + "plane" "(821.431 768 263.199) (828.93 768 275.195) (828.932 767 275.197)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.721389 0 0.692529 -26.4863] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21562" - "plane" "(1952 -2080 192) (2144 -1888 192) (2144 -1888 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8516" + "plane" "(828.93 768 275.195) (843.927 768 265.599) (843.934 767 265.598)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.721389 0 0.692529 389.733] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21561" - "plane" "(2240 -1984 192) (2048 -2176 192) (2048 -2176 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8515" + "plane" "(821.433 767 263.199) (833.936 767 256) (833.93 768 256)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.721389 0 0.692529 389.733] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 175" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2652" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27943" + "id" "2654" side { - "id" "21590" - "plane" "(2160 -2064 384) (2128 -2096 384) (2032 -2000 384)" + "id" "8526" + "plane" "(821.432 768 263.198) (828.932 768 275.199) (813.935 768 280)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 0 0.707107 -29.398] 0.25" + "vaxis" "[0.707107 0 -0.707107 11] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21589" - "plane" "(2064 -1968 256) (2032 -2000 256) (2128 -2096 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8525" + "plane" "(811.43 767 268) (813.93 767 280) (828.93 767 275.199)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.856467 0.312128 0.411144 -172.145] 0.25" + "vaxis" "[-0.432765 0 -0.901507 162.298] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21588" - "plane" "(2032 -2000 256) (2064 -1968 256) (2064 -1968 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8524" + "plane" "(821.43 767 263.199) (828.93 767 275.199) (828.932 768 275.199)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.721389 0 0.692529 -26.4863] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21587" - "plane" "(2160 -2064 256) (2128 -2096 256) (2128 -2096 384)" + "id" "8523" + "plane" "(811.434 768 268) (813.935 768 280) (813.93 767 280)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.721389 0 0.692529 -26.4863] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21586" - "plane" "(2128 -2096 256) (2032 -2000 256) (2032 -2000 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8522" + "plane" "(813.935 768 280) (828.932 768 275.199) (828.93 767 275.199)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.989487 0.144544 -0.00460701 483.009] 0.25" + "vaxis" "[-0.144542 -0.989498 0 95.3171] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21585" - "plane" "(2064 -1968 256) (2160 -2064 256) (2160 -2064 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8521" + "plane" "(811.43 767 268) (821.43 767 263.199) (821.432 768 263.198)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.721389 0 0.692529 468.749] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 175" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2652" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27946" + "id" "2655" side { - "id" "21602" - "plane" "(2080 -2144 384) (2047.98 -2176 384) (1952 -2080 384)" + "id" "8532" + "plane" "(811.432 768 268) (813.932 768 280) (793.93 768 280)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 0 0.707107 -29.398] 0.25" + "vaxis" "[0.707107 0 -0.707107 11] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21601" - "plane" "(1984 -2048 256) (1952 -2080 256) (2048 -2176 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8531" + "plane" "(796.432 767 268) (793.932 767 280) (813.935 767 280)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.721389 0.692529 0 -392.31] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21600" - "plane" "(1952 -2080 256) (1984 -2048 256) (1984 -2048 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8530" + "plane" "(811.435 767 268) (813.935 767 280) (813.932 768 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.721389 0 0.692529 -26.4863] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21599" - "plane" "(2080 -2144 256) (2047.99 -2176 256) (2047.98 -2176 384)" + "id" "8529" + "plane" "(796.43 768 268) (793.93 768 280) (793.932 767 280)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.721389 0 0.692529 0.241012] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21598" - "plane" "(2047.99 -2176 256) (1952 -2080 256) (1952 -2080 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8528" + "plane" "(793.93 768 280) (813.932 768 280) (813.935 767 280)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.721403 0 -0.692515 318.485] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21597" - "plane" "(1984 -2048 256) (2080 -2144 256) (2080 -2144 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8527" + "plane" "(796.432 767 268) (811.435 767 268) (811.432 768 268)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.721389 0 0.692529 468.749] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 175" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2652" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27948" + "id" "2656" side { - "id" "21614" - "plane" "(2240 -1984 384) (2208 -2016 384) (2112 -1920 384)" + "id" "8538" + "plane" "(796.432 768 268) (793.932 768 280) (778.934 768 275.199)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 0 0.707107 -29.398] 0.25" + "vaxis" "[0.707107 0 -0.707107 11] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21613" - "plane" "(2144 -1888 256) (2112 -1920 256) (2208 -2016 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8537" + "plane" "(786.431 767 263.199) (778.93 767 275.2) (793.93 767 280)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[0.856481 0.312231 0.411037 -117.959] 0.25" + "vaxis" "[0.432667 0 -0.901553 -204.439] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21612" - "plane" "(2112 -1920 256) (2144 -1888 256) (2144 -1888 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8536" + "plane" "(796.43 767 268) (793.93 767 280) (793.932 768 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.721389 0 0.692529 0.241012] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21611" - "plane" "(2240 -1984 256) (2208 -2016 256) (2208 -2016 384)" + "id" "8535" + "plane" "(786.433 768 263.2) (778.934 768 275.199) (778.93 767 275.2)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.721389 0 0.692529 0.241012] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21610" - "plane" "(2208 -2016 256) (2112 -1920 256) (2112 -1920 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8534" + "plane" "(778.934 768 275.199) (793.932 768 280) (793.93 767 280)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[0.989507 0.144402 -0.00468656 -51.0813] 0.25" + "vaxis" "[0.1444 -0.989519 0 320.559] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21609" - "plane" "(2144 -1888 256) (2240 -1984 256) (2240 -1984 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8533" + "plane" "(786.431 767 263.199) (796.43 767 268) (796.432 768 268)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[0.721389 0 0.692529 33.3262] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 175" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2652" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27966" + "id" "2657" side { - "id" "21650" - "plane" "(2240 -1984 448) (2047.97 -2176 448) (1952 -2080 448)" + "id" "8544" + "plane" "(786.432 768 263.2) (778.933 768 275.199) (763.93 768 265.602)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 0 0.707107 -29.398] 0.25" + "vaxis" "[0.707107 0 -0.707107 11] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21649" - "plane" "(2144 -1888 384) (1952 -2080 384) (2047.98 -2176 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8543" + "plane" "(773.929 767 256) (763.93 767 265.6) (778.93 767 275.199)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.707107 0 0.707107 -239.697] 0.25" + "vaxis" "[0.707107 0 -0.707107 -107.878] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21648" - "plane" "(1952 -2080 384) (2144 -1888 384) (2144 -1888 448)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8542" + "plane" "(786.43 767 263.199) (778.93 767 275.199) (778.933 768 275.199)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.721389 0 0.692529 0.241012] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21647" - "plane" "(2240 -1984 384) (2047.98 -2176 384) (2047.97 -2176 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8541" + "plane" "(763.93 767 265.6) (773.929 767 256) (773.931 768 256)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.721389 0 0.692529 389.733] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21646" - "plane" "(2047.98 -2176 384) (1952 -2080 384) (1952 -2080 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8540" + "plane" "(763.93 768 265.602) (778.933 768 275.199) (778.93 767 275.199)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.721389 0 0.692529 -45.2656] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21645" - "plane" "(2144 -1888 384) (2240 -1984 384) (2240 -1984 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8539" + "plane" "(773.929 767 256) (786.43 767 263.199) (786.432 768 263.2)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.721389 0 0.692529 -45.2656] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 175" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2652" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27987" + "id" "2659" side { - "id" "21686" - "plane" "(2016 -2144 64) (1952 -2080 64) (2144 -1888 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "id" "8550" + "plane" "(941.93 768 256) (951.93 768 265.602) (936.934 768 275.203)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0 0.707107 26.7143] 0.25" + "vaxis" "[0.707107 0 -0.707107 3.11132] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21685" - "plane" "(2208 -1952 0) (2144 -1888 0) (1952 -2080 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "id" "8549" + "plane" "(929.43 767 263.199) (936.93 767 275.2) (951.93 767 265.605)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.707107 0 0.707107 -55.5845] 0.25" + "vaxis" "[0.707107 0 -0.707107 -435.766] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21684" - "plane" "(2016 -2144 0) (1952 -2080 0) (1952 -2080 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8548" + "plane" "(941.927 767 256) (951.93 767 265.605) (951.93 768 265.602)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.721389 0 0.692529 -379.777] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21683" - "plane" "(2144 -1888 0) (2208 -1952 0) (2208 -1952 64)" + "id" "8547" + "plane" "(929.431 768 263.199) (936.934 768 275.203) (936.93 767 275.2)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.721389 0 0.692529 23.0019] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21682" - "plane" "(1952 -2080 0) (2144 -1888 0) (2144 -1888 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8546" + "plane" "(936.934 768 275.203) (951.93 768 265.602) (951.93 767 265.605)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.721389 0 0.692529 212.244] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21681" - "plane" "(2208 -1952 0) (2016 -2144 0) (2016 -2144 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8545" + "plane" "(929.43 767 263.199) (941.927 767 256) (941.93 768 256)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.721389 0 0.692529 212.244] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2658" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27992" + "id" "2660" side { - "id" "21710" - "plane" "(2688 -1856 448) (2176 -1856 448) (2176 -1664 448)" + "id" "8556" + "plane" "(929.431 768 263.201) (936.931 768 275.2) (921.93 768 280)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0.046875] 0.25" + "uaxis" "[0.707107 0 0.707107 26.7143] 0.25" + "vaxis" "[0.707107 0 -0.707107 3.11132] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21709" - "plane" "(2688 -1664 64) (2176 -1664 64) (2176 -1856 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0.046875] 0.25" + "id" "8555" + "plane" "(919.43 767 268) (921.93 767 280) (936.93 767 275.199)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.856467 0.312128 0.411144 -172.145] 0.25" + "vaxis" "[-0.432765 0 -0.901507 162.298] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21708" - "plane" "(2688 -1856 64) (2176 -1856 64) (2176 -1856 448)" + "id" "8554" + "plane" "(929.431 767 263.201) (936.93 767 275.199) (936.931 768 275.2)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.721389 0 0.692529 23.0019] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21707" - "plane" "(2176 -1664 64) (2688 -1664 64) (2688 -1664 448)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8553" + "plane" "(919.43 768 268) (921.93 768 280) (921.93 767 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.721389 0 0.692529 23.0019] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21706" - "plane" "(2176 -1856 64) (2176 -1664 64) (2176 -1664 448)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8552" + "plane" "(921.93 768 280) (936.931 768 275.2) (936.93 767 275.199)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.989487 0.144544 -0.00460701 483.009] 0.25" + "vaxis" "[-0.144542 -0.989498 0 95.3171] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21705" - "plane" "(2688 -1664 64) (2688 -1856 64) (2688 -1856 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8551" + "plane" "(919.43 767 268) (929.431 767 263.201) (929.431 768 263.201)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[-0.721389 0 0.692529 230.244] 0.25" + "vaxis" "[0 1 0 -425.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 175" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2658" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28004" + "id" "2661" side { - "id" "21734" - "plane" "(1887.99 -2176 448) (1887.99 -2112 448) (1919.99 -2112 448)" + "id" "8562" + "plane" "(919.432 768 268) (921.932 768 280) (901.93 768 280)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 0 0.707107 26.7143] 0.25" + "vaxis" "[0.707107 0 -0.707107 3.11132] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21733" - "plane" "(1887.99 -2112 64) (1887.99 -2176 64) (1919.99 -2176 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8561" + "plane" "(904.428 767 268) (901.928 767 280) (921.93 767 280)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.721389 0.692529 0 -392.31] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21732" - "plane" "(1887.99 -2176 64) (1887.99 -2112 64) (1887.99 -2112 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8560" + "plane" "(919.43 767 268) (921.93 767 280) (921.932 768 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.721389 0 0.692529 23.0019] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21731" - "plane" "(1919.99 -2112 64) (1919.99 -2176 64) (1919.99 -2176 448)" + "id" "8559" + "plane" "(904.43 768 268) (901.93 768 280) (901.928 767 280)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.721389 0 0.692529 14.7508] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21730" - "plane" "(1887.99 -2112 64) (1919.99 -2112 64) (1919.99 -2112 448)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8558" + "plane" "(901.93 768 280) (921.932 768 280) (921.93 767 280)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[-0.721403 0 -0.692515 318.485] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21729" - "plane" "(1919.99 -2176 64) (1887.99 -2176 64) (1887.99 -2176 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8557" + "plane" "(904.428 767 268) (919.43 767 268) (919.432 768 268)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[-0.721389 0 0.692529 230.244] 0.25" + "vaxis" "[0 1 0 -425.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 175" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2658" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28006" + "id" "2662" side { - "id" "21746" - "plane" "(1807.99 -2176 448) (1807.99 -2112 448) (1887.99 -2112 448)" + "id" "8568" + "plane" "(904.428 768 268) (901.928 768 280) (886.928 768 275.199)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 0 0.707107 26.7143] 0.25" + "vaxis" "[0.707107 0 -0.707107 3.11132] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21745" - "plane" "(1807.99 -2112 192) (1807.99 -2176 192) (1887.99 -2176 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8567" + "plane" "(894.431 767 263.199) (886.93 767 275.2) (901.93 767 280)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[0.856481 0.312231 0.411037 -117.959] 0.25" + "vaxis" "[0.432667 0 -0.901553 -204.439] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21744" - "plane" "(1807.99 -2176 192) (1807.99 -2112 192) (1807.99 -2112 448)" + "id" "8566" + "plane" "(904.43 767 268) (901.93 767 280) (901.928 768 280)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.721389 0 0.692529 14.7508] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21743" - "plane" "(1887.99 -2112 192) (1887.99 -2176 192) (1887.99 -2176 448)" + "id" "8565" + "plane" "(894.429 768 263.199) (886.928 768 275.199) (886.93 767 275.2)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.721389 0 0.692529 14.7508] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21742" - "plane" "(1807.99 -2112 192) (1887.99 -2112 192) (1887.99 -2112 448)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8564" + "plane" "(886.928 768 275.199) (901.928 768 280) (901.93 767 280)" + "material" "DE_TRAIN/TRAIN_OLDBRICK_01" + "uaxis" "[0.989507 0.144402 -0.00468656 -51.0813] 0.25" + "vaxis" "[0.1444 -0.989519 0 320.559] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21741" - "plane" "(1887.99 -2176 192) (1807.99 -2176 192) (1807.99 -2176 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8563" + "plane" "(894.431 767 263.199) (904.43 767 268) (904.428 768 268)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[0.721389 0 0.692529 -361.777] 0.25" + "vaxis" "[0 1 0 -425.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 175" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2658" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28015" + "id" "2663" side { - "id" "21770" - "plane" "(1807.99 -2256 64) (1807.99 -2240 64) (1887.99 -2240 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64.0469] 0.25" - "vaxis" "[0 -1 0 -96] 0.25" + "id" "8574" + "plane" "(894.428 768 263.2) (886.93 768 275.196) (871.934 768 265.594)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0 0.707107 26.7143] 0.25" + "vaxis" "[0.707107 0 -0.707107 3.11132] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21769" - "plane" "(1807.99 -2240 0) (1807.99 -2256 0) (1887.99 -2256 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "8573" + "plane" "(881.929 767 256) (871.93 767 265.599) (886.93 767 275.195)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.707107 0 0.707107 -55.5845] 0.25" + "vaxis" "[0.707107 0 -0.707107 -435.766] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21768" - "plane" "(1807.99 -2256 0) (1807.99 -2240 0) (1807.99 -2240 64)" + "id" "8572" + "plane" "(894.428 767 263.2) (886.93 767 275.195) (886.93 768 275.196)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.721389 0 0.692529 14.7508] 0.25" + "vaxis" "[0 1 0 -32.6602] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21767" - "plane" "(1887.99 -2240 0) (1887.99 -2256 0) (1887.99 -2256 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8571" + "plane" "(871.93 767 265.599) (881.929 767 256) (881.929 768 256)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[-0.721389 0 0.692529 212.244] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21766" - "plane" "(1807.99 -2240 0) (1887.99 -2240 0) (1887.99 -2240 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8570" + "plane" "(871.934 768 265.594) (886.93 768 275.196) (886.93 767 275.195)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.721389 0 0.692529 -379.777] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21765" - "plane" "(1887.99 -2256 0) (1807.99 -2256 0) (1807.99 -2256 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8569" + "plane" "(881.929 767 256) (894.428 767 263.2) (894.428 768 263.2)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0.721389 0 0.692529 -379.777] 0.25" + "vaxis" "[0 1 0 -480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 176 105" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2658" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28033" + "id" "2665" side { - "id" "21817" - "plane" "(1472 -2112 464) (1568 -2208 464) (2016 -2208 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.046875] 0.25" - "vaxis" "[0 1 0 -63.998] 0.25" + "id" "8581" + "plane" "(764 776 292) (836 776 292) (836 768 292)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -144.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21816" - "plane" "(1920 -2112 464) (2016 -2208 464) (2016 -2208 576)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 63.998] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8580" + "plane" "(764 766 288) (836 766 288) (836 776 288)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -144.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21815" - "plane" "(1568 -2208 576) (1568 -2208 464) (1472 -2112 464)" + "id" "8579" + "plane" "(836 776 292) (764 776 292) (764 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 63.998] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21814" - "plane" "(2016 -2208 576) (2016 -2208 464) (1568 -2208 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8578" + "plane" "(764 766 290) (836 766 290) (836 766 288)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -144.697] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21813" - "plane" "(1568 -2208 576) (1472 -2112 464) (1920 -2112 464)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 -0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8577" + "plane" "(764 768 292) (836 768 292) (836 766 290)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -144.697] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8576" + "plane" "(836 766 290) (836 768 292) (836 776 292)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -480.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8575" + "plane" "(764 776 292) (764 768 292) (764 766 290)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -480.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 251 148" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2664" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28068" + "id" "2667" side { - "id" "21856" - "plane" "(2272 -1952 464) (2176 -1856 464) (1920 -2112 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.046875] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "8588" + "plane" "(880 776 292) (952 776 292) (952 768 292)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -96.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21855" - "plane" "(2176 -1856 464) (2272 -1952 464) (2272 -1952 576)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8587" + "plane" "(880 766 288) (952 766 288) (952 776 288)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -96.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21854" - "plane" "(2016 -2208 576) (2016 -2208 464) (1920 -2112 464)" + "id" "8586" + "plane" "(952 776 292) (880 776 292) (880 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21853" - "plane" "(2272 -1952 576) (2272 -1952 464) (2016 -2208 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8585" + "plane" "(880 766 290) (952 766 290) (952 766 288)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -96.6973] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21852" - "plane" "(2016 -2208 576) (1920 -2112 464) (2176 -1856.01 464)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 -0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8584" + "plane" "(880 768 292) (952 768 292) (952 766 290)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -96.6973] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8583" + "plane" "(952 766 290) (952 768 292) (952 776 292)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -480.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8582" + "plane" "(880 776 292) (880 768 292) (880 766 290)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -480.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 251 148" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2666" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28112" + "id" "2669" side { - "id" "21974" - "plane" "(1471.99 -2752 448) (1471.99 -2176 448) (1535.99 -2176 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8595" + "plane" "(996 776 292) (1068 776 292) (1068 768 292)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -48.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21973" - "plane" "(1471.99 -2176 64) (1471.99 -2752 64) (1535.99 -2752 64)" + "id" "8594" + "plane" "(996 766 288) (1068 766 288) (1068 776 288)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -48.6973] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8593" + "plane" "(1068 776 292) (996 776 292) (996 776 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -16.6973] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21972" - "plane" "(1471.99 -2752 64) (1471.99 -2176 64) (1471.99 -2176 448)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8592" + "plane" "(996 766 290) (1068 766 290) (1068 766 288)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -48.6973] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21971" - "plane" "(1535.99 -2176 64) (1535.99 -2752 64) (1535.99 -2752 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8591" + "plane" "(996 768 292) (1068 768 292) (1068 766 290)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -48.6973] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21970" - "plane" "(1471.98 -2176 64) (1535.99 -2176 64) (1535.99 -2176 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8590" + "plane" "(1068 766 290) (1068 768 292) (1068 776 292)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -480.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "21969" - "plane" "(1535.99 -2752 64) (1471.99 -2752 64) (1471.98 -2752 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8589" + "plane" "(996 776 292) (996 768 292) (996 766 290)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -480.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 175" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2668" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28550" + "id" "2671" side { - "id" "22377" - "plane" "(-832 -576 272) (-848 -576 272) (-848 -416 272)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "8602" + "plane" "(1112 776 292) (1184 776 292) (1184 768 292)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22376" - "plane" "(-832 -416 256) (-848 -416 256) (-848 -576 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "8601" + "plane" "(1112 766 288) (1184 766 288) (1184 776 288)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22375" - "plane" "(-832 -576 256) (-848 -576 256) (-848 -576 272)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8600" + "plane" "(1184 776 292) (1112 776 292) (1112 776 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22374" - "plane" "(-848 -416 256) (-832 -416 256) (-832 -416 272)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8599" + "plane" "(1112 766 290) (1184 766 290) (1184 766 288)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22373" - "plane" "(-848 -576 256) (-848 -416 256) (-848 -416 272)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "8598" + "plane" "(1112 768 292) (1184 768 292) (1184 766 290)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -0.697266] 0.25" + "vaxis" "[0 0 -1 437.307] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22372" - "plane" "(-832 -416 256) (-832 -576 256) (-832 -576 272)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8597" + "plane" "(1184 766 290) (1184 768 292) (1184 776 292)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -480.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8596" + "plane" "(1112 776 292) (1112 768 292) (1112 766 290)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -480.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 136 105" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2670" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28586" + "id" "2673" side { - "id" "22449" - "plane" "(-832 -560 288) (-848 -560 288) (-848 -432 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "8609" + "plane" "(1172 776 120) (1236 776 120) (1236 768 120)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -272.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22448" - "plane" "(-832 -432 272) (-848 -432 272) (-848 -560 272)" + "id" "8608" + "plane" "(1172 766 116) (1236 766 116) (1236 776 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -272.697] 0.25" + "vaxis" "[0 -1 0 480.66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8607" + "plane" "(1236 776 120) (1172 776 120) (1172 776 116)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 15.3027] 0.25" + "vaxis" "[0 0 -1 21.3069] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22447" - "plane" "(-832 -560 272) (-848 -560 272) (-848 -560 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8606" + "plane" "(1172 766 118) (1236 766 118) (1236 766 116)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -272.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22446" - "plane" "(-848 -432 272) (-832 -432 272) (-832 -432 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8605" + "plane" "(1172 768 120) (1236 768 120) (1236 766 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[1 0 0 -272.697] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22445" - "plane" "(-848 -560 272) (-848 -432 272) (-848 -432 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8604" + "plane" "(1172 776 120) (1172 768 120) (1172 766 118)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -112.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22444" - "plane" "(-832 -432 272) (-832 -560 272) (-832 -560 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8603" + "plane" "(1236 766 118) (1236 768 120) (1236 776 120)" + "material" "CONCRETE/CONCRETECEILING001A" + "uaxis" "[0 1 0 -112.66] 0.25" + "vaxis" "[0 0 -1 261.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 136 105" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "2672" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28591" + "id" "6472" side { - "id" "22461" - "plane" "(-832 -544 304) (-848 -544 304) (-848 -448 304)" + "id" "8610" + "plane" "(732 780 420) (748 780 420) (748 776 420)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22460" - "plane" "(-832 -448 288) (-848 -448 288) (-848 -544 288)" + "id" "8611" + "plane" "(732 776 124) (748 776 124) (748 780 124)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22459" - "plane" "(-832 -544 288) (-848 -544 288) (-848 -544 304)" + "id" "8612" + "plane" "(732 780 420) (732 776 420) (732 776 124)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -171814,10 +175666,10 @@ world } side { - "id" "22458" - "plane" "(-848 -448 288) (-832 -448 288) (-832 -448 304)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "8613" + "plane" "(748 780 124) (748 776 124) (748 776 420)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -171825,10 +175677,10 @@ world } side { - "id" "22457" - "plane" "(-848 -544 288) (-848 -448 288) (-848 -448 304)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "8614" + "plane" "(748 780 420) (732 780 420) (732 780 124)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -171836,10 +175688,10 @@ world } side { - "id" "22456" - "plane" "(-832 -448 288) (-832 -544 288) (-832 -544 304)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" + "id" "8615" + "plane" "(748 776 124) (732 776 124) (732 776 420)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -171847,43 +175699,42 @@ world } editor { - "color" "0 136 105" - "visgroupid" "18" + "color" "0 226 247" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28594" + "id" "6473" side { - "id" "22473" - "plane" "(-832 -528 320) (-848 -528 320) (-848 -464 320)" + "id" "8627" + "plane" "(732 780 460) (748 780 460) (748 776 460)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22472" - "plane" "(-832 -464 304) (-848 -464 304) (-848 -528 304)" + "id" "8626" + "plane" "(732 776 440) (748 776 440) (748 780 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22471" - "plane" "(-832 -528 304) (-848 -528 304) (-848 -528 320)" + "id" "8625" + "plane" "(732 780 460) (732 776 460) (732 776 440)" "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -171891,153 +175742,151 @@ world } side { - "id" "22470" - "plane" "(-848 -464 304) (-832 -464 304) (-832 -464 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8624" + "plane" "(748 780 440) (748 776 440) (748 776 460)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22469" - "plane" "(-848 -528 304) (-848 -464 304) (-848 -464 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8623" + "plane" "(748 780 460) (732 780 460) (732 780 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22468" - "plane" "(-832 -464 304) (-832 -528 304) (-832 -528 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8622" + "plane" "(748 776 440) (732 776 440) (732 776 460)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 136 105" - "visgroupid" "18" + "color" "0 226 247" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28597" + "id" "6479" side { - "id" "22485" - "plane" "(-832 -512 336) (-848 -512 336) (-848 -480 336)" + "id" "8663" + "plane" "(802 992 560) (802 822.646 560) (810 827.938 560)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[-1 0 0 63.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22484" - "plane" "(-832 -480 320) (-848 -480 320) (-848 -512 320)" + "id" "8662" + "plane" "(810 992 568) (810 827.938 568) (798 820 568)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[-1 0 0 63.3027] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22483" - "plane" "(-832 -512 320) (-848 -512 320) (-848 -512 336)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8661" + "plane" "(810 827.938 560) (802 822.646 560) (798 820 568)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.3027] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22482" - "plane" "(-848 -480 320) (-832 -480 320) (-832 -480 336)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8660" + "plane" "(810 992 560) (810 827.938 560) (810 827.938 568)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16.6602] 0.25" + "vaxis" "[0 0 1 10.6931] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22481" - "plane" "(-848 -512 320) (-848 -480 320) (-848 -480 336)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8659" + "plane" "(802 822.646 560) (802 992 560) (798 992 568)" + "material" "CONCRETE/CONCRETECEILING003A" + "uaxis" "[0 1 0 -320.66] 0.25" + "vaxis" "[0 0 -1 157.307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22480" - "plane" "(-832 -480 320) (-832 -512 320) (-832 -512 336)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8658" + "plane" "(802 992 560) (810 992 560) (810 992 568)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 63.3027] 0.25" + "vaxis" "[0 0 -1 5.30688] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 136 105" - "visgroupid" "18" + "color" "0 189 162" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28608" + "id" "6594" side { - "id" "22497" - "plane" "(-832 -504 352) (-848 -504 352) (-848 -488 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "8812" + "plane" "(-224 -928 0) (-640 -928 0) (-640 64 0)" + "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" "22496" - "plane" "(-832 -488 336) (-848 -488 336) (-848 -504 336)" + "id" "8811" + "plane" "(-224 64 -64) (-640 64 -64) (-640 -928 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22495" - "plane" "(-832 -504 336) (-848 -504 336) (-848 -504 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "8810" + "plane" "(-640 64 -64) (-224 64 -64) (-224 64 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172045,10 +175894,10 @@ world } side { - "id" "22494" - "plane" "(-848 -488 336) (-832 -488 336) (-832 -488 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "8809" + "plane" "(-224 -928 -64) (-640 -928 -64) (-640 -928 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172056,9 +175905,9 @@ world } side { - "id" "22493" - "plane" "(-848 -504 336) (-848 -488 336) (-848 -488 352)" - "material" "DEV/REFLECTIVITY_50B" + "id" "8808" + "plane" "(-640 -928 -64) (-640 64 -64) (-640 64 0)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -172067,9 +175916,9 @@ world } side { - "id" "22492" - "plane" "(-832 -488 336) (-832 -504 336) (-832 -504 352)" - "material" "DEV/REFLECTIVITY_50B" + "id" "8807" + "plane" "(-224 64 -64) (-224 -928 -64) (-224 -928 0)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -172078,43 +175927,43 @@ world } editor { - "color" "0 136 105" - "visgroupid" "18" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28613" + "id" "6595" side { - "id" "22509" - "plane" "(-830 -432 274) (-848 -432 274) (-848 -414 274)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "8818" + "plane" "(-224 64 0) (0 64 0) (0 -928 0)" + "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" "22508" - "plane" "(-830 -414 272) (-848 -414 272) (-848 -432 272)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "8817" + "plane" "(-224 -928 -128) (0 -928 -128) (0 64 -128)" + "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" "22507" - "plane" "(-830 -432 272) (-848 -432 272) (-848 -432 274)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "8816" + "plane" "(0 64 -128) (0 -928 -128) (0 -928 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172122,10 +175971,10 @@ world } side { - "id" "22506" - "plane" "(-848 -414 272) (-830 -414 272) (-830 -414 274)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "8815" + "plane" "(-224 64 -128) (0 64 -128) (0 64 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172133,10 +175982,10 @@ world } side { - "id" "22505" - "plane" "(-848 -432 272) (-848 -414 272) (-848 -414 274)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "8814" + "plane" "(0 -928 -128) (-224 -928 -128) (-224 -928 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172144,9 +175993,9 @@ world } side { - "id" "22504" - "plane" "(-830 -414 272) (-830 -432 272) (-830 -432 274)" - "material" "DEV/REFLECTIVITY_30B" + "id" "8813" + "plane" "(-224 -928 -128) (-224 64 -128) (-224 64 0)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -172155,54 +176004,54 @@ world } editor { - "color" "0 220 153" - "visgroupid" "18" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28621" + "id" "1552" side { - "id" "22521" - "plane" "(-830 -448 290) (-848 -448 290) (-848 -430 290)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "3028" + "plane" "(960 640 88) (960 768 88) (992 768 88)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22520" - "plane" "(-830 -430 288) (-848 -430 288) (-848 -448 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "3027" + "plane" "(960 768 64) (960 640 64) (992 640 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" "22519" - "plane" "(-830 -448 288) (-848 -448 288) (-848 -448 290)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "3026" + "plane" "(960 640 64) (960 768 64) (960 768 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22518" - "plane" "(-848 -430 288) (-830 -430 288) (-830 -430 290)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "3025" + "plane" "(992 768 64) (992 640 64) (992 640 88)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172210,21 +176059,21 @@ world } side { - "id" "22517" - "plane" "(-848 -448 288) (-848 -430 288) (-848 -430 290)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "3024" + "plane" "(960 768 64) (992 768 64) (992 768 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22516" - "plane" "(-830 -430 288) (-830 -448 288) (-830 -448 290)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "3023" + "plane" "(992 640 64) (960 640 64) (960 640 88)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172232,54 +176081,54 @@ world } editor { - "color" "0 220 153" - "visgroupid" "18" + "color" "0 144 237" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28623" + "id" "1557" side { - "id" "22533" - "plane" "(-830 -464 306) (-848 -464 306) (-848 -446 306)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "3040" + "plane" "(992 640 80) (992 768 80) (1024 768 80)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22532" - "plane" "(-830 -446 304) (-848 -446 304) (-848 -464 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "3039" + "plane" "(992 768 64) (992 640 64) (1024 640 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" "22531" - "plane" "(-830 -464 304) (-848 -464 304) (-848 -464 306)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "3038" + "plane" "(992 640 64) (992 768 64) (992 768 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22530" - "plane" "(-848 -446 304) (-830 -446 304) (-830 -446 306)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "3037" + "plane" "(1024 768 64) (1024 640 64) (1024 640 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172287,21 +176136,21 @@ world } side { - "id" "22529" - "plane" "(-848 -464 304) (-848 -446 304) (-848 -446 306)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "3036" + "plane" "(992 768 64) (1024 768 64) (1024 768 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22528" - "plane" "(-830 -446 304) (-830 -464 304) (-830 -464 306)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "3035" + "plane" "(1024 640 64) (992 640 64) (992 640 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172309,54 +176158,54 @@ world } editor { - "color" "0 220 153" - "visgroupid" "18" + "color" "0 144 237" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28624" + "id" "1559" side { - "id" "22545" - "plane" "(-830 -480 322) (-848 -480 322) (-848 -462 322)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "3052" + "plane" "(1024 640 72) (1024 768 72) (1056 768 72)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22544" - "plane" "(-830 -462 320) (-848 -462 320) (-848 -480 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "3051" + "plane" "(1024 768 64) (1024 640 64) (1056 640 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" "22543" - "plane" "(-830 -480 320) (-848 -480 320) (-848 -480 322)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "3050" + "plane" "(1024 640 64) (1024 768 64) (1024 768 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22542" - "plane" "(-848 -462 320) (-830 -462 320) (-830 -462 322)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "3049" + "plane" "(1056 768 64) (1056 640 64) (1056 640 72)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172364,21 +176213,21 @@ world } side { - "id" "22541" - "plane" "(-848 -480 320) (-848 -462 320) (-848 -462 322)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "3048" + "plane" "(1024 768 64) (1056 768 64) (1056 768 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22540" - "plane" "(-830 -462 320) (-830 -480 320) (-830 -480 322)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "3047" + "plane" "(1056 640 64) (1024 640 64) (1024 640 72)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172386,43 +176235,126 @@ world } editor { - "color" "0 220 153" - "visgroupid" "18" + "color" "0 144 237" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28625" + "id" "31" side { - "id" "22557" - "plane" "(-830 -488 338) (-848 -488 338) (-848 -478 338)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "144" + "plane" "(-960 -896 48) (-960 -688 48) (-704 -816 48)" + "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" + dispinfo + { + "power" "3" + "startposition" "[-960 -896 48]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.75 0 0 -0.75 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 1.73078 1.85826 0 0 0" + "row5" "0 0 0 2.30933 7.20039 5.4243 1.27659 0 0" + "row6" "0 0 0.739296 5.11125 10.8876 9.66645 4.1196 0 0" + "row7" "0 0 0.78294 5.5055 12.6381 12.4567 6.17968 0 0" + "row8" "0 0 0 3.67522 12.4592 13.724 7.45922 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" + "row1" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" + "row2" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" + "row3" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" + "row4" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" + "row5" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" + "row6" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" + "row7" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" + "row8" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "22556" - "plane" "(-830 -478 336) (-848 -478 336) (-848 -488 336)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "143" + "plane" "(-960 -688 0) (-960 -896 0) (-704 -896 0)" + "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" "22555" - "plane" "(-830 -488 336) (-848 -488 336) (-848 -488 338)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "142" + "plane" "(-960 -896 0) (-960 -688 0) (-960 -688 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172430,10 +176362,10 @@ world } side { - "id" "22554" - "plane" "(-848 -478 336) (-830 -478 336) (-830 -478 338)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "141" + "plane" "(-704 -816 0) (-704 -896 0) (-704 -896 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172441,21 +176373,104 @@ world } side { - "id" "22553" - "plane" "(-848 -488 336) (-848 -478 336) (-848 -478 338)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "140" + "plane" "(-960 -688 0) (-704 -816 0) (-704 -816 48)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-960 -688 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75" + "row4" "0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75" + "row5" "0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75" + "row6" "0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0.559552 1.39337 2.10022 2.68012 3.13306 3.45904 3.65806 3.73012 3.67522" + "row4" "2.07564 4.20304 6.31715 8.14416 9.67012 10.8804 11.7595 12.2914 12.4592" + "row5" "2.66174 5.09529 7.25682 9.13307 10.7102 11.9735 12.9077 13.4969 13.724" + "row6" "0.277723 1.70738 3.21626 4.50542 5.56936 6.40247 6.99904 7.35326 7.45922" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" + "row1" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" + "row2" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" + "row3" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" + "row4" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" + "row5" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" + "row6" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" + "row7" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" + "row8" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "22552" - "plane" "(-830 -478 336) (-830 -488 336) (-830 -488 338)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "139" + "plane" "(-704 -896 0) (-960 -896 0) (-960 -896 48)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172463,43 +176478,43 @@ world } editor { - "color" "0 220 153" - "visgroupid" "18" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28627" + "id" "77" side { - "id" "22569" - "plane" "(-830 -506 354) (-848 -506 354) (-848 -486 354)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "288" + "plane" "(-640 -1088 44) (-640 -896 44) (-608 -896 44)" + "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" "22568" - "plane" "(-830 -486 352) (-848 -486 352) (-848 -506 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "287" + "plane" "(-640 -896 0) (-640 -1088 0) (-608 -1088 0)" + "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" "22567" - "plane" "(-830 -506 352) (-848 -506 352) (-848 -506 354)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "286" + "plane" "(-640 -1088 0) (-640 -896 0) (-640 -896 44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172507,10 +176522,10 @@ world } side { - "id" "22566" - "plane" "(-848 -486 352) (-830 -486 352) (-830 -486 354)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "285" + "plane" "(-608 -896 0) (-608 -1088 0) (-608 -1088 44)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172518,10 +176533,10 @@ world } side { - "id" "22565" - "plane" "(-848 -506 352) (-848 -486 352) (-848 -486 354)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "284" + "plane" "(-640 -896 0) (-608 -896 0) (-608 -896 44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172529,10 +176544,10 @@ world } side { - "id" "22564" - "plane" "(-830 -486 352) (-830 -506 352) (-830 -506 354)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "283" + "plane" "(-608 -1088 0) (-640 -1088 0) (-640 -1088 44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172540,43 +176555,43 @@ world } editor { - "color" "0 220 153" - "visgroupid" "18" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28629" + "id" "79" side { - "id" "22581" - "plane" "(-830 -514 338) (-848 -514 338) (-848 -504 338)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "300" + "plane" "(-608 -1088 40) (-608 -896 40) (-576 -896 40)" + "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" "22580" - "plane" "(-830 -504 336) (-848 -504 336) (-848 -514 336)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "299" + "plane" "(-608 -896 0) (-608 -1088 0) (-576 -1088 0)" + "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" "22579" - "plane" "(-830 -514 336) (-848 -514 336) (-848 -514 338)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "298" + "plane" "(-608 -1088 0) (-608 -896 0) (-608 -896 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172584,10 +176599,10 @@ world } side { - "id" "22578" - "plane" "(-848 -504 336) (-830 -504 336) (-830 -504 338)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "297" + "plane" "(-576 -896 0) (-576 -1088 0) (-576 -1088 40)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172595,10 +176610,10 @@ world } side { - "id" "22577" - "plane" "(-848 -514 336) (-848 -504 336) (-848 -504 338)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "296" + "plane" "(-608 -896 0) (-576 -896 0) (-576 -896 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172606,10 +176621,10 @@ world } side { - "id" "22576" - "plane" "(-830 -504 336) (-830 -514 336) (-830 -514 338)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "295" + "plane" "(-576 -1088 0) (-608 -1088 0) (-608 -1088 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172617,43 +176632,43 @@ world } editor { - "color" "0 220 153" - "visgroupid" "18" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28630" + "id" "81" side { - "id" "22593" - "plane" "(-830 -530 322) (-848 -530 322) (-848 -512 322)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "312" + "plane" "(-496 -1056 36) (-576 -896 36) (-544 -880 36)" + "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" "22592" - "plane" "(-830 -512 320) (-848 -512 320) (-848 -530 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "311" + "plane" "(-576 -896 0) (-496 -1056 0) (-464 -1040 0)" + "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" "22591" - "plane" "(-830 -530 320) (-848 -530 320) (-848 -530 322)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "310" + "plane" "(-496 -1056 0) (-576 -896 0) (-576 -896 36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172661,10 +176676,10 @@ world } side { - "id" "22590" - "plane" "(-848 -512 320) (-830 -512 320) (-830 -512 322)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "309" + "plane" "(-544 -880 0) (-464 -1040 0) (-464 -1040 36)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172672,10 +176687,10 @@ world } side { - "id" "22589" - "plane" "(-848 -530 320) (-848 -512 320) (-848 -512 322)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "308" + "plane" "(-576 -896 0) (-544 -880 0) (-544 -880 36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172683,10 +176698,10 @@ world } side { - "id" "22588" - "plane" "(-830 -512 320) (-830 -530 320) (-830 -530 322)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "307" + "plane" "(-464 -1040 0) (-496 -1056 0) (-496 -1056 36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172694,43 +176709,43 @@ world } editor { - "color" "0 220 153" - "visgroupid" "18" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28631" + "id" "83" side { - "id" "22605" - "plane" "(-830 -546 306) (-848 -546 306) (-848 -528 306)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "324" + "plane" "(-560 -1088 36) (-576 -1088 36) (-576 -896 36)" + "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" "22604" - "plane" "(-830 -528 304) (-848 -528 304) (-848 -546 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "323" + "plane" "(-576 -1088 0) (-560 -1088 0) (-496 -1056 0)" + "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" "22603" - "plane" "(-830 -546 304) (-848 -546 304) (-848 -546 306)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "322" + "plane" "(-560 -1088 0) (-576 -1088 0) (-576 -1088 36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172738,10 +176753,10 @@ world } side { - "id" "22602" - "plane" "(-848 -528 304) (-830 -528 304) (-830 -528 306)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "321" + "plane" "(-576 -896 0) (-496 -1056 0) (-496 -1056 36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172749,9 +176764,9 @@ world } side { - "id" "22601" - "plane" "(-848 -546 304) (-848 -528 304) (-848 -528 306)" - "material" "DEV/REFLECTIVITY_30B" + "id" "320" + "plane" "(-576 -1088 0) (-576 -896 0) (-576 -896 36)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -172760,10 +176775,10 @@ world } side { - "id" "22600" - "plane" "(-830 -528 304) (-830 -546 304) (-830 -546 306)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "319" + "plane" "(-496 -1056 0) (-560 -1088 0) (-560 -1088 36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172771,43 +176786,43 @@ world } editor { - "color" "0 220 153" - "visgroupid" "18" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28632" + "id" "87" side { - "id" "22617" - "plane" "(-830 -562 290) (-848 -562 290) (-848 -544 290)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "336" + "plane" "(-464 -1040 32) (-544 -880 32) (-512 -864 32)" + "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" "22616" - "plane" "(-830 -544 288) (-848 -544 288) (-848 -562 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "335" + "plane" "(-544 -880 0) (-464 -1040 0) (-432 -1024 0)" + "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" "22615" - "plane" "(-830 -562 288) (-848 -562 288) (-848 -562 290)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "334" + "plane" "(-464 -1040 0) (-544 -880 0) (-544 -880 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172815,10 +176830,10 @@ world } side { - "id" "22614" - "plane" "(-848 -544 288) (-830 -544 288) (-830 -544 290)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "333" + "plane" "(-512 -864 0) (-432 -1024 0) (-432 -1024 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172826,10 +176841,10 @@ world } side { - "id" "22613" - "plane" "(-848 -562 288) (-848 -544 288) (-848 -544 290)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "332" + "plane" "(-544 -880 0) (-512 -864 0) (-512 -864 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172837,10 +176852,10 @@ world } side { - "id" "22612" - "plane" "(-830 -544 288) (-830 -562 288) (-830 -562 290)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "331" + "plane" "(-432 -1024 0) (-464 -1040 0) (-464 -1040 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172848,43 +176863,43 @@ world } editor { - "color" "0 220 153" - "visgroupid" "18" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28633" + "id" "89" side { - "id" "22629" - "plane" "(-830 -578 274) (-848 -578 274) (-848 -560 274)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "348" + "plane" "(-432 -1024 28) (-512 -864 28) (-480 -848 28)" + "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" "22628" - "plane" "(-830 -560 272) (-848 -560 272) (-848 -578 272)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "347" + "plane" "(-512 -864 0) (-432 -1024 0) (-400 -1008 0)" + "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" "22627" - "plane" "(-830 -578 272) (-848 -578 272) (-848 -578 274)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "346" + "plane" "(-432 -1024 0) (-512 -864 0) (-512 -864 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172892,10 +176907,10 @@ world } side { - "id" "22626" - "plane" "(-848 -560 272) (-830 -560 272) (-830 -560 274)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "345" + "plane" "(-480 -848 0) (-400 -1008 0) (-400 -1008 28)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172903,10 +176918,10 @@ world } side { - "id" "22625" - "plane" "(-848 -578 272) (-848 -560 272) (-848 -560 274)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "344" + "plane" "(-512 -864 0) (-480 -848 0) (-480 -848 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172914,10 +176929,10 @@ world } side { - "id" "22624" - "plane" "(-830 -560 272) (-830 -578 272) (-830 -578 274)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "343" + "plane" "(-400 -1008 0) (-432 -1024 0) (-432 -1024 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172925,21 +176940,32 @@ world } editor { - "color" "0 220 153" - "visgroupid" "18" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28678" + "id" "91" side { - "id" "23476" - "plane" "(-1000 -648 256) (-960 -688 256) (-848 -576 256)" + "id" "360" + "plane" "(-400 -1008 24) (-480 -848 24) (-448 -832 24)" + "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" "359" + "plane" "(-480 -848 0) (-400 -1008 0) (-368 -992 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172947,8 +176973,8 @@ world } side { - "id" "23475" - "plane" "(-1000 -648 336) (-960 -688 256) (-1000 -648 256)" + "id" "358" + "plane" "(-400 -1008 0) (-480 -848 0) (-480 -848 24)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -172958,10 +176984,10 @@ world } side { - "id" "23474" - "plane" "(-848 -496 256) (-848 -576 256) (-848 -496 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "id" "357" + "plane" "(-448 -832 0) (-368 -992 0) (-368 -992 24)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -172969,9 +176995,9 @@ world } side { - "id" "23473" - "plane" "(-848 -496 336) (-848 -576 256) (-960 -688 256)" - "material" "DEV/REFLECTIVITY_30B" + "id" "356" + "plane" "(-480 -848 0) (-448 -832 0) (-448 -832 24)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -172980,8 +177006,8 @@ world } side { - "id" "23472" - "plane" "(-1000 -648 336) (-1000 -648 256) (-848 -496 256)" + "id" "355" + "plane" "(-368 -992 0) (-400 -1008 0) (-400 -1008 24)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -172991,32 +177017,43 @@ world } editor { - "color" "0 106 147" - "visgroupid" "18" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28682" + "id" "93" side { - "id" "22711" - "plane" "(-960 -304 256) (-1000 -344 256) (-848 -496 256)" + "id" "372" + "plane" "(-368 -992 20) (-448 -832 20) (-416 -816 20)" + "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" "371" + "plane" "(-448 -832 0) (-368 -992 0) (-336 -976 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22710" - "plane" "(-1000 -344 256) (-960 -304 256) (-1000 -344 336)" + "id" "370" + "plane" "(-368 -992 0) (-448 -832 0) (-448 -832 20)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173024,10 +177061,10 @@ world } side { - "id" "22709" - "plane" "(-848 -496 336) (-848 -416 256) (-848 -496 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "id" "369" + "plane" "(-416 -816 0) (-336 -976 0) (-336 -976 20)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173035,9 +177072,9 @@ world } side { - "id" "22708" - "plane" "(-1000 -344 336) (-960 -304 256) (-848 -416 256)" - "material" "DEV/REFLECTIVITY_30B" + "id" "368" + "plane" "(-448 -832 0) (-416 -816 0) (-416 -816 20)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173046,8 +177083,8 @@ world } side { - "id" "22707" - "plane" "(-848 -496 336) (-848 -496 256) (-1000 -344 256)" + "id" "367" + "plane" "(-336 -976 0) (-368 -992 0) (-368 -992 20)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -173057,42 +177094,42 @@ world } editor { - "color" "0 180 249" - "visgroupid" "18" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28691" + "id" "95" side { - "id" "22723" - "plane" "(-928 -416 296) (-892 -380 296) (-868 -404 296)" - "material" "TOOLS/TOOLSNODRAW" + "id" "384" + "plane" "(-336 -976 16) (-416 -816 16) (-384 -800 16)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22722" - "plane" "(-892 -380 264) (-928 -416 264) (-904 -440 264)" + "id" "383" + "plane" "(-416 -816 0) (-336 -976 0) (-304 -960 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22721" - "plane" "(-928 -416 264) (-892 -380 264) (-892 -380 296)" - "material" "DEV/REFLECTIVITY_50B" + "id" "382" + "plane" "(-336 -976 0) (-416 -816 0) (-416 -816 16)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173101,8 +177138,8 @@ world } side { - "id" "22720" - "plane" "(-868 -404 264) (-904 -440 264) (-904 -440 296)" + "id" "381" + "plane" "(-384 -800 0) (-304 -960 0) (-304 -960 16)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -173112,9 +177149,9 @@ world } side { - "id" "22719" - "plane" "(-892 -380 264) (-868 -404 264) (-868 -404 296)" - "material" "DEV/REFLECTIVITY_30B" + "id" "380" + "plane" "(-416 -816 0) (-384 -800 0) (-384 -800 16)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173123,8 +177160,8 @@ world } side { - "id" "22718" - "plane" "(-904 -440 264) (-928 -416 264) (-928 -416 296)" + "id" "379" + "plane" "(-304 -960 0) (-336 -976 0) (-336 -976 16)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -173134,42 +177171,42 @@ world } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28701" + "id" "97" side { - "id" "22735" - "plane" "(-984 -360 296) (-948 -324 296) (-924 -348 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "id" "396" + "plane" "(-304 -960 12) (-384 -800 12) (-352 -784 12)" + "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" "22734" - "plane" "(-948 -324 264) (-984 -360 264) (-960 -384 264)" + "id" "395" + "plane" "(-384 -800 0) (-304 -960 0) (-272 -944 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22733" - "plane" "(-984 -360 264) (-948 -324 264) (-948 -324 296)" - "material" "DEV/REFLECTIVITY_50B" + "id" "394" + "plane" "(-304 -960 0) (-384 -800 0) (-384 -800 12)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173178,8 +177215,8 @@ world } side { - "id" "22732" - "plane" "(-924 -348 264) (-960 -384 264) (-960 -384 296)" + "id" "393" + "plane" "(-352 -784 0) (-272 -944 0) (-272 -944 12)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -173189,9 +177226,9 @@ world } side { - "id" "22731" - "plane" "(-948 -324 264) (-924 -348 264) (-924 -348 296)" - "material" "DEV/REFLECTIVITY_30B" + "id" "392" + "plane" "(-384 -800 0) (-352 -784 0) (-352 -784 12)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173200,10 +177237,10 @@ world } side { - "id" "22730" - "plane" "(-960 -384 264) (-984 -360 264) (-984 -360 296)" + "id" "391" + "plane" "(-272 -944 0) (-304 -960 0) (-304 -960 12)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173211,31 +177248,42 @@ world } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28707" + "id" "99" side { - "id" "22752" - "plane" "(-892 -380 296) (-928 -416 296) (-904 -440 296)" + "id" "408" + "plane" "(-272 -944 8) (-352 -784 8) (-320 -768 8)" + "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" "407" + "plane" "(-352 -784 0) (-272 -944 0) (-240 -928 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22751" - "plane" "(-928 -416 296) (-892 -380 296) (-928 -416 328)" - "material" "DEV/REFLECTIVITY_50B" + "id" "406" + "plane" "(-272 -944 0) (-352 -784 0) (-352 -784 8)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173244,8 +177292,8 @@ world } side { - "id" "22750" - "plane" "(-868 -404 296) (-904 -440 296) (-904 -440 328)" + "id" "405" + "plane" "(-320 -768 0) (-240 -928 0) (-240 -928 8)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -173255,9 +177303,9 @@ world } side { - "id" "22749" - "plane" "(-928 -416 328) (-892 -380 296) (-868 -404 296)" - "material" "DEV/REFLECTIVITY_50B" + "id" "404" + "plane" "(-352 -784 0) (-320 -768 0) (-320 -768 8)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173266,8 +177314,8 @@ world } side { - "id" "22748" - "plane" "(-904 -440 328) (-904 -440 296) (-928 -416 296)" + "id" "403" + "plane" "(-240 -928 0) (-272 -944 0) (-272 -944 8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -173277,31 +177325,42 @@ world } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28714" + "id" "116" side { - "id" "22769" - "plane" "(-948 -324 296) (-984 -360 296) (-960 -384 296)" + "id" "456" + "plane" "(-672 -864 80) (-576 -864 48) (-576 -896 48)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "455" + "plane" "(-672 -896 0) (-576 -896 0) (-576 -864 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22768" - "plane" "(-984 -360 296) (-948 -324 296) (-984 -360 328)" - "material" "DEV/REFLECTIVITY_50B" + "id" "454" + "plane" "(-672 -864 0) (-672 -864 80) (-672 -896 80)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173310,9 +177369,9 @@ world } side { - "id" "22767" - "plane" "(-924 -348 296) (-960 -384 296) (-960 -384 328)" - "material" "DEV/REFLECTIVITY_50B" + "id" "453" + "plane" "(-576 -896 0) (-576 -896 48) (-576 -864 48)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173321,8 +177380,8 @@ world } side { - "id" "22766" - "plane" "(-984 -360 328) (-948 -324 296) (-924 -348 296)" + "id" "452" + "plane" "(-576 -864 0) (-576 -864 48) (-672 -864 80)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -173332,10 +177391,10 @@ world } side { - "id" "22765" - "plane" "(-960 -384 328) (-960 -384 296) (-984 -360 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "id" "451" + "plane" "(-576 -896 48) (-576 -896 0) (-672 -896 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173343,19 +177402,19 @@ world } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28733" + "id" "169" side { - "id" "22787" - "plane" "(-960 -288 160) (-832 -416 160) (-848 -416 160)" + "id" "462" + "plane" "(-576 -896 0) (-320 -768 0) (-336 -736 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -173365,31 +177424,31 @@ world } side { - "id" "22786" - "plane" "(-832 -416 128) (-960 -288 128) (-976 -288 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "461" + "plane" "(-576 -896 0) (-576 -864 0) (-576 -864 48)" + "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" "22785" - "plane" "(-832 -416 128) (-832 -416 160) (-960 -288 160)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "460" + "plane" "(-336 -736 0) (-320 -768 0) (-320 -768 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22784" - "plane" "(-960 -288 128) (-960 -288 160) (-976 -288 160)" - "material" "TOOLS/TOOLSNODRAW" + "id" "459" + "plane" "(-576 -864 0) (-336 -736 0) (-336 -736 33)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173398,9 +177457,9 @@ world } side { - "id" "22783" - "plane" "(-848 -416 128) (-848 -416 160) (-832 -416 160)" - "material" "TOOLS/TOOLSNODRAW" + "id" "458" + "plane" "(-320 -768 0) (-576 -896 0) (-576 -896 48)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173409,31 +177468,31 @@ world } side { - "id" "22782" - "plane" "(-976 -288 128) (-976 -288 160) (-848 -416 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "457" + "plane" "(-576 -864 48) (-336 -736 33) (-320 -768 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 176 105" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28779" + "id" "171" side { - "id" "22859" - "plane" "(-832 -416 128) (-848 -416 128) (-864 -400 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "463" + "plane" "(-704 -816 80) (-672 -848 80) (-672 -896 80)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -173442,8 +177501,8 @@ world } side { - "id" "22858" - "plane" "(-848 -416 48) (-832 -416 48) (-856 -392 48)" + "id" "464" + "plane" "(-704 -896 0) (-672 -896 0) (-672 -848 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -173453,21 +177512,21 @@ world } side { - "id" "22857" - "plane" "(-832 -416 48) (-832 -416 128) (-856 -392 128)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "465" + "plane" "(-704 -816 0) (-704 -816 80) (-704 -896 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22856" - "plane" "(-848 -416 48) (-848 -416 128) (-832 -416 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "466" + "plane" "(-672 -896 0) (-672 -896 80) (-672 -848 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173475,10 +177534,10 @@ world } side { - "id" "22855" - "plane" "(-864 -400 48) (-864 -400 128) (-848 -416 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "467" + "plane" "(-672 -848 0) (-672 -848 80) (-704 -816 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173486,10 +177545,10 @@ world } side { - "id" "22854" - "plane" "(-856 -392 48) (-856 -392 128) (-864 -400 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "468" + "plane" "(-704 -896 0) (-704 -896 80) (-672 -896 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173497,20 +177556,20 @@ world } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 108 237" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28781" + "id" "199" side { - "id" "22871" - "plane" "(-918 -346 128) (-910 -338 128) (-888 -360 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "564" + "plane" "(-960 -288 32) (-960 -128 32) (-832 -128 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -173519,8 +177578,8 @@ world } side { - "id" "22870" - "plane" "(-896 -368 48) (-888 -360 48) (-910 -338 48)" + "id" "563" + "plane" "(-960 -128 0) (-960 -288 0) (-832 -416 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -173530,20 +177589,20 @@ world } side { - "id" "22869" - "plane" "(-888 -360 48) (-888 -360 128) (-910 -338 128)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "562" + "plane" "(-960 -288 0) (-960 -128 0) (-960 -128 32)" + "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" "22868" - "plane" "(-918 -346 48) (-918 -346 128) (-896 -368 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "561" + "plane" "(-832 -128 0) (-832 -416 0) (-832 -416 32)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173552,10 +177611,10 @@ world } side { - "id" "22867" - "plane" "(-896 -368 48) (-896 -368 128) (-888 -360 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "560" + "plane" "(-960 -128 0) (-832 -128 0) (-832 -128 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173563,10 +177622,10 @@ world } side { - "id" "22866" - "plane" "(-910 -338 48) (-910 -338 128) (-918 -346 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "559" + "plane" "(-832 -416 0) (-960 -288 0) (-960 -288 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173574,20 +177633,20 @@ world } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 108 237" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28782" + "id" "204" side { - "id" "22877" - "plane" "(-976 -288 128) (-960 -288 128) (-938 -310 128)" - "material" "TOOLS/TOOLSNODRAW" + "id" "576" + "plane" "(-832 -352 32) (-832 -128 32) (-768 -128 32)" + "material" "DEV/DEV_MEASUREGENERIC01B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -173596,8 +177655,8 @@ world } side { - "id" "22876" - "plane" "(-960 -288 48) (-976 -288 48) (-946 -318 48)" + "id" "575" + "plane" "(-832 -128 0) (-832 -352 0) (-768 -352 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -173607,21 +177666,21 @@ world } side { - "id" "22875" - "plane" "(-938 -310 48) (-938 -310 128) (-960 -288 128)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "574" + "plane" "(-832 -352 0) (-832 -128 0) (-832 -128 32)" + "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" "22874" - "plane" "(-960 -288 48) (-960 -288 128) (-976 -288 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "573" + "plane" "(-768 -128 0) (-768 -352 0) (-768 -352 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173629,10 +177688,10 @@ world } side { - "id" "22873" - "plane" "(-976 -288 48) (-976 -288 128) (-946 -318 128)" + "id" "572" + "plane" "(-832 -128 0) (-768 -128 0) (-768 -128 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173640,10 +177699,10 @@ world } side { - "id" "22872" - "plane" "(-946 -318 48) (-946 -318 128) (-938 -310 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" + "id" "571" + "plane" "(-768 -352 0) (-832 -352 0) (-832 -352 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173651,42 +177710,42 @@ world } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 108 237" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28783" + "id" "206" side { - "id" "22883" - "plane" "(-928 -352 128) (-952 -328 128) (-944 -320 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "588" + "plane" "(-768 -256 32) (-768 -128 32) (-672 -128 32)" + "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" "22882" - "plane" "(-952 -328 48) (-928 -352 48) (-920 -344 48)" + "id" "587" + "plane" "(-768 -128 0) (-768 -256 0) (-672 -256 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22881" - "plane" "(-944 -320 48) (-920 -344 48) (-920 -344 128)" - "material" "DEV/REFLECTIVITY_10B" + "id" "586" + "plane" "(-768 -256 0) (-768 -128 0) (-768 -128 32)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173695,10 +177754,10 @@ world } side { - "id" "22880" - "plane" "(-928 -352 48) (-952 -328 48) (-952 -328 128)" + "id" "585" + "plane" "(-672 -128 0) (-672 -256 0) (-672 -256 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173706,10 +177765,10 @@ world } side { - "id" "22879" - "plane" "(-920 -344 48) (-928 -352 48) (-928 -352 128)" + "id" "584" + "plane" "(-768 -128 0) (-672 -128 0) (-672 -128 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173717,10 +177776,10 @@ world } side { - "id" "22878" - "plane" "(-952 -328 48) (-944 -320 48) (-944 -320 128)" + "id" "583" + "plane" "(-672 -256 0) (-768 -256 0) (-768 -256 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173728,20 +177787,19 @@ world } editor { - "color" "190 203 0" - "groupid" "28788" - "visgroupid" "18" + "color" "0 108 237" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28792" + "id" "213" side { - "id" "22937" - "plane" "(-910 -338 240) (-882 -366 240) (-890 -374 240)" + "id" "605" + "plane" "(-768 -256 0) (-768 -352 0) (-672 -352 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -173751,30 +177809,19 @@ world } side { - "id" "22936" - "plane" "(-882 -366 160) (-910 -338 160) (-918 -346 160)" + "id" "604" + "plane" "(-768 -352 0) (-768 -256 0) (-768 -256 32)" "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" "22935" - "plane" "(-882 -366 240) (-910 -338 240) (-910 -338 160)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22934" - "plane" "(-918 -346 240) (-890 -374 240) (-890 -374 160)" + "id" "603" + "plane" "(-672 -256 32) (-672 -256 0) (-672 -352 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -173784,10 +177831,10 @@ world } side { - "id" "22933" - "plane" "(-890 -374 240) (-882 -366 240) (-882 -366 160)" + "id" "602" + "plane" "(-768 -256 32) (-768 -256 0) (-672 -256 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173795,31 +177842,31 @@ world } side { - "id" "22932" - "plane" "(-910 -338 240) (-918 -346 240) (-918 -346 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "601" + "plane" "(-672 -352 0) (-768 -352 0) (-768 -256 32)" + "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" } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 108 237" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28793" + "id" "226" side { - "id" "22943" - "plane" "(-976 -288 256) (-960 -288 256) (-832 -416 256)" - "material" "TOOLS/TOOLSNODRAW" + "id" "624" + "plane" "(-672 -256 64) (-672 -128 64) (-640 -128 64)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -173828,8 +177875,8 @@ world } side { - "id" "22942" - "plane" "(-848 -416 240) (-832 -416 240) (-960 -288 240)" + "id" "623" + "plane" "(-672 -128 0) (-672 -352 0) (-640 -352 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -173839,21 +177886,21 @@ world } side { - "id" "22941" - "plane" "(-960 -288 240) (-832 -416 240) (-832 -416 256)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "622" + "plane" "(-672 -352 0) (-672 -128 0) (-672 -128 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22940" - "plane" "(-976 -288 240) (-960 -288 240) (-960 -288 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "621" + "plane" "(-640 -128 0) (-640 -352 0) (-640 -352 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -173861,8 +177908,8 @@ world } side { - "id" "22939" - "plane" "(-832 -416 240) (-848 -416 240) (-848 -416 256)" + "id" "620" + "plane" "(-672 -128 0) (-640 -128 0) (-640 -128 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -173872,30 +177919,42 @@ world } side { - "id" "22938" - "plane" "(-848 -416 240) (-976 -288 240) (-976 -288 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "619" + "plane" "(-640 -352 0) (-672 -352 0) (-672 -352 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "618" + "plane" "(-672 -352 32) (-672 -256 64) (-640 -256 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 108 237" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28794" + "id" "272" side { - "id" "22949" - "plane" "(-832 -416 240) (-848 -416 240) (-862 -402 240)" + "id" "682" + "plane" "(-480 -752 256) (-480 -656 256) (-464 -640 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -173905,8 +177964,8 @@ world } side { - "id" "22948" - "plane" "(-848 -416 160) (-832 -416 160) (-854 -394 160)" + "id" "681" + "plane" "(-480 -656 0) (-480 -752 0) (-464 -768 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -173916,20 +177975,31 @@ world } side { - "id" "22947" - "plane" "(-832 -416 160) (-832 -416 240) (-854 -394 240)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "680" + "plane" "(-480 -752 0) (-480 -656 0) (-480 -656 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22946" - "plane" "(-848 -416 160) (-848 -416 240) (-832 -416 240)" - "material" "TOOLS/TOOLSNODRAW" + "id" "679" + "plane" "(-352 -656 0) (-352 -752 0) (-352 -752 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "678" + "plane" "(-464 -640 0) (-368 -640 0) (-368 -640 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173938,9 +178008,20 @@ world } side { - "id" "22945" - "plane" "(-862 -402 160) (-862 -402 240) (-848 -416 240)" - "material" "TOOLS/TOOLSNODRAW" + "id" "677" + "plane" "(-368 -768 0) (-464 -768 0) (-464 -768 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "676" + "plane" "(-480 -656 0) (-464 -640 0) (-464 -640 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173949,9 +178030,31 @@ world } side { - "id" "22944" - "plane" "(-854 -394 160) (-854 -394 240) (-862 -402 240)" - "material" "TOOLS/TOOLSNODRAW" + "id" "675" + "plane" "(-368 -640 0) (-352 -656 0) (-352 -656 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "674" + "plane" "(-352 -752 0) (-368 -768 0) (-368 -768 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "673" + "plane" "(-464 -768 0) (-480 -752 0) (-480 -752 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -173960,19 +178063,20 @@ world } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 108 237" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28795" + "id" "316" side { - "id" "22955" - "plane" "(-976 -288 240) (-960 -288 240) (-938 -310 240)" + "id" "784" + "plane" "(-576 192 0) (-576 0 0) (-384 0 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -173982,32 +178086,21 @@ world } side { - "id" "22954" - "plane" "(-960 -288 160) (-976 -288 160) (-946 -318 160)" + "id" "783" + "plane" "(-576 0 0) (-576 192 0) (-576 192 70)" "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" "22953" - "plane" "(-938 -310 160) (-938 -310 240) (-960 -288 240)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22952" - "plane" "(-960 -288 160) (-960 -288 240) (-976 -288 240)" + "id" "782" + "plane" "(-384 192 70) (-384 192 0) (-384 0 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174015,10 +178108,10 @@ world } side { - "id" "22951" - "plane" "(-976 -288 160) (-976 -288 240) (-946 -318 240)" + "id" "781" + "plane" "(-576 192 70) (-576 192 0) (-384 192 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174026,41 +178119,41 @@ world } side { - "id" "22950" - "plane" "(-946 -318 160) (-946 -318 240) (-938 -310 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "780" + "plane" "(-384 0 0) (-576 0 0) (-576 192 70)" + "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" } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 108 237" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28823" + "id" "440" side { - "id" "22961" - "plane" "(-896 -368 48) (-976 -288 48) (-960 -288 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" + "id" "820" + "plane" "(196 -640 96) (196 -260 96) (380 -260 96)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" + "uaxis" "[0 1 0 0] 0.2" + "vaxis" "[1 0 0 0] 0.2" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22960" - "plane" "(-888 -360 0) (-960 -288 0) (-976 -288 0)" + "id" "819" + "plane" "(196 -260 -128) (196 -640 -128) (380 -640 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -174070,21 +178163,21 @@ world } side { - "id" "22959" - "plane" "(-960 -288 0) (-888 -360 0) (-888 -360 48)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "818" + "plane" "(196 -640 -128) (196 -260 -128) (196 -260 96)" + "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" "22958" - "plane" "(-976 -288 0) (-960 -288 0) (-960 -288 48)" + "id" "817" + "plane" "(380 -260 -128) (380 -640 -128) (380 -640 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174092,10 +178185,10 @@ world } side { - "id" "22957" - "plane" "(-896 -368 0) (-976 -288 0) (-976 -288 48)" + "id" "816" + "plane" "(196 -260 -128) (380 -260 -128) (380 -260 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174103,30 +178196,30 @@ world } side { - "id" "22956" - "plane" "(-888 -360 0) (-896 -368 0) (-896 -368 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "815" + "plane" "(380 -640 -128) (196 -640 -128) (196 -640 96)" + "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" + "uaxis" "[1 0 0 0] 0.135" + "vaxis" "[0 0 -1 201] 0.135" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28824" + "id" "461" side { - "id" "22967" - "plane" "(-856 -392 48) (-832 -416 48) (-848 -416 48)" + "id" "856" + "plane" "(384 -640 136) (384 -256 136) (448 -256 136)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -174136,8 +178229,8 @@ world } side { - "id" "22966" - "plane" "(-864 -400 0) (-848 -416 0) (-832 -416 0)" + "id" "855" + "plane" "(384 -256 96) (384 -640 96) (448 -640 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -174147,21 +178240,21 @@ world } side { - "id" "22965" - "plane" "(-856 -392 0) (-832 -416 0) (-832 -416 48)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "854" + "plane" "(384 -640 96) (384 -256 96) (384 -256 136)" + "material" "TEROUST/ARPEGGIO/WALLPAPER/WALLPAPER_FLOWER_INVERT_SMALL" + "uaxis" "[0 1 0 15] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22964" - "plane" "(-832 -416 0) (-848 -416 0) (-848 -416 48)" + "id" "853" + "plane" "(448 -256 96) (448 -640 96) (448 -640 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174169,10 +178262,10 @@ world } side { - "id" "22963" - "plane" "(-848 -416 0) (-864 -400 0) (-864 -400 48)" + "id" "852" + "plane" "(384 -256 96) (448 -256 96) (448 -256 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174180,52 +178273,51 @@ world } side { - "id" "22962" - "plane" "(-864 -400 0) (-856 -392 0) (-856 -392 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "851" + "plane" "(448 -640 96) (384 -640 96) (384 -640 136)" + "material" "TEROUST/ARPEGGIO/WALLPAPER/WALLPAPER_FLOWER_INVERT_SMALL" + "uaxis" "[1 0 0 15] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28828" + "id" "469" side { - "id" "22991" - "plane" "(-864 -400 32) (-896 -368 32) (-888 -360 32)" - "material" "DEV/REFLECTIVITY_30B" + "id" "880" + "plane" "(464 -672 72) (464 -448 72) (512 -448 72)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22990" - "plane" "(-856 -392 0) (-888 -360 0) (-896 -368 0)" + "id" "879" + "plane" "(464 -448 64) (464 -672 64) (512 -672 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22989" - "plane" "(-888 -360 0) (-856 -392 0) (-856 -392 32)" + "id" "878" + "plane" "(464 -672 64) (464 -448 64) (464 -448 72)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -174235,10 +178327,10 @@ world } side { - "id" "22988" - "plane" "(-896 -368 0) (-888 -360 0) (-888 -360 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "877" + "plane" "(512 -448 64) (512 -672 64) (512 -672 72)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 224] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174246,10 +178338,10 @@ world } side { - "id" "22987" - "plane" "(-864 -400 0) (-896 -368 0) (-896 -368 32)" + "id" "876" + "plane" "(464 -448 64) (512 -448 64) (512 -448 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174257,10 +178349,10 @@ world } side { - "id" "22986" - "plane" "(-856 -392 0) (-864 -400 0) (-864 -400 32)" + "id" "875" + "plane" "(512 -672 64) (464 -672 64) (464 -672 72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174268,42 +178360,41 @@ world } editor { - "color" "0 198 239" - "visgroupid" "18" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28836" + "id" "484" side { - "id" "23003" - "plane" "(-872 -408 128) (-904 -376 128) (-896 -368 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "916" + "plane" "(-576 432 64) (-576 448 64) (0 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" "23002" - "plane" "(-864 -400 32) (-896 -368 32) (-904 -376 32)" + "id" "915" + "plane" "(-576 448 0) (-576 432 0) (0 432 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23001" - "plane" "(-896 -368 32) (-864 -400 32) (-864 -400 128)" - "material" "DEV/REFLECTIVITY_10B" + "id" "914" + "plane" "(-576 432 0) (-576 448 0) (-576 448 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -174312,10 +178403,10 @@ world } side { - "id" "23000" - "plane" "(-904 -376 32) (-896 -368 32) (-896 -368 128)" + "id" "913" + "plane" "(0 448 0) (0 432 0) (0 432 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174323,10 +178414,10 @@ world } side { - "id" "22999" - "plane" "(-872 -408 32) (-904 -376 32) (-904 -376 128)" + "id" "912" + "plane" "(-576 448 0) (0 448 0) (0 448 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174334,10 +178425,10 @@ world } side { - "id" "22998" - "plane" "(-864 -400 32) (-872 -408 32) (-872 -408 128)" + "id" "911" + "plane" "(0 432 0) (-576 432 0) (-576 432 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174345,31 +178436,30 @@ world } editor { - "color" "0 164 221" - "visgroupid" "18" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28845" + "id" "497" side { - "id" "23015" - "plane" "(-856 -392 136) (-888 -360 136) (-888 -352 136)" - "material" "DEV/REFLECTIVITY_30B" + "id" "946" + "plane" "(-1024 448 64) (-1024 768 64) (-192 768 64)" + "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23014" - "plane" "(-848 -392 132) (-888 -352 132) (-888 -360 128)" - "material" "DEV/REFLECTIVITY_30B" + "id" "945" + "plane" "(-1024 768 0) (-1024 448 0) (-192 448 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -174378,9 +178468,9 @@ world } side { - "id" "23013" - "plane" "(-888 -352 132) (-848 -392 132) (-848 -392 136)" - "material" "DEV/REFLECTIVITY_30B" + "id" "944" + "plane" "(-1024 768 0) (-1024 768 64) (-1024 448 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -174389,9 +178479,9 @@ world } side { - "id" "23012" - "plane" "(-888 -360 128) (-888 -352 132) (-888 -352 136)" - "material" "DEV/REFLECTIVITY_30B" + "id" "943" + "plane" "(-192 768 64) (-192 768 0) (-192 448 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -174400,42 +178490,42 @@ world } side { - "id" "23011" - "plane" "(-856 -392 128) (-888 -360 128) (-888 -360 136)" + "id" "942" + "plane" "(-192 768 0) (-192 768 64) (-1024 768 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23010" - "plane" "(-856 -392 136) (-848 -392 136) (-848 -392 132)" - "material" "DEV/REFLECTIVITY_30B" + "id" "941" + "plane" "(-192 448 64) (-192 448 0) (-1024 448 0)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 164 221" - "visgroupid" "18" + "color" "0 158 183" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28852" + "id" "514" side { - "id" "23027" - "plane" "(-832 -416 256) (-960 -288 256) (-960 -280 256)" - "material" "DEV/REFLECTIVITY_30B" + "id" "970" + "plane" "(-1040 448 320) (-1040 768 320) (-640 768 320)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -174444,9 +178534,9 @@ world } side { - "id" "23026" - "plane" "(-828 -412 252) (-960 -280 252) (-960 -288 248)" - "material" "DEV/REFLECTIVITY_30B" + "id" "969" + "plane" "(-1040 768 64) (-1040 448 64) (-640 448 64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -174455,9 +178545,9 @@ world } side { - "id" "23025" - "plane" "(-960 -280 252) (-828 -412 252) (-828 -412 256)" - "material" "DEV/REFLECTIVITY_30B" + "id" "968" + "plane" "(-1040 448 64) (-1040 768 64) (-1040 768 320)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -174466,10 +178556,10 @@ world } side { - "id" "23024" - "plane" "(-960 -288 248) (-960 -280 252) (-960 -280 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "id" "967" + "plane" "(-640 768 64) (-640 448 64) (-640 448 320)" + "material" "DEV/DEV_MEASURERAILS01" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174477,10 +178567,10 @@ world } side { - "id" "23023" - "plane" "(-832 -416 248) (-960 -288 248) (-960 -288 256)" + "id" "966" + "plane" "(-1040 768 64) (-640 768 64) (-640 768 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174488,9 +178578,9 @@ world } side { - "id" "23022" - "plane" "(-832 -416 256) (-828 -412 256) (-828 -412 252)" - "material" "DEV/REFLECTIVITY_30B" + "id" "965" + "plane" "(-640 448 64) (-1040 448 64) (-1040 448 320)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -174499,21 +178589,21 @@ world } editor { - "color" "0 164 221" - "visgroupid" "18" + "color" "0 108 237" + "visgroupid" "25" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28856" + "id" "744" side { - "id" "23039" - "plane" "(-1024 -288 160) (-1024 -272 160) (-960 -272 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "9648" + "plane" "(544 -448 64) (544 -320 64) (896 -320 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174521,8 +178611,8 @@ world } side { - "id" "23038" - "plane" "(-1024 -272 32) (-1024 -288 32) (-960 -288 32)" + "id" "9647" + "plane" "(544 -320 0) (544 -448 0) (896 -448 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -174532,8 +178622,8 @@ world } side { - "id" "23037" - "plane" "(-1024 -288 32) (-1024 -272 32) (-1024 -272 160)" + "id" "9646" + "plane" "(544 -448 0) (544 -320 0) (544 -320 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -174543,30 +178633,30 @@ world } side { - "id" "23036" - "plane" "(-960 -272 32) (-960 -288 32) (-960 -288 160)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "9645" + "plane" "(896 -320 0) (896 -448 0) (896 -448 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23035" - "plane" "(-1024 -272 32) (-960 -272 32) (-960 -272 160)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "9644" + "plane" "(544 -320 0) (896 -320 0) (896 -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" "23034" - "plane" "(-960 -288 32) (-1024 -288 32) (-1024 -288 160)" + "id" "9643" + "plane" "(896 -448 0) (544 -448 0) (544 -448 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -174576,21 +178666,22 @@ world } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 226 179" + "groupid" "743" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28860" + "id" "747" side { - "id" "23051" - "plane" "(-1024 -144 160) (-1024 -128 160) (-960 -128 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "9654" + "plane" "(512 -832 64) (512 -448 64) (832 -448 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174598,8 +178689,8 @@ world } side { - "id" "23050" - "plane" "(-1024 -128 32) (-1024 -144 32) (-960 -144 32)" + "id" "9653" + "plane" "(512 -448 0) (512 -832 0) (832 -832 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -174609,10 +178700,10 @@ world } side { - "id" "23049" - "plane" "(-1024 -144 32) (-1024 -128 32) (-1024 -128 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "9652" + "plane" "(512 -832 0) (512 -448 0) (512 -448 64)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174620,19 +178711,19 @@ world } side { - "id" "23048" - "plane" "(-960 -128 32) (-960 -144 32) (-960 -144 160)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "9651" + "plane" "(832 -448 0) (832 -832 0) (832 -832 64)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23047" - "plane" "(-1024 -128 32) (-960 -128 32) (-960 -128 160)" + "id" "9650" + "plane" "(512 -448 0) (832 -448 0) (832 -448 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -174642,32 +178733,33 @@ world } side { - "id" "23046" - "plane" "(-960 -144 32) (-1024 -144 32) (-1024 -144 160)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "9649" + "plane" "(832 -832 0) (512 -832 0) (512 -832 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 238 147" - "visgroupid" "18" + "color" "0 226 179" + "groupid" "746" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28861" + "id" "753" side { - "id" "23063" - "plane" "(-1024 -272 160) (-1024 -144 160) (-976 -144 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "1418" + "plane" "(832 -832 64) (672 -1472 64) (320 -1472 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174675,8 +178767,8 @@ world } side { - "id" "23062" - "plane" "(-1024 -144 32) (-1024 -272 32) (-976 -272 32)" + "id" "1417" + "plane" "(672 -1472 0) (832 -832 0) (512 -832 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -174686,10 +178778,10 @@ world } side { - "id" "23061" - "plane" "(-1024 -272 32) (-1024 -144 32) (-1024 -144 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "1416" + "plane" "(512 -832 64) (320 -1472 64) (320 -1472 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174697,19 +178789,19 @@ world } side { - "id" "23060" - "plane" "(-976 -144 32) (-976 -272 32) (-976 -272 160)" - "material" "CS_ASSAULT/METALWALL002A" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 128] 0.25" + "id" "1415" + "plane" "(672 -1472 64) (832 -832 64) (832 -832 0)" + "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" "23059" - "plane" "(-1024 -144 32) (-976 -144 32) (-976 -144 160)" + "id" "1414" + "plane" "(832 -832 64) (512 -832 64) (512 -832 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -174719,8 +178811,8 @@ world } side { - "id" "23058" - "plane" "(-976 -272 32) (-1024 -272 32) (-1024 -272 160)" + "id" "1413" + "plane" "(320 -1472 64) (672 -1472 64) (672 -1472 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -174730,21 +178822,22 @@ world } editor { - "color" "0 102 211" - "visgroupid" "18" + "color" "0 226 179" + "groupid" "752" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28887" + "id" "966" side { - "id" "23111" - "plane" "(-1024 -176 160) (-1024 -144 160) (-960 -144 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "1571" + "plane" "(960 512 96) (704 512 96) (704 832 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174752,21 +178845,21 @@ world } side { - "id" "23110" - "plane" "(-1024 -144 128) (-1024 -176 136) (-960 -176 136)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0.970142 -0.242536 341.96] 0.125" + "id" "1570" + "plane" "(704 832 64) (704 512 64) (960 512 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" "23109" - "plane" "(-1024 -144 160) (-1024 -176 160) (-1024 -176 136)" + "id" "1569" + "plane" "(960 512 64) (704 512 64) (704 512 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174774,21 +178867,21 @@ world } side { - "id" "23108" - "plane" "(-960 -144 128) (-960 -176 136) (-960 -176 160)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "1568" + "plane" "(960 832 64) (960 512 64) (960 512 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23107" - "plane" "(-1024 -144 128) (-960 -144 128) (-960 -144 160)" + "id" "1567" + "plane" "(704 512 64) (704 832 64) (704 832 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174796,8 +178889,8 @@ world } side { - "id" "23106" - "plane" "(-960 -176 136) (-1024 -176 136) (-1024 -176 160)" + "id" "1566" + "plane" "(704 832 64) (960 832 64) (960 832 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -174807,19 +178900,20 @@ world } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 226 179" + "groupid" "965" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28888" + "id" "975" side { - "id" "23117" - "plane" "(-1024 -272 160) (-1024 -240 160) (-960 -240 160)" + "id" "1607" + "plane" "(448 -64 256) (448 0 256) (576 0 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -174829,20 +178923,20 @@ world } side { - "id" "23116" - "plane" "(-1024 -240 136) (-1024 -272 128) (-960 -272 128)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0.970142 0.242536 -202.083] 0.125" + "id" "1606" + "plane" "(448 0 64) (448 -64 64) (576 -64 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" "23115" - "plane" "(-1024 -272 128) (-1024 -240 136) (-1024 -240 160)" - "material" "TOOLS/TOOLSNODRAW" + "id" "1605" + "plane" "(576 0 64) (576 -64 64) (576 -64 256)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -174851,19 +178945,19 @@ world } side { - "id" "23114" - "plane" "(-960 -272 160) (-960 -240 160) (-960 -240 136)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "1604" + "plane" "(448 -64 64) (448 0 64) (448 0 256)" + "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" "23113" - "plane" "(-960 -272 128) (-1024 -272 128) (-1024 -272 160)" + "id" "1603" + "plane" "(576 -64 64) (448 -64 64) (448 -64 256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -174873,9 +178967,9 @@ world } side { - "id" "23112" - "plane" "(-1024 -240 136) (-960 -240 136) (-960 -240 160)" - "material" "TOOLS/TOOLSNODRAW" + "id" "1602" + "plane" "(448 0 64) (576 0 64) (576 0 256)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -174884,21 +178978,20 @@ world } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 158 183" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "28889" + "id" "1000" side { - "id" "23123" - "plane" "(-1024 -240 160) (-1024 -208 160) (-960 -208 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "1655" + "plane" "(448 640 96) (448 704 96) (640 896 96)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 64] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174906,21 +178999,21 @@ world } side { - "id" "23122" - "plane" "(-1024 -208 138) (-1024 -240 136) (-960 -240 136)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0.998052 0.0623794 47.514] 0.125" + "id" "1654" + "plane" "(672 864 64) (640 896 64) (448 704 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" "23121" - "plane" "(-1024 -240 136) (-1024 -208 138) (-1024 -208 160)" + "id" "1653" + "plane" "(448 640 96) (672 864 96) (672 864 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174928,21 +179021,21 @@ world } side { - "id" "23120" - "plane" "(-960 -240 160) (-960 -208 160) (-960 -208 138)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" + "id" "1652" + "plane" "(672 864 96) (640 896 96) (640 896 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" "23119" - "plane" "(-1024 -208 138) (-960 -208 138) (-960 -208 160)" + "id" "1651" + "plane" "(448 704 96) (448 640 96) (448 640 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -174950,9 +179043,9 @@ world } side { - "id" "23118" - "plane" "(-960 -240 136) (-1024 -240 136) (-1024 -240 160)" - "material" "TOOLS/TOOLSNODRAW" + "id" "1650" + "plane" "(640 896 96) (448 704 96) (448 704 64)" + "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -174961,48747 +179054,1666 @@ world } editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 226 179" + "groupid" "999" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28890" - side + "id" "287938" + editor { - "id" "23129" - "plane" "(-1024 -208 160) (-1024 -176 160) (-960 -176 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "276643" + editor { - "id" "23128" - "plane" "(-1024 -176 136) (-1024 -208 138) (-960 -208 138)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 0.998052 -0.0623775 185.246] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "189 214 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "276644" + editor { - "id" "23127" - "plane" "(-1024 -176 160) (-1024 -208 160) (-1024 -208 138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "189 214 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "276654" + editor { - "id" "23126" - "plane" "(-960 -176 136) (-960 -208 138) (-960 -208 160)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "189 214 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "276659" + editor { - "id" "23125" - "plane" "(-960 -208 138) (-1024 -208 138) (-1024 -208 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "189 214 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "276770" + editor { - "id" "23124" - "plane" "(-1024 -176 136) (-960 -176 136) (-960 -176 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "223 224 0" + "groupid" "276836" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "276776" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "223 224 0" + "groupid" "276836" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28902" - side + "id" "276781" + editor { - "id" "23141" - "plane" "(-976 -272 32) (-976 -144 32) (-960 -144 32)" - "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" + "color" "223 224 0" + "groupid" "276836" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "276787" + editor { - "id" "23140" - "plane" "(-976 -144 0) (-976 -272 0) (-960 -272 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "223 224 0" + "groupid" "276836" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "276836" + editor { - "id" "23139" - "plane" "(-976 -272 0) (-976 -144 0) (-976 -144 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "223 224 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "269310" + editor { - "id" "23138" - "plane" "(-960 -144 0) (-960 -272 0) (-960 -272 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "253 102 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "269671" + editor { - "id" "23137" - "plane" "(-976 -144 0) (-960 -144 0) (-960 -144 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "220 220 220" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "266581" + editor { - "id" "23136" - "plane" "(-960 -272 0) (-976 -272 0) (-976 -272 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "175 108 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "266588" editor { - "color" "0 138 183" - "visgroupid" "18" + "color" "175 108 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28938" - side + "id" "266591" + editor { - "id" "23153" - "plane" "(-1024 -288 164) (-1024 -128 164) (-960 -128 164)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "175 108 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "266594" + editor { - "id" "23152" - "plane" "(-1024 -128 160) (-1024 -288 160) (-960 -288 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "175 108 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "266597" + editor { - "id" "23151" - "plane" "(-1024 -288 160) (-1024 -128 160) (-1024 -128 164)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "175 108 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "266794" + editor { - "id" "23150" - "plane" "(-960 -128 160) (-960 -288 160) (-960 -288 164)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "135 228 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "266795" + editor { - "id" "23149" - "plane" "(-1024 -128 160) (-960 -128 160) (-960 -128 164)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "135 228 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "266835" + editor { - "id" "23148" - "plane" "(-960 -288 160) (-1024 -288 160) (-1024 -288 164)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "183 136 0" + "groupid" "266842" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "266842" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "183 136 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28942" - side + "id" "262575" + editor { - "id" "23165" - "plane" "(-1024 -288 244) (-1024 -268 244) (-960 -268 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "262580" + editor { - "id" "23164" - "plane" "(-1024 -268 164) (-1024 -288 164) (-960 -288 164)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "260343" + editor { - "id" "23163" - "plane" "(-1024 -288 164) (-1024 -268 164) (-1024 -268 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "163 204 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "257848" + editor { - "id" "23162" - "plane" "(-960 -268 164) (-960 -288 164) (-960 -288 244)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "139 224 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "257884" + editor { - "id" "23161" - "plane" "(-1024 -268 164) (-960 -268 164) (-960 -268 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "139 224 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "253889" + editor { - "id" "23160" - "plane" "(-960 -288 164) (-1024 -288 164) (-1024 -288 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "237 102 0" + "groupid" "253929" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "253929" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "237 102 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28945" - side + "id" "254368" + editor { - "id" "23177" - "plane" "(-1024 -148 244) (-1024 -128 244) (-960 -128 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "179 144 0" + "groupid" "254481" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "254481" + editor { - "id" "23176" - "plane" "(-1024 -128 164) (-1024 -148 164) (-960 -148 164)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "179 144 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "254676" + editor { - "id" "23175" - "plane" "(-1024 -148 164) (-1024 -128 164) (-1024 -128 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "139 224 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "254685" + editor { - "id" "23174" - "plane" "(-960 -128 164) (-960 -148 164) (-960 -148 244)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "139 224 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "245243" + editor { - "id" "23173" - "plane" "(-1024 -128 164) (-960 -128 164) (-960 -128 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "201 138 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "170827" + editor { - "id" "23172" - "plane" "(-960 -148 164) (-1024 -148 164) (-1024 -148 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "220 220 220" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "171409" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "223 212 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28946" - side + "id" "171410" + editor { - "id" "23189" - "plane" "(-1024 -228 244) (-1024 -188 244) (-960 -188 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "223 212 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "171414" + editor { - "id" "23188" - "plane" "(-1024 -188 164) (-1024 -228 164) (-960 -228 164)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "223 212 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "171438" + editor { - "id" "23187" - "plane" "(-1024 -228 164) (-1024 -188 164) (-1024 -188 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23186" - "plane" "(-960 -188 164) (-960 -228 164) (-960 -228 244)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23185" - "plane" "(-1024 -188 164) (-960 -188 164) (-960 -188 244)" - "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" "23184" - "plane" "(-960 -228 164) (-1024 -228 164) (-1024 -228 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "223 212 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "167944" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "156 245 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28964" - side - { - "id" "23225" - "plane" "(-1024 -288 256) (-1024 -128 256) (-960 -128 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23224" - "plane" "(-1024 -128 244) (-1024 -288 244) (-960 -288 244)" - "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" "167969" + editor { - "id" "23223" - "plane" "(-1024 -288 244) (-1024 -128 244) (-1024 -128 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "156 245 0" + "groupid" "167944" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "167970" + editor { - "id" "23222" - "plane" "(-960 -128 244) (-960 -288 244) (-960 -288 256)" - "material" "BRICK/HR_BRICK/BRICK_C" - "uaxis" "[0 1 0 0] 0.125" - "vaxis" "[0 0 -1 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "156 245 0" + "groupid" "167969" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "167971" + editor { - "id" "23221" - "plane" "(-1024 -128 244) (-960 -128 244) (-960 -128 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "156 245 0" + "groupid" "167970" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "167977" + editor { - "id" "23220" - "plane" "(-960 -288 244) (-1024 -288 244) (-1024 -288 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "156 245 0" + "groupid" "167970" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "167983" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "156 245 0" + "groupid" "167944" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28968" - side + "id" "167984" + editor { - "id" "23237" - "plane" "(-1024 -328 304) (-1024 -128 304) (-984 -128 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "156 245 0" + "groupid" "167983" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "167985" + editor { - "id" "23236" - "plane" "(-1024 -128 256) (-1024 -328 256) (-960 -328 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "156 245 0" + "groupid" "167984" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "167989" + editor { - "id" "23235" - "plane" "(-1024 -328 256) (-1024 -128 256) (-1024 -128 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "156 245 0" + "groupid" "167984" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "155031" + editor { - "id" "23234" - "plane" "(-960 -128 256) (-960 -328 256) (-984 -328 304)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "220 220 220" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "155100" + editor { - "id" "23233" - "plane" "(-1024 -128 256) (-960 -128 256) (-984 -128 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "220 220 220" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "148044" + editor { - "id" "23232" - "plane" "(-960 -328 256) (-1024 -328 256) (-1024 -328 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "213 106 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "142100" editor { - "color" "0 160 237" - "visgroupid" "18" + "color" "220 220 220" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28986" - side + "id" "143662" + editor { - "id" "23285" - "plane" "(-848 -576 160) (-832 -576 160) (-960 -704 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "220 220 220" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "119501" + editor { - "id" "23284" - "plane" "(-976 -704 128) (-960 -704 128) (-832 -576 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "115540" + editor { - "id" "23283" - "plane" "(-832 -576 128) (-960 -704 128) (-960 -704 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "187 124 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "107639" + editor { - "id" "23282" - "plane" "(-960 -704 128) (-976 -704 128) (-976 -704 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "239 252 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "100786" + editor { - "id" "23281" - "plane" "(-848 -576 128) (-832 -576 128) (-832 -576 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "162 131 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "97407" + editor { - "id" "23280" - "plane" "(-976 -704 128) (-848 -576 128) (-848 -576 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "97413" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 226 179" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28987" - side + "id" "97428" + editor { - "id" "23291" - "plane" "(-864 -592 240) (-848 -576 240) (-832 -576 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "95488" + editor { - "id" "23290" - "plane" "(-856 -600 160) (-832 -576 160) (-848 -576 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "124 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "95663" + editor { - "id" "23289" - "plane" "(-832 -576 160) (-856 -600 160) (-856 -600 240)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "124 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "95679" + editor { - "id" "23288" - "plane" "(-848 -576 160) (-832 -576 160) (-832 -576 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "124 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "70187" + editor { - "id" "23287" - "plane" "(-864 -592 160) (-848 -576 160) (-848 -576 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "70392" + editor { - "id" "23286" - "plane" "(-856 -600 160) (-864 -592 160) (-864 -592 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "70398" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 226 179" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28989" - side + "id" "61486" + editor { - "id" "23297" - "plane" "(-952 -664 240) (-928 -640 240) (-920 -648 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "217 230 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56748" + editor { - "id" "23296" - "plane" "(-928 -640 160) (-952 -664 160) (-944 -672 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56767" + editor { - "id" "23295" - "plane" "(-920 -648 160) (-944 -672 160) (-944 -672 240)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56772" + editor { - "id" "23294" - "plane" "(-952 -664 160) (-928 -640 160) (-928 -640 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56777" + editor { - "id" "23293" - "plane" "(-928 -640 160) (-920 -648 160) (-920 -648 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56782" + editor { - "id" "23292" - "plane" "(-944 -672 160) (-952 -664 160) (-952 -664 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "56787" editor { - "color" "190 203 0" - "groupid" "28988" - "visgroupid" "18" + "color" "128 225 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28990" - side + "id" "56802" + editor { - "id" "23303" - "plane" "(-896 -608 240) (-872 -584 240) (-864 -592 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56812" + editor { - "id" "23302" - "plane" "(-872 -584 160) (-896 -608 160) (-888 -616 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56817" + editor { - "id" "23301" - "plane" "(-864 -592 160) (-888 -616 160) (-888 -616 240)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56822" + editor { - "id" "23300" - "plane" "(-896 -608 160) (-872 -584 160) (-872 -584 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56827" + editor { - "id" "23299" - "plane" "(-872 -584 160) (-864 -592 160) (-864 -592 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56832" + editor { - "id" "23298" - "plane" "(-888 -616 160) (-896 -608 160) (-896 -608 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "56837" editor { - "color" "190 203 0" - "groupid" "28988" - "visgroupid" "18" + "color" "128 225 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28991" - side + "id" "56842" + editor { - "id" "23309" - "plane" "(-920 -648 240) (-888 -616 240) (-880 -624 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56847" + editor { - "id" "23308" - "plane" "(-888 -616 160) (-920 -648 160) (-912 -656 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56857" + editor { - "id" "23307" - "plane" "(-880 -624 160) (-912 -656 160) (-912 -656 240)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56867" + editor { - "id" "23306" - "plane" "(-920 -648 160) (-888 -616 160) (-888 -616 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56877" + editor { - "id" "23305" - "plane" "(-888 -616 160) (-880 -624 160) (-880 -624 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56882" + editor { - "id" "23304" - "plane" "(-912 -656 160) (-920 -648 160) (-920 -648 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "56888" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "128 225 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28992" - side + "id" "56893" + editor { - "id" "23315" - "plane" "(-936 -680 240) (-960 -704 240) (-976 -704 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56898" + editor { - "id" "23314" - "plane" "(-944 -672 160) (-976 -704 160) (-960 -704 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56903" + editor { - "id" "23313" - "plane" "(-936 -680 160) (-960 -704 160) (-960 -704 240)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56908" + editor { - "id" "23312" - "plane" "(-960 -704 160) (-976 -704 160) (-976 -704 240)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56913" + editor { - "id" "23311" - "plane" "(-976 -704 160) (-944 -672 160) (-944 -672 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "56918" + editor { - "id" "23310" - "plane" "(-944 -672 160) (-936 -680 160) (-936 -680 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "128 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "44471" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "169 190 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "28993" - side + "id" "44479" + editor { - "id" "23321" - "plane" "(-848 -576 256) (-832 -576 256) (-960 -704 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "169 190 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "41734" + editor { - "id" "23320" - "plane" "(-976 -704 240) (-960 -704 240) (-832 -576 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "41848" + editor { - "id" "23319" - "plane" "(-832 -576 240) (-960 -704 240) (-960 -704 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "31888" + editor { - "id" "23318" - "plane" "(-960 -704 240) (-976 -704 240) (-976 -704 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 237 122" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "31889" + editor { - "id" "23317" - "plane" "(-848 -576 240) (-832 -576 240) (-832 -576 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 237 122" + "groupid" "31888" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "31900" + editor { - "id" "23316" - "plane" "(-976 -704 240) (-848 -576 240) (-848 -576 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 237 122" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "31901" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 237 122" + "groupid" "31900" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "29010" - side - { - "id" "23363" - "plane" "(-848 -576 48) (-832 -576 48) (-960 -704 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23362" - "plane" "(-976 -704 16) (-960 -704 16) (-832 -576 16)" - "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" "23361" - "plane" "(-832 -576 16) (-960 -704 16) (-960 -704 48)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23360" - "plane" "(-960 -704 16) (-976 -704 16) (-976 -704 48)" - "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" "23359" - "plane" "(-848 -576 16) (-832 -576 16) (-832 -576 48)" - "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" "23358" - "plane" "(-976 -704 16) (-848 -576 16) (-848 -576 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "32585" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "153 242 0" + "groupid" "32777" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "29011" - side - { - "id" "23369" - "plane" "(-864 -592 128) (-848 -576 128) (-832 -576 128)" - "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" "23368" - "plane" "(-856 -600 48) (-832 -576 48) (-848 -576 48)" - "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" "23367" - "plane" "(-832 -576 48) (-856 -600 48) (-856 -600 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23366" - "plane" "(-848 -576 48) (-832 -576 48) (-832 -576 128)" - "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" "32586" + editor { - "id" "23365" - "plane" "(-864 -592 48) (-848 -576 48) (-848 -576 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "153 242 0" + "groupid" "32585" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "32587" + editor { - "id" "23364" - "plane" "(-856 -600 48) (-864 -592 48) (-864 -592 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "153 242 0" + "groupid" "32586" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "32591" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "153 242 0" + "groupid" "32586" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "29013" - side + "id" "32608" + editor { - "id" "23375" - "plane" "(-952 -664 128) (-928 -640 128) (-920 -648 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "153 242 0" + "groupid" "32777" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "32609" + editor { - "id" "23374" - "plane" "(-928 -640 48) (-952 -664 48) (-944 -672 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "153 242 0" + "groupid" "32608" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "32610" + editor { - "id" "23373" - "plane" "(-920 -648 48) (-944 -672 48) (-944 -672 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "153 242 0" + "groupid" "32609" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "32616" + editor { - "id" "23372" - "plane" "(-952 -664 48) (-928 -640 48) (-928 -640 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "153 242 0" + "groupid" "32609" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "32777" + editor { - "id" "23371" - "plane" "(-928 -640 48) (-920 -648 48) (-920 -648 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "153 242 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "28538" + editor { - "id" "23370" - "plane" "(-944 -672 48) (-952 -664 48) (-952 -664 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "102 235 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "28788" editor { "color" "190 203 0" - "groupid" "29012" - "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "29014" - side - { - "id" "23381" - "plane" "(-896 -608 128) (-872 -584 128) (-864 -592 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23380" - "plane" "(-872 -584 48) (-896 -608 48) (-888 -616 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23379" - "plane" "(-864 -592 48) (-888 -616 48) (-888 -616 128)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23378" - "plane" "(-896 -608 48) (-872 -584 48) (-872 -584 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23377" - "plane" "(-872 -584 48) (-864 -592 48) (-864 -592 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23376" - "plane" "(-888 -616 48) (-896 -608 48) (-896 -608 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "28988" editor { "color" "190 203 0" - "groupid" "29012" - "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "29015" - side - { - "id" "23387" - "plane" "(-920 -648 128) (-888 -616 128) (-880 -624 128)" - "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" "23386" - "plane" "(-888 -616 48) (-920 -648 48) (-912 -656 48)" - "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" "23385" - "plane" "(-880 -624 48) (-912 -656 48) (-912 -656 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23384" - "plane" "(-920 -648 48) (-888 -616 48) (-888 -616 128)" - "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" "23383" - "plane" "(-888 -616 48) (-880 -624 48) (-880 -624 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23382" - "plane" "(-912 -656 48) (-920 -648 48) (-920 -648 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "29012" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "190 203 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "29016" - side - { - "id" "23393" - "plane" "(-936 -680 128) (-960 -704 128) (-976 -704 128)" - "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" "23392" - "plane" "(-944 -672 48) (-976 -704 48) (-960 -704 48)" - "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" "23391" - "plane" "(-936 -680 48) (-960 -704 48) (-960 -704 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23390" - "plane" "(-960 -704 48) (-976 -704 48) (-976 -704 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23389" - "plane" "(-976 -704 48) (-944 -672 48) (-944 -672 128)" - "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" "23388" - "plane" "(-944 -672 48) (-936 -680 48) (-936 -680 128)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "26754" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "0 154 255" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "29018" - side - { - "id" "23405" - "plane" "(-1024 -704 16) (-1024 -576 16) (-832 -576 16)" - "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" "23404" - "plane" "(-1024 -576 0) (-1024 -704 0) (-960 -704 0)" - "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" "23403" - "plane" "(-1024 -704 0) (-1024 -576 0) (-1024 -576 16)" - "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" "23402" - "plane" "(-832 -576 0) (-960 -704 0) (-960 -704 16)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23401" - "plane" "(-1024 -576 0) (-832 -576 0) (-832 -576 16)" - "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" "26755" + editor { - "id" "23400" - "plane" "(-960 -704 0) (-1024 -704 0) (-1024 -704 16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 136 201" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "26784" editor { - "color" "0 194 151" - "visgroupid" "18" + "color" "0 202 115" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "29021" - side + "id" "26788" + editor { - "id" "23415" - "plane" "(-1216 -688 256) (-960 -688 256) (-1000 -648 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 192 105" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "21153" + editor { - "id" "23414" - "plane" "(-1176 -648 256) (-1176 -648 336) (-1216 -688 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "25783" + editor { - "id" "23413" - "plane" "(-960 -688 256) (-1000 -648 336) (-1000 -648 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "150 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "18855" + editor { - "id" "23412" - "plane" "(-1216 -688 256) (-1176 -648 336) (-1000 -648 336)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "7772" + editor { - "id" "23411" - "plane" "(-1176 -648 256) (-1000 -648 256) (-1000 -648 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "2395" editor { - "color" "0 106 147" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "29024" - side + "id" "2628" + editor { - "id" "23427" - "plane" "(-1216 -704 256) (-1216 -688 256) (-976 -688 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "2630" + editor { - "id" "23426" - "plane" "(-1216 -688 0) (-1216 -704 0) (-976 -704 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "2632" + editor { - "id" "23425" - "plane" "(-1216 -704 0) (-1216 -688 0) (-1216 -688 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "2638" + editor { - "id" "23424" - "plane" "(-976 -688 0) (-976 -704 0) (-976 -704 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "2644" + editor { - "id" "23423" - "plane" "(-1216 -688 0) (-976 -688 0) (-976 -688 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "2648" + editor { - "id" "23422" - "plane" "(-976 -704 0) (-1216 -704 0) (-1216 -704 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "2652" editor { - "color" "0 238 147" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3100" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "29061" - side + "id" "2658" + editor { - "id" "23554" - "plane" "(-852 -604 160) (-876 -628 160) (-880 -624 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "2664" + editor { - "id" "23553" - "plane" "(-856 -600 152) (-880 -624 152) (-876 -628 156)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "2666" + editor { - "id" "23552" - "plane" "(-852 -604 156) (-876 -628 156) (-876 -628 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "2668" + editor { - "id" "23551" - "plane" "(-880 -624 160) (-876 -628 160) (-876 -628 156)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "2670" + editor { - "id" "23550" - "plane" "(-880 -624 152) (-856 -600 152) (-856 -600 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "2672" + editor { - "id" "23549" - "plane" "(-856 -600 152) (-852 -604 156) (-852 -604 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "3100" editor { - "color" "0 164 221" - "visgroupid" "18" + "color" "244 169 0" + "groupid" "3955" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "29062" - side + "id" "3955" + editor { - "id" "23560" - "plane" "(-908 -660 160) (-932 -684 160) (-936 -680 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "244 169 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "743" + editor { - "id" "23559" - "plane" "(-912 -656 152) (-936 -680 152) (-932 -684 156)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "746" + editor { - "id" "23558" - "plane" "(-908 -660 156) (-932 -684 156) (-932 -684 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "752" + editor { - "id" "23557" - "plane" "(-936 -680 160) (-932 -684 160) (-932 -684 156)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "926" + editor { - "id" "23556" - "plane" "(-936 -680 152) (-912 -656 152) (-912 -656 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side + } + group + { + "id" "965" + editor { - "id" "23555" - "plane" "(-912 -656 152) (-908 -660 156) (-908 -660 160)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } + } + group + { + "id" "999" editor { - "color" "0 164 221" - "visgroupid" "18" + "color" "0 226 179" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "29067" - side + "id" "1004" + editor { - "id" "23578" - "plane" "(-852 -604 48) (-876 -628 48) (-880 -624 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23577" - "plane" "(-856 -600 40) (-880 -624 40) (-876 -628 44)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23576" - "plane" "(-852 -604 44) (-876 -628 44) (-876 -628 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23575" - "plane" "(-880 -624 48) (-876 -628 48) (-876 -628 44)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23574" - "plane" "(-880 -624 40) (-856 -600 40) (-856 -600 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23573" - "plane" "(-856 -600 40) (-852 -604 44) (-852 -604 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 164 221" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "29068" - side - { - "id" "23584" - "plane" "(-908 -660 48) (-932 -684 48) (-936 -680 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23583" - "plane" "(-912 -656 40) (-936 -680 40) (-932 -684 44)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23582" - "plane" "(-908 -660 44) (-932 -684 44) (-932 -684 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23581" - "plane" "(-936 -680 48) (-932 -684 48) (-932 -684 44)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23580" - "plane" "(-936 -680 40) (-912 -656 40) (-912 -656 48)" - "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" "23579" - "plane" "(-912 -656 40) (-908 -660 44) (-908 -660 48)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 164 221" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "29387" - side - { - "id" "23596" - "plane" "(-828 -580 256) (-960 -712 256) (-960 -704 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23595" - "plane" "(-832 -576 248) (-960 -704 248) (-960 -712 252)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23594" - "plane" "(-828 -580 252) (-960 -712 252) (-960 -712 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23593" - "plane" "(-960 -704 256) (-960 -712 256) (-960 -712 252)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23592" - "plane" "(-960 -704 248) (-832 -576 248) (-832 -576 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23591" - "plane" "(-832 -576 248) (-828 -580 252) (-828 -580 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 164 221" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "29465" - side - { - "id" "23620" - "plane" "(1456 -2768 64) (1456 -2120 64) (1472 -2120 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23619" - "plane" "(1456 -2120 -128) (1456 -2768 -128) (1472 -2768 -128)" - "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" "23618" - "plane" "(1456 -2768 -128) (1456 -2120 -128) (1456 -2120 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23617" - "plane" "(1472 -2120 -128) (1472 -2768 -128) (1472 -2768 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" "23616" - "plane" "(1456 -2120 -128) (1472 -2120 -128) (1472 -2120 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" "23615" - "plane" "(1472 -2768 -128) (1456 -2768 -128) (1456 -2768 64)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 149 238" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "29476" - side - { - "id" "23660" - "plane" "(1024 -3584 -128) (1024 -1312 -128) (1472 -1312 -128)" - "material" "RYAN_DEV/DEV_BLACK" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "23659" - "plane" "(1024 -1312 -192) (1024 -3584 -192) (1472 -3584 -192)" - "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" "23658" - "plane" "(1024 -3584 -192) (1024 -1312 -192) (1024 -1312 -128)" - "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" "23657" - "plane" "(1472 -1312 -192) (1472 -3584 -192) (1472 -3584 -128)" - "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" "23656" - "plane" "(1024 -1312 -192) (1472 -1312 -192) (1472 -1312 -128)" - "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" "23655" - "plane" "(1472 -3584 -192) (1024 -3584 -192) (1024 -3584 -128)" - "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 173 158" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26658" - side - { - "id" "20441" - "plane" "(320 -2304 256) (320 -1984 256) (640 -1984 256)" - "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" "20440" - "plane" "(320 -1984 240) (320 -2304 240) (640 -2304 240)" - "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" "20439" - "plane" "(320 -2304 240) (320 -1984 240) (320 -1984 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 1 0 133] 0.25" - "vaxis" "[0 0 -1 91] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20438" - "plane" "(640 -1984 240) (640 -2304 240) (640 -2304 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 1 0 133] 0.25" - "vaxis" "[0 0 -1 91] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20437" - "plane" "(320 -1984 240) (640 -1984 240) (640 -1984 256)" - "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" "20436" - "plane" "(640 -2304 240) (320 -2304 240) (320 -2304 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 133] 0.25" - "vaxis" "[0 0 -1 91] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 218 103" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26703" - side - { - "id" "20510" - "plane" "(272 -2016 240) (272 -2272 240) (688 -2272 240)" - "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" "20509" - "plane" "(272 -2208 336) (272 -2240 304) (272 -2272 240)" - "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" "20508" - "plane" "(688 -2016 240) (688 -2272 240) (688 -2240 304)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20507" - "plane" "(688 -2240 304) (688 -2272 240) (272 -2272 240)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[1 0 0 247] 0.25" - "vaxis" "[0 0 -1 416] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20506" - "plane" "(688 -2208 336) (688 -2240 304) (272 -2240 304)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[1 0 0 247] 0.25" - "vaxis" "[0 0 -1 416] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20505" - "plane" "(272 -2208 336) (272 -2176 352) (688 -2176 352)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[1 0 0 247] 0.25" - "vaxis" "[0 -1 0 96] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20504" - "plane" "(272 -2048 304) (272 -2016 240) (688 -2016 240)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[1 0 0 247] 0.25" - "vaxis" "[0 0 -1 416] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20503" - "plane" "(272 -2080 336) (272 -2048 304) (688 -2048 304)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[1 0 0 247] 0.25" - "vaxis" "[0 0 -1 416] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20502" - "plane" "(272 -2112 352) (272 -2080 336) (688 -2080 336)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[1 0 0 247] 0.25" - "vaxis" "[0 -1 0 96] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20501" - "plane" "(272 -2176 352) (272 -2112 352) (688 -2112 352)" - "material" "DE_CBBLE/ROOFTILE_A_01" - "uaxis" "[1 0 0 247] 0.25" - "vaxis" "[0 -1 0 96] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 196 165" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26785" - side - { - "id" "20657" - "plane" "(256 -2224 368) (256 -2144 368) (272 -2144 368)" - "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" "20656" - "plane" "(256 -2144 240) (256 -2304 240) (272 -2304 240)" - "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" "20655" - "plane" "(256 -2304 240) (256 -2144 240) (256 -2144 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20654" - "plane" "(272 -2144 240) (272 -2304 240) (272 -2256 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20653" - "plane" "(272 -2304 240) (256 -2304 240) (256 -2256 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20652" - "plane" "(256 -2256 336) (256 -2224 368) (272 -2224 368)" - "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" "20651" - "plane" "(256 -2144 240) (272 -2144 240) (272 -2144 368)" - "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 202 115" - "groupid" "26784" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26786" - side - { - "id" "20663" - "plane" "(256 -2224 384) (256 -2224 368) (272 -2224 368)" - "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" "20662" - "plane" "(256 -2256 352) (256 -2256 336) (256 -2224 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20661" - "plane" "(272 -2224 384) (272 -2224 368) (272 -2256 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20660" - "plane" "(272 -2256 352) (272 -2256 336) (256 -2256 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20659" - "plane" "(256 -2256 352) (256 -2224 384) (272 -2224 384)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20658" - "plane" "(272 -2256 336) (272 -2224 368) (256 -2224 368)" - "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 202 115" - "groupid" "26784" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26787" - side - { - "id" "20669" - "plane" "(256 -2144 384) (256 -2144 368) (272 -2144 368)" - "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" "20668" - "plane" "(256 -2224 384) (256 -2224 368) (256 -2144 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20667" - "plane" "(272 -2144 384) (272 -2144 368) (272 -2224 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20666" - "plane" "(272 -2224 384) (272 -2224 368) (256 -2224 368)" - "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" "20665" - "plane" "(256 -2224 384) (256 -2144 384) (272 -2144 384)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 1 0 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20664" - "plane" "(272 -2144 368) (256 -2144 368) (256 -2224 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 202 115" - "groupid" "26784" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26789" - side - { - "id" "20676" - "plane" "(256 -2144 368) (256 -2064 368) (272 -2064 368)" - "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" "20675" - "plane" "(256 -1984 240) (256 -2144 240) (272 -2144 240)" - "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" "20674" - "plane" "(256 -2144 240) (256 -1984 240) (256 -2032 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20673" - "plane" "(272 -1984 240) (272 -2144 240) (272 -2144 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20672" - "plane" "(256 -1984 240) (272 -1984 240) (272 -2032 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20671" - "plane" "(272 -2032 336) (272 -2064 368) (256 -2064 368)" - "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" "20670" - "plane" "(272 -2144 240) (256 -2144 240) (256 -2144 368)" - "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 192 105" - "groupid" "26788" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26790" - side - { - "id" "20682" - "plane" "(272 -2064 384) (272 -2064 368) (256 -2064 368)" - "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" "20681" - "plane" "(256 -2064 384) (256 -2064 368) (256 -2032 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20680" - "plane" "(272 -2032 352) (272 -2032 336) (272 -2064 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20679" - "plane" "(256 -2032 352) (256 -2032 336) (272 -2032 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20678" - "plane" "(272 -2032 352) (272 -2064 384) (256 -2064 384)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20677" - "plane" "(256 -2032 336) (256 -2064 368) (272 -2064 368)" - "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 192 105" - "groupid" "26788" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26791" - side - { - "id" "20688" - "plane" "(272 -2144 384) (272 -2144 368) (256 -2144 368)" - "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" "20687" - "plane" "(256 -2144 384) (256 -2144 368) (256 -2064 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20686" - "plane" "(272 -2064 384) (272 -2064 368) (272 -2144 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20685" - "plane" "(256 -2064 384) (256 -2064 368) (272 -2064 368)" - "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" "20684" - "plane" "(272 -2144 384) (256 -2144 384) (256 -2064 384)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 -1 0 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20683" - "plane" "(256 -2064 368) (256 -2144 368) (272 -2144 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 192 105" - "groupid" "26788" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26792" - side - { - "id" "20700" - "plane" "(672 -1984 224) (672 -1920 224) (704 -1920 224)" - "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" "20699" - "plane" "(672 -1920 64) (672 -1984 64) (704 -1984 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" "20698" - "plane" "(672 -1984 64) (672 -1920 64) (672 -1920 224)" - "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" "20697" - "plane" "(704 -1920 64) (704 -1984 64) (704 -1984 224)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20696" - "plane" "(672 -1920 64) (704 -1920 64) (704 -1920 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20695" - "plane" "(704 -1984 64) (672 -1984 64) (672 -1984 224)" - "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 183 200" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26801" - side - { - "id" "20717" - "plane" "(576 -1952 224) (448 -1952 224) (448 -2136 224)" - "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" "20716" - "plane" "(448 -1952 320) (448 -1952 224) (576 -1952 224)" - "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" "20715" - "plane" "(576 -2136 224) (448 -2136 224) (448 -2136 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" "20714" - "plane" "(448 -2136 320) (448 -2136 224) (448 -1952 224)" - "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" "20713" - "plane" "(448 -1952 320) (576 -1952 224) (576 -2136 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 183 200" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26810" - side - { - "id" "20729" - "plane" "(448 -1952 352) (448 -1920 352) (576 -1920 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20728" - "plane" "(448 -1920 224) (448 -1952 224) (576 -1952 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20727" - "plane" "(448 -1952 224) (448 -1920 224) (448 -1920 352)" - "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" "20726" - "plane" "(576 -1920 224) (576 -1952 224) (576 -1952 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20725" - "plane" "(448 -1920 224) (576 -1920 224) (576 -1920 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20724" - "plane" "(448 -1952 352) (576 -1952 256) (576 -1952 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 110 163" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26823" - side - { - "id" "20739" - "plane" "(448 -1952 224) (320 -1952 224) (320 -2136 224)" - "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" "20738" - "plane" "(320 -1952 224) (448 -1952 224) (448 -1952 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" "20737" - "plane" "(448 -2136 320) (448 -2136 224) (320 -2136 224)" - "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" "20736" - "plane" "(448 -1952 320) (448 -1952 224) (448 -2136 224)" - "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" "20735" - "plane" "(448 -2136 320) (320 -2136 224) (320 -1952 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 183 200" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26825" - side - { - "id" "20751" - "plane" "(320 -1952 256) (320 -1920 256) (448 -1920 352)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20750" - "plane" "(320 -1920 224) (320 -1952 224) (448 -1952 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20749" - "plane" "(448 -1920 224) (448 -1952 224) (448 -1952 352)" - "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" "20748" - "plane" "(320 -1952 224) (320 -1920 224) (320 -1920 256)" - "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" "20747" - "plane" "(448 -1920 352) (320 -1920 256) (320 -1920 224)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20746" - "plane" "(448 -1952 224) (320 -1952 224) (320 -1952 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 110 163" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26853" - side - { - "id" "20811" - "plane" "(256 -2304 240) (256 -2296 240) (704 -2296 240)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20810" - "plane" "(256 -2296 208) (256 -2304 208) (704 -2304 208)" - "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" "20809" - "plane" "(256 -2304 208) (256 -2296 208) (256 -2296 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20808" - "plane" "(704 -2296 208) (704 -2304 208) (704 -2304 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20807" - "plane" "(256 -2296 208) (704 -2296 208) (704 -2296 240)" - "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" "20806" - "plane" "(704 -2304 208) (256 -2304 208) (256 -2304 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 218 199" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26860" - side - { - "id" "20823" - "plane" "(416 -2304 64) (416 -2288 64) (512 -2288 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20822" - "plane" "(416 -2288 0) (416 -2304 0) (512 -2304 0)" - "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" "20821" - "plane" "(416 -2304 0) (416 -2288 0) (416 -2288 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" "20820" - "plane" "(512 -2288 0) (512 -2304 0) (512 -2304 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" "20819" - "plane" "(416 -2288 0) (512 -2288 0) (512 -2288 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" "20818" - "plane" "(512 -2304 0) (416 -2304 0) (416 -2304 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 176 105" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26863" - side - { - "id" "20835" - "plane" "(544 -2308 116) (544 -2296 116) (608 -2296 116)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -116.314] 0.123" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20834" - "plane" "(544 -2296 112) (544 -2308 112) (608 -2308 112)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 36.1348] 0.123" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20833" - "plane" "(544 -2308 112) (544 -2296 112) (544 -2296 116)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[0 -1 0 -384] 0.25" - "vaxis" "[0 0 -1 135] 0.123" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20832" - "plane" "(608 -2296 112) (608 -2308 112) (608 -2308 116)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[0 1 0 384] 0.25" - "vaxis" "[0 0 -1 135] 0.123" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20831" - "plane" "(544 -2296 112) (608 -2296 112) (608 -2296 116)" - "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" "20830" - "plane" "(608 -2308 112) (544 -2308 112) (544 -2308 116)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/PLASTER03_DIFFUSE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 135] 0.123" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 237" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26918" - side - { - "id" "20962" - "plane" "(344 -2296 256) (344 -2304 256) (448 -2304 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20961" - "plane" "(448 -2296 256) (448 -2296 320) (408 -2296 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" "20960" - "plane" "(344 -2304 256) (408.004 -2304 320) (448 -2304 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20959" - "plane" "(344 -2304 256) (344 -2296 256) (408 -2296 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 133] 0.25" - "vaxis" "[0 -1 0 91] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20958" - "plane" "(448 -2296 256) (448 -2304 256) (448 -2304 320)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20957" - "plane" "(408.004 -2304 320) (408 -2296 320) (448 -2296 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" - } - editor - { - "color" "0 106 211" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26921" - side - { - "id" "20979" - "plane" "(464 -2296 376) (424 -2296 336) (464 -2296 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20978" - "plane" "(464 -2304 376) (464 -2304 336) (424 -2304 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20977" - "plane" "(424 -2304 336) (424 -2296 336) (464 -2296 376)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 133] 0.25" - "vaxis" "[0 -1 0 91] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20976" - "plane" "(464 -2296 336) (464 -2304 336) (464 -2304 376)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20975" - "plane" "(424 -2296 336) (424 -2304 336) (464 -2304 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 248 209" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26925" - side - { - "id" "21003" - "plane" "(496 -2296 376) (496 -2296 336) (536 -2296 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21002" - "plane" "(496 -2304 376) (536 -2304 336) (496 -2304 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21001" - "plane" "(496 -2304 376) (496 -2296 376) (536 -2296 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[1 0 0 133] 0.25" - "vaxis" "[0 -1 0 91] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21000" - "plane" "(496 -2304 336) (496 -2296 336) (496 -2296 376)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20999" - "plane" "(496 -2296 336) (496 -2304 336) (536 -2304 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 186 239" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26962" - side - { - "id" "21077" - "plane" "(688 -2144 240) (688 -2304 240) (704 -2304 240)" - "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" "21076" - "plane" "(688 -2296 256) (688 -2304 240) (688 -2144 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21075" - "plane" "(704 -2144 240) (704 -2304 240) (704 -2296 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21074" - "plane" "(704 -2296 256) (704 -2304 240) (688 -2304 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21073" - "plane" "(688 -2144 256) (688 -2144 240) (704 -2144 240)" - "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" "21072" - "plane" "(688 -2296 256) (688 -2144 256) (704 -2144 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 154 255" - "groupid" "26754" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26963" - side - { - "id" "21083" - "plane" "(688 -2272 304) (688 -2296 256) (688 -2168 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21082" - "plane" "(704 -2296 256) (704 -2272 304) (704 -2168 304)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21081" - "plane" "(704 -2272 304) (704 -2296 256) (688 -2296 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21080" - "plane" "(688 -2168 304) (688 -2168 256) (704 -2168 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[-1 0 0 -224] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21079" - "plane" "(688 -2272 304) (688 -2168 304) (704 -2168 304)" - "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" "21078" - "plane" "(688 -2168 256) (688 -2296 256) (704 -2296 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 154 255" - "groupid" "26754" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26964" - side - { - "id" "21089" - "plane" "(688 -2224 384) (688 -2224 368) (704 -2224 368)" - "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" "21088" - "plane" "(688 -2256 352) (688 -2256 336) (688 -2224 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21087" - "plane" "(704 -2224 384) (704 -2224 368) (704 -2256 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21086" - "plane" "(704 -2256 352) (704 -2256 336) (688 -2256 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21085" - "plane" "(688 -2256 352) (688 -2224 384) (704 -2224 384)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21084" - "plane" "(704 -2256 336) (704 -2224 368) (688 -2224 368)" - "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 154 255" - "groupid" "26754" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26965" - side - { - "id" "21095" - "plane" "(688 -2144 384) (688 -2144 368) (704 -2144 368)" - "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" "21094" - "plane" "(688 -2224 384) (688 -2224 368) (688 -2144 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21093" - "plane" "(704 -2144 384) (704 -2144 368) (704 -2224 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21092" - "plane" "(704 -2224 384) (704 -2224 368) (688 -2224 368)" - "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" "21091" - "plane" "(688 -2224 384) (688 -2144 384) (704 -2144 384)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 1 0 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21090" - "plane" "(704 -2144 368) (688 -2144 368) (688 -2224 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 154 255" - "groupid" "26754" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26966" - side - { - "id" "21102" - "plane" "(688 -2224 368) (688 -2144 368) (704 -2144 368)" - "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" "21101" - "plane" "(688 -2144 304) (688 -2144 368) (688 -2224 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21100" - "plane" "(704 -2272 304) (704 -2256 336) (704 -2224 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21099" - "plane" "(688 -2272 304) (688 -2256 336) (704 -2256 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21098" - "plane" "(688 -2256 336) (688 -2224 368) (704 -2224 368)" - "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" "21097" - "plane" "(704 -2144 304) (704 -2144 368) (688 -2144 368)" - "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" "21096" - "plane" "(688 -2144 304) (688 -2272 304) (704 -2272 304)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 154 255" - "groupid" "26754" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26967" - side - { - "id" "21108" - "plane" "(688 -1984 240) (688 -2144 240) (704 -2144 240)" - "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" "21107" - "plane" "(688 -2144 240) (688 -1984 240) (688 -1992 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21106" - "plane" "(704 -1992 256) (704 -1984 240) (704 -2144 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21105" - "plane" "(688 -1992 256) (688 -1984 240) (704 -1984 240)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21104" - "plane" "(704 -2144 256) (704 -2144 240) (688 -2144 240)" - "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" "21103" - "plane" "(688 -2144 256) (688 -1992 256) (704 -1992 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 136 201" - "groupid" "26755" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26968" - side - { - "id" "21114" - "plane" "(688 -1992 256) (688 -2016 304) (688 -2120 304)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21113" - "plane" "(704 -2016 304) (704 -1992 256) (704 -2120 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21112" - "plane" "(688 -2016 304) (688 -1992 256) (704 -1992 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21111" - "plane" "(704 -2120 304) (704 -2120 256) (688 -2120 256)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[1 0 0 -31.998] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21110" - "plane" "(688 -2120 304) (688 -2016 304) (704 -2016 304)" - "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" "21109" - "plane" "(688 -1992 256) (688 -2120 256) (704 -2120 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 136 201" - "groupid" "26755" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26969" - side - { - "id" "21120" - "plane" "(704 -2064 384) (704 -2064 368) (688 -2064 368)" - "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" "21119" - "plane" "(688 -2064 384) (688 -2064 368) (688 -2032 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21118" - "plane" "(704 -2032 352) (704 -2032 336) (704 -2064 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21117" - "plane" "(688 -2032 352) (688 -2032 336) (704 -2032 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21116" - "plane" "(704 -2032 352) (704 -2064 384) (688 -2064 384)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21115" - "plane" "(688 -2032 336) (688 -2064 368) (704 -2064 368)" - "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 136 201" - "groupid" "26755" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26970" - side - { - "id" "21126" - "plane" "(704 -2144 384) (704 -2144 368) (688 -2144 368)" - "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" "21125" - "plane" "(688 -2144 384) (688 -2144 368) (688 -2064 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21124" - "plane" "(704 -2064 384) (704 -2064 368) (704 -2144 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21123" - "plane" "(688 -2064 384) (688 -2064 368) (704 -2064 368)" - "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" "21122" - "plane" "(704 -2144 384) (688 -2144 384) (688 -2064 384)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 -1 0 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21121" - "plane" "(688 -2064 368) (688 -2144 368) (704 -2144 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 136 201" - "groupid" "26755" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26971" - side - { - "id" "21133" - "plane" "(688 -2144 368) (688 -2064 368) (704 -2064 368)" - "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" "21132" - "plane" "(688 -2016 304) (688 -2032 336) (688 -2064 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21131" - "plane" "(704 -2144 304) (704 -2144 368) (704 -2064 368)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21130" - "plane" "(704 -2016 304) (704 -2032 336) (688 -2032 336)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK02" - "uaxis" "[0 0 1 133] 0.25" - "vaxis" "[1 0 0 91] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21129" - "plane" "(704 -2032 336) (704 -2064 368) (688 -2064 368)" - "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" "21128" - "plane" "(688 -2144 304) (688 -2144 368) (704 -2144 368)" - "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" "21127" - "plane" "(688 -2016 304) (688 -2144 304) (704 -2144 304)" - "material" "TEROUST/ARPEGGIO/CRETE/PLASTERS/OLDBRICK01" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 136 201" - "groupid" "26755" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26982" - side - { - "id" "21145" - "plane" "(704 -2176 256) (704 -2112 256) (708 -2112 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21144" - "plane" "(704 -2112 248) (704 -2176 248) (708 -2176 248)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21143" - "plane" "(704 -2176 248) (704 -2112 248) (704 -2112 256)" - "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" "21142" - "plane" "(708 -2112 248) (708 -2176 248) (708 -2176 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21141" - "plane" "(704 -2112 248) (708 -2112 248) (708 -2112 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21140" - "plane" "(708 -2176 248) (704 -2176 248) (704 -2176 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 100 221" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26992" - side - { - "id" "21169" - "plane" "(576 -2624 256) (608 -2624 256) (608 -2816 448)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21168" - "plane" "(576 -2816 64) (608 -2816 64) (608 -2624 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" "21167" - "plane" "(576 -2624 64) (576 -2624 256) (576 -2816 448)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21166" - "plane" "(608 -2624 256) (608 -2624 64) (608 -2816 64)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21165" - "plane" "(608 -2624 64) (608 -2624 256) (576 -2624 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21164" - "plane" "(576 -2816 64) (576 -2816 448) (608 -2816 448)" - "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 148 141" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27001" - side - { - "id" "21181" - "plane" "(608 -2624 224) (1056 -2624 224) (1056 -2816 416)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21180" - "plane" "(608 -2816 64) (1056 -2816 64) (1056 -2624 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" "21179" - "plane" "(608 -2624 64) (608 -2624 224) (608 -2816 416)" - "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" "21178" - "plane" "(1056 -2624 224) (1056 -2624 64) (1056 -2816 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21177" - "plane" "(1056 -2624 64) (1056 -2624 224) (608 -2624 224)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21176" - "plane" "(608 -2816 64) (608 -2816 416) (1056 -2816 416)" - "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 232 205" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27003" - side - { - "id" "21182" - "plane" "(704 -2640 320) (800 -2640 320) (800 -2720 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" "21183" - "plane" "(704 -2720 224) (800 -2720 224) (800 -2640 224)" - "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" "21184" - "plane" "(704 -2640 224) (704 -2640 320) (704 -2720 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21185" - "plane" "(800 -2720 224) (800 -2720 320) (800 -2640 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21186" - "plane" "(800 -2640 224) (800 -2640 320) (704 -2640 320)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21187" - "plane" "(704 -2720 224) (704 -2720 320) (800 -2720 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 168 249" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27010" - side - { - "id" "21199" - "plane" "(384 -2640 320) (480 -2640 320) (480 -2720 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" "21198" - "plane" "(384 -2720 224) (480 -2720 224) (480 -2640 224)" - "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" "21197" - "plane" "(384 -2640 224) (384 -2640 320) (384 -2720 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21196" - "plane" "(480 -2720 224) (480 -2720 320) (480 -2640 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21195" - "plane" "(480 -2640 224) (480 -2640 320) (384 -2640 320)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21194" - "plane" "(384 -2720 224) (384 -2720 320) (480 -2720 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 168 249" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27034" - side - { - "id" "21226" - "plane" "(704 -2624 320) (704 -2816 320) (800 -2816 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21225" - "plane" "(800 -2624 320) (752 -2624 368) (704 -2624 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21224" - "plane" "(704 -2816 320) (752 -2816 368) (800 -2816 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" "21223" - "plane" "(704 -2816 320) (704 -2624 320) (752 -2624 368)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21222" - "plane" "(800 -2624 320) (800 -2816 320) (752 -2816 368)" - "material" "DEV/REFLECTIVITY_30B" - "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 249" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27038" - side - { - "id" "21251" - "plane" "(384 -2624 320) (384 -2816 320) (480 -2816 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21250" - "plane" "(480 -2624 320) (432 -2624 368) (384 -2624 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21249" - "plane" "(384 -2816 320) (432 -2816 368) (480 -2816 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" "21248" - "plane" "(384 -2816 320) (384 -2624 320) (432 -2624 368)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21247" - "plane" "(480 -2624 320) (480 -2816 320) (432 -2816 368)" - "material" "DEV/REFLECTIVITY_30B" - "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 249" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27042" - side - { - "id" "21263" - "plane" "(704 -2624 320) (720 -2624 320) (720 -2640 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" "21262" - "plane" "(704 -2640 224) (720 -2640 224) (720 -2624 224)" - "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" "21261" - "plane" "(704 -2624 224) (704 -2624 320) (704 -2640 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21260" - "plane" "(720 -2640 224) (720 -2640 320) (720 -2624 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21259" - "plane" "(720 -2624 224) (720 -2624 320) (704 -2624 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21258" - "plane" "(704 -2640 224) (704 -2640 320) (720 -2640 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 168 249" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27044" - side - { - "id" "21275" - "plane" "(784 -2624 320) (800 -2624 320) (800 -2640 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" "21274" - "plane" "(784 -2640 224) (800 -2640 224) (800 -2624 224)" - "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" "21273" - "plane" "(784 -2624 224) (784 -2624 320) (784 -2640 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21272" - "plane" "(800 -2640 224) (800 -2640 320) (800 -2624 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21271" - "plane" "(800 -2624 224) (800 -2624 320) (784 -2624 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21270" - "plane" "(784 -2640 224) (784 -2640 320) (800 -2640 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 168 249" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27046" - side - { - "id" "21293" - "plane" "(384 -2624 320) (400 -2624 320) (400 -2640 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" "21292" - "plane" "(384 -2640 224) (400 -2640 224) (400 -2624 224)" - "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" "21291" - "plane" "(384 -2624 224) (384 -2624 320) (384 -2640 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21290" - "plane" "(400 -2640 224) (400 -2640 320) (400 -2624 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21289" - "plane" "(400 -2624 224) (400 -2624 320) (384 -2624 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21288" - "plane" "(384 -2640 224) (384 -2640 320) (400 -2640 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 168 249" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27047" - side - { - "id" "21299" - "plane" "(464 -2624 320) (480 -2624 320) (480 -2640 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" "21298" - "plane" "(464 -2640 224) (480 -2640 224) (480 -2624 224)" - "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" "21297" - "plane" "(464 -2624 224) (464 -2624 320) (464 -2640 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21296" - "plane" "(480 -2640 224) (480 -2640 320) (480 -2624 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21295" - "plane" "(480 -2624 224) (480 -2624 320) (464 -2624 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21294" - "plane" "(464 -2640 224) (464 -2640 320) (480 -2640 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 168 249" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27052" - side - { - "id" "21305" - "plane" "(320 -2624 224) (576 -2624 224) (576 -2816 416)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21304" - "plane" "(320 -2624 224) (320 -2816 416) (320 -2816 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21303" - "plane" "(576 -2816 416) (576 -2624 224) (576 -2624 192)" - "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" "21302" - "plane" "(576 -2624 224) (320 -2624 224) (320 -2624 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21301" - "plane" "(320 -2816 416) (576 -2816 416) (576 -2816 192)" - "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" "21300" - "plane" "(320 -2816 192) (576 -2816 192) (576 -2624 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 205" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27053" - side - { - "id" "21311" - "plane" "(320 -2640 64) (320 -2816 64) (576 -2816 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" "21310" - "plane" "(320 -2816 192) (320 -2816 64) (320 -2640 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21309" - "plane" "(576 -2640 192) (576 -2640 64) (576 -2816 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" "21308" - "plane" "(320 -2640 192) (320 -2640 64) (576 -2640 64)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21307" - "plane" "(576 -2816 192) (576 -2816 64) (320 -2816 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" "21306" - "plane" "(320 -2816 192) (320 -2640 192) (576 -2640 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 205" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27055" - side - { - "id" "21323" - "plane" "(320 -2640 64) (384 -2640 64) (384 -2624 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" "21322" - "plane" "(320 -2640 64) (320 -2624 64) (320 -2624 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21321" - "plane" "(384 -2624 64) (384 -2640 64) (384 -2640 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21320" - "plane" "(320 -2624 64) (384 -2624 64) (384 -2624 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21319" - "plane" "(384 -2640 64) (320 -2640 64) (320 -2640 192)" - "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" "21318" - "plane" "(320 -2624 192) (384 -2624 192) (384 -2640 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 205" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27057" - side - { - "id" "21335" - "plane" "(480 -2640 64) (576 -2640 64) (576 -2624 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" "21334" - "plane" "(480 -2640 64) (480 -2624 64) (480 -2624 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21333" - "plane" "(576 -2624 64) (576 -2640 64) (576 -2640 192)" - "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" "21332" - "plane" "(480 -2624 64) (576 -2624 64) (576 -2624 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21331" - "plane" "(576 -2640 64) (480 -2640 64) (480 -2640 192)" - "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" "21330" - "plane" "(480 -2624 192) (576 -2624 192) (576 -2640 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 205" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27068" - side - { - "id" "21365" - "plane" "(480 -2640 160) (480 -2624 160) (432 -2624 168)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21364" - "plane" "(480 -2624 160) (480 -2640 160) (480 -2640 192)" - "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" "21363" - "plane" "(480 -2624 160) (480 -2624 192) (432 -2624 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21362" - "plane" "(480 -2640 160) (432 -2640 168) (432 -2640 192)" - "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" "21361" - "plane" "(480 -2624 192) (480 -2640 192) (432 -2640 192)" - "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" "21360" - "plane" "(432 -2640 168) (432 -2624 168) (432 -2624 192)" - "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" "0 232 205" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27069" - side - { - "id" "21371" - "plane" "(384 -2624 160) (384 -2640 160) (432 -2640 168)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21370" - "plane" "(384 -2640 160) (384 -2624 160) (384 -2624 192)" - "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" "21369" - "plane" "(384 -2624 160) (432 -2624 168) (432 -2624 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21368" - "plane" "(384 -2640 160) (384 -2640 192) (432 -2640 192)" - "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" "21367" - "plane" "(384 -2624 192) (432 -2624 192) (432 -2640 192)" - "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" "21366" - "plane" "(432 -2624 168) (432 -2640 168) (432 -2640 192)" - "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" "0 232 205" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27072" - side - { - "id" "21383" - "plane" "(320 -3264 7.62939e-06) (1056 -3264 7.62939e-06) (1056 -2816 7.62939e-06)" - "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" "21382" - "plane" "(320 -3264 7.62939e-06) (320 -2816 7.62939e-06) (320 -2816 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21381" - "plane" "(1056 -2816 7.62939e-06) (1056 -3264 7.62939e-06) (1056 -3264 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "21380" - "plane" "(320 -2816 7.62939e-06) (1056 -2816 7.62939e-06) (1056 -2816 416)" - "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" "21379" - "plane" "(1056 -3264 7.62939e-06) (320 -3264 7.62939e-06) (320 -3264 416)" - "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" "21378" - "plane" "(320 -2816 416) (1056 -2816 416) (1056 -3264 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 205" - "visgroupid" "18" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "26289" - side - { - "id" "20310" - "plane" "(1024 -3584 -64) (1024 -1312 -64) (1472 -1312 -64)" - "material" "LIQUIDS/INFERNO_WATER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20309" - "plane" "(1024 -1312 -128) (1024 -3584 -128) (1472 -3584 -128)" - "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" "20308" - "plane" "(1024 -3584 -128) (1024 -1312 -128) (1024 -1312 -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" "20307" - "plane" "(1472 -1312 -128) (1472 -3584 -128) (1472 -3584 -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" "20306" - "plane" "(1024 -1312 -128) (1472 -1312 -128) (1472 -1312 -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" "20305" - "plane" "(1472 -3584 -128) (1024 -3584 -128) (1024 -3584 -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 173 158" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "21141" - side - { - "id" "18011" - "plane" "(512 -832 0) (544 -832 0) (352 -1472 0)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18010" - "plane" "(320 -1472 -128) (352 -1472 -128) (544 -832 -128)" - "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" "18009" - "plane" "(512 -832 -128) (512 -832 0) (320 -1472 0)" - "material" "RYAN_DEV/DEV_BLACK" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18008" - "plane" "(352 -1472 -128) (352 -1472 0) (544 -832 0)" - "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" "18007" - "plane" "(320 -1472 -128) (320 -1472 0) (352 -1472 0)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18006" - "plane" "(544 -832 -128) (544 -832 0) (512 -832 0)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 158 183" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "22121" - side - { - "id" "18552" - "plane" "(640 896 88) (448 704 88) (448 736 88)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18551" - "plane" "(448 704 80) (640 896 80) (624 912 80)" - "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" "18550" - "plane" "(448 704 80) (448 704 88) (640 896 88)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18549" - "plane" "(640 896 80) (640 896 88) (624 912 88)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18548" - "plane" "(448 736 80) (448 736 88) (448 704 88)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18547" - "plane" "(624 912 80) (624 912 88) (448 736 88)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 144 237" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "22144" - side - { - "id" "18618" - "plane" "(704 832 256) (640 896 256) (732 988 256)" - "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" "18617" - "plane" "(640 896 64) (704 832 64) (732 832 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" "18616" - "plane" "(640 896 64) (640 896 256) (704 832 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18615" - "plane" "(732 987.988 64) (732 988 256) (640 896 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18614" - "plane" "(704 832 64) (704 832 256) (732 832 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18613" - "plane" "(732 832 64) (732 832 256) (732 988 256)" - "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" "0 108 237" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - hidden - { - solid - { - "id" "22272" - side - { - "id" "18629" - "plane" "(-63.9844 -1856 64) (48.0156 -1856 64) (48.0156 -1600 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 63.9375] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18628" - "plane" "(48.0156 -1600 80) (48.0156 -1600 64) (48.0156 -1856 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18627" - "plane" "(-64 -1600 64) (48.0156 -1600 64) (48.0156 -1600 80)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 63.9375] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18626" - "plane" "(48.0156 -1856 80) (48.0156 -1856 64) (-63.9981 -1856 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 63.9375] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18625" - "plane" "(-63.9844 -1856 64) (-63.9844 -1600 64) (48.0156 -1600 80)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 63.9375] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 233 234" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - solid - { - "id" "25508" - side - { - "id" "19741" - "plane" "(2464 -960 88) (2464 -704 88) (2496 -704 88)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19740" - "plane" "(2464 -704 80) (2464 -960 80) (2496 -960 80)" - "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" "19739" - "plane" "(2464 -960 80) (2464 -704 80) (2464 -704 88)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 -256] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19738" - "plane" "(2496 -704 80) (2496 -960 80) (2496 -960 88)" - "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" "19737" - "plane" "(2464 -704 80) (2496 -704 80) (2496 -704 88)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19736" - "plane" "(2496 -960 80) (2464 -960 80) (2464 -960 88)" - "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 139 240" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - hidden - { - solid - { - "id" "25530" - side - { - "id" "19813" - "plane" "(-768 -1088 64) (-768 -896 64) (-576 -896 40)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19812" - "plane" "(-768 -896 0) (-768 -1088 0) (-576 -1088 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19811" - "plane" "(-768 -1088 0) (-768 -896 0) (-768 -896 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19810" - "plane" "(-576 -896 0) (-576 -1088 0) (-576 -1088 40)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19809" - "plane" "(-768 -896 0) (-576 -896 0) (-576 -896 40)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19808" - "plane" "(-768 -1088 64) (-576 -1088 40) (-576 -1088 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25539" - side - { - "id" "19825" - "plane" "(-576 -1088 40) (-576 -896 40) (-560 -1088 36)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19824" - "plane" "(-576 -896 0) (-576 -1088 0) (-560 -1088 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19823" - "plane" "(-576 -1088 0) (-576 -896 0) (-576 -896 40)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19822" - "plane" "(-576 -896 0) (-560 -1088 0) (-560 -1088 36)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19820" - "plane" "(-576 -1088 40) (-560 -1088 36) (-560 -1088 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25551" - side - { - "id" "19845" - "plane" "(-544 -880 36) (-560 -1088 36) (-576 -896 40)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19844" - "plane" "(-576 -896 0) (-560 -1088 0) (-544 -880 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19843" - "plane" "(-544 -880 0) (-560 -1088 0) (-560 -1088 36)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19842" - "plane" "(-576 -896 40) (-560 -1088 36) (-560 -1088 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19841" - "plane" "(-576 -896 0) (-544 -880 0) (-544 -880 36)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25556" - side - { - "id" "19857" - "plane" "(-464 -1040 36) (-544 -880 36) (-320 -768 8)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19856" - "plane" "(-544 -880 0) (-464 -1040 0) (-240 -928 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19855" - "plane" "(-464 -1040 0) (-544 -880 0) (-544 -880 36)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19854" - "plane" "(-320 -768 0) (-240 -928 0) (-240 -928 8)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19853" - "plane" "(-544 -880 0) (-320 -768 0) (-320 -768 8)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19852" - "plane" "(-464 -1040 36) (-240 -928 8) (-240 -928 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25570" - side - { - "id" "19869" - "plane" "(-240 -928 8) (-320 -768 8) (-288 -752 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19868" - "plane" "(-320 -768 0) (-240 -928 0) (-200 -928 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19867" - "plane" "(-240 -928 0) (-320 -768 0) (-320 -768 8)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19865" - "plane" "(-320 -768 0) (-288 -752 0) (-320 -768 8)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19864" - "plane" "(-240 -928 8) (-200 -928 0) (-240 -928 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25573" - side - { - "id" "19879" - "plane" "(-320 -768 8) (-336 -736 0) (-288 -752 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19878" - "plane" "(-288 -752 0) (-336 -736 0) (-320 -768 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19876" - "plane" "(-320 -768 0) (-336 -736 0) (-320 -768 8)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19875" - "plane" "(-320 -768 8) (-288 -752 0) (-320 -768 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25592" - side - { - "id" "19896" - "plane" "(960 768 64) (960 512 64) (1088 512 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19895" - "plane" "(960 512 64) (960 768 64) (960 768 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19894" - "plane" "(960 768 64) (1088 768 64) (960 768 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19893" - "plane" "(1088 512 64) (960 512 64) (960 512 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19892" - "plane" "(960 512 96) (960 768 96) (1088 768 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 144 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25593" - side - { - "id" "19908" - "plane" "(576 960 64) (640 896 96) (480 736 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19907" - "plane" "(416 800 64) (480 736 64) (640 896 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19905" - "plane" "(480 736 64) (480 736 96) (640 896 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19904" - "plane" "(640 896 96) (576 960 64) (640 896 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19903" - "plane" "(480 736 96) (480 736 64) (416 800 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 144 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25603" - side - { - "id" "19918" - "plane" "(480 736 96) (384 736 64) (416 800 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19917" - "plane" "(480 736 64) (416 800 64) (384 736 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19915" - "plane" "(416 800 64) (480 736 64) (480 736 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19914" - "plane" "(480 736 64) (384 736 64) (480 736 96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 144 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25656" - side - { - "id" "19981" - "plane" "(-896 -1680 0) (-896 -1632 16) (-768 -1536 16)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19980" - "plane" "(-768.012 -1536.01 0) (-896 -1632 0) (-896 -1680 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19979" - "plane" "(-896 -1632 16) (-896 -1680 0) (-896 -1632 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19978" - "plane" "(-896 -1632 0) (-768 -1536 0) (-768 -1536 16)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19977" - "plane" "(-768 -1536 0) (-896 -1680 0) (-768 -1536 16)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "150 135 0" - "groupid" "25783" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25657" - side - { - "id" "19985" - "plane" "(-704 -1536 0) (-895.99 -1679.99 0) (-768 -1536 16)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19984" - "plane" "(-896 -1680 0) (-704 -1536 0) (-768 -1536 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19983" - "plane" "(-768 -1536 0) (-704 -1536 0) (-768 -1536 16)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19982" - "plane" "(-768 -1536 16) (-896.016 -1680.02 0) (-768 -1536 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "150 135 0" - "groupid" "25783" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25696" - side - { - "id" "19990" - "plane" "(-896 -1632 16) (-928 -1600 32) (-800 -1520 32)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19989" - "plane" "(-800 -1520 0) (-928 -1600 0) (-896 -1632 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19988" - "plane" "(-928 -1600 32) (-896 -1632 16) (-896 -1632 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19987" - "plane" "(-928 -1600 0) (-800 -1520 0) (-800 -1520 32)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19986" - "plane" "(-800 -1520 0) (-896 -1632 0) (-896 -1632 16)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "150 135 0" - "groupid" "25783" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25697" - side - { - "id" "19995" - "plane" "(-800 -1520 32) (-768 -1536 16) (-896 -1632 16)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19994" - "plane" "(-896 -1632 0) (-768 -1536 0) (-800 -1520 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19993" - "plane" "(-800 -1520 0) (-768 -1536 0) (-768 -1536 16)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19992" - "plane" "(-768 -1536 0) (-896 -1632 0) (-896 -1632 16)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19991" - "plane" "(-800 -1520 32) (-896 -1632 16) (-896 -1632 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "150 135 0" - "groupid" "25783" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25735" - side - { - "id" "20000" - "plane" "(-928 -1600 32) (-960 -1568 48) (-816 -1504 48)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19999" - "plane" "(-816 -1504 0) (-960 -1568 0) (-928 -1600 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19998" - "plane" "(-960 -1568 48) (-928 -1600 32) (-928 -1600 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19997" - "plane" "(-960 -1568 0) (-816 -1504 0) (-816 -1504 48)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19996" - "plane" "(-816 -1504 0) (-928 -1600 0) (-928 -1600 32)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "150 135 0" - "groupid" "25783" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25736" - side - { - "id" "20005" - "plane" "(-816 -1504 48) (-800 -1520 32) (-928 -1600 32)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20004" - "plane" "(-928 -1600 0) (-800 -1520 0) (-816 -1504 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20003" - "plane" "(-816 -1504 0) (-800 -1520 0) (-800 -1520 32)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20002" - "plane" "(-800 -1520 0) (-928 -1600 0) (-928 -1600 32)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20001" - "plane" "(-816 -1504 48) (-928 -1600 32) (-928 -1600 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "150 135 0" - "groupid" "25783" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25767" - side - { - "id" "20010" - "plane" "(-960 -1568 48) (-992 -1504 64) (-832 -1472 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20009" - "plane" "(-832 -1472 0) (-992 -1504 0) (-960 -1568 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20008" - "plane" "(-992 -1504 64) (-960 -1568 48) (-960 -1568 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20007" - "plane" "(-992 -1504 0) (-832 -1472 0) (-832 -1472 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20006" - "plane" "(-832 -1472 0) (-960 -1568 0) (-960 -1568 48)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "150 135 0" - "groupid" "25783" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "25768" - side - { - "id" "20015" - "plane" "(-832 -1472 64) (-816 -1504 48) (-960.013 -1568 48)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20014" - "plane" "(-960 -1568 0) (-816 -1504 0) (-832 -1472 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20013" - "plane" "(-832 -1472 0) (-816 -1504 0) (-816 -1504 48)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20012" - "plane" "(-816 -1504 0) (-960 -1568 0) (-960 -1568 48)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "20011" - "plane" "(-832 -1472 64) (-960 -1568 48) (-960 -1568 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "150 135 0" - "groupid" "25783" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17434" - side - { - "id" "16960" - "plane" "(-1024 -352 4.57764e-05) (-1024 -352 2048) (-1024 -512 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16959" - "plane" "(-960 -512 4.57764e-05) (-960 -512 2048) (-960 -352 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16958" - "plane" "(-960 -352 4.57764e-05) (-960 -352 2048) (-1024 -352 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16957" - "plane" "(-1024 -512 4.57764e-05) (-1024 -512 2048) (-960 -512 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16956" - "plane" "(-1024 -352 4.57764e-05) (-1024 -512 4.57764e-05) (-960 -512 4.57764e-05)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16955" - "plane" "(-1024 -512 2048) (-1024 -352 2048) (-960 -352 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17435" - side - { - "id" "16966" - "plane" "(-960 -704 2048) (-960 -704 0) (-960 -544 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16965" - "plane" "(-832 -544 2048) (-832 -544 0) (-832 -576 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16964" - "plane" "(-960 -544 2048) (-960 -544 0) (-832 -544 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16963" - "plane" "(-832 -576 2048) (-832 -576 0) (-960 -704 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16962" - "plane" "(-960 -544 0) (-960 -704 0) (-832 -576 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16961" - "plane" "(-960 -704 2048) (-960 -544 2048) (-832 -544 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17436" - side - { - "id" "16972" - "plane" "(-1024 -544 2048) (-1024 -544 0) (-1024 -416 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16971" - "plane" "(-832 -416 2048) (-832 -416 0) (-832 -544 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16970" - "plane" "(-1024 -416 2048) (-1024 -416 0) (-832 -416 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16969" - "plane" "(-832 -544 2048) (-832 -544 0) (-1024 -544 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16968" - "plane" "(-1024 -416 0) (-1024 -544 0) (-832 -544 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16967" - "plane" "(-1024 -544 2048) (-1024 -416 2048) (-832 -416 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17437" - side - { - "id" "16978" - "plane" "(-1024 -416 2048) (-1024 -416 0) (-1024 -288 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16977" - "plane" "(-960 -288 2048) (-960 -288 0) (-832 -416 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16976" - "plane" "(-1024 -288 2048) (-1024 -288 0) (-960 -288 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16975" - "plane" "(-832 -416 2048) (-832 -416 0) (-1024 -416 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16974" - "plane" "(-1024 -288 0) (-1024 -416 0) (-832 -416 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16973" - "plane" "(-1024 -416 2048) (-1024 -288 2048) (-960 -288 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17438" - side - { - "id" "16984" - "plane" "(-1024 64 4.57764e-05) (-1024 64 2048) (-1024 -96 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16983" - "plane" "(-960 -96 4.57764e-05) (-960 -96 2048) (-960 64 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16982" - "plane" "(-960 64 4.57764e-05) (-960 64 2048) (-1024 64 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16981" - "plane" "(-1024 -96 4.57764e-05) (-1024 -96 2048) (-960 -96 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16980" - "plane" "(-1024 64 4.57764e-05) (-1024 -96 4.57764e-05) (-960 -96 4.57764e-05)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16979" - "plane" "(-1024 -96 2048) (-1024 64 2048) (-960 64 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17439" - side - { - "id" "16990" - "plane" "(-1024 448 4.57764e-05) (-1024 448 2048) (-1024 64 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16989" - "plane" "(-576 64 4.57764e-05) (-576 64 2048) (-576 448 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16988" - "plane" "(-576 448 4.57764e-05) (-576 448 2048) (-1024 448 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16987" - "plane" "(-1024 64 4.57764e-05) (-1024 64 2048) (-576 64 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16986" - "plane" "(-1024 448 4.57764e-05) (-1024 64 4.57764e-05) (-576 64 4.57764e-05)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16985" - "plane" "(-1024 64 2048) (-1024 448 2048) (-576 448 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17440" - side - { - "id" "16996" - "plane" "(-704 768 4.57764e-05) (-704 768 2048) (-704 448 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16995" - "plane" "(-640 448 4.57764e-05) (-640 448 2048) (-640 768 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16994" - "plane" "(-640 768 4.57764e-05) (-640 768 2048) (-704 768 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16993" - "plane" "(-704 448 4.57764e-05) (-704 448 2048) (-640 448 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16992" - "plane" "(-704 768 4.57764e-05) (-704 448 4.57764e-05) (-640 448 4.57764e-05)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16991" - "plane" "(-704 448 2048) (-704 768 2048) (-640 768 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17441" - side - { - "id" "17002" - "plane" "(-1024 1152 4.57764e-05) (-1024 1152 2048) (-1024 768 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17001" - "plane" "(-128 768 4.57764e-05) (-128 768 2048) (-128 1152 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17000" - "plane" "(-128 1152 4.57764e-05) (-128 1152 2048) (-1024 1152 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16999" - "plane" "(-1024 768 4.57764e-05) (-1024 768 2048) (-128 768 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16998" - "plane" "(-1024 1152 4.57764e-05) (-1024 768 4.57764e-05) (-128 768 4.57764e-05)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16997" - "plane" "(-1024 768 2048) (-1024 1152 2048) (-128 1152 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17442" - side - { - "id" "17008" - "plane" "(-128 1152 4.57764e-05) (-128 1152 2048) (-128 768 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17007" - "plane" "(128 896 4.57764e-05) (128 896 2048) (-32 1184 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17006" - "plane" "(-32 1184 4.57764e-05) (-32 1184 2048) (-128 1152 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17005" - "plane" "(-128 768 4.57764e-05) (-128 768 2048) (128 896 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17004" - "plane" "(-128 1152 4.57764e-05) (-128 768 4.57764e-05) (128 896 4.57764e-05)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17003" - "plane" "(-128 768 2048) (-128 1152 2048) (-32 1184 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17479" - side - { - "id" "17227" - "plane" "(1024 -2368 2048) (1024 -2368 0) (1056 -2368 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17226" - "plane" "(1056 -2624 2048) (1056 -2624 0) (1024 -2624 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17225" - "plane" "(1056 -2368 2048) (1056 -2368 0) (1056 -2624 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17224" - "plane" "(1024 -2624 2048) (1024 -2624 0) (1024 -2368 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17223" - "plane" "(1056 -2368 0) (1024 -2368 0) (1024 -2624 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17222" - "plane" "(1056 -2624 2048) (1024 -2624 2048) (1024 -2368 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 137 234" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17480" - side - { - "id" "17232" - "plane" "(1024 -2752 2048) (1024 -2752 0) (896 -2752 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17231" - "plane" "(1024 -2624 2048) (1024 -2624 0) (1024 -2752 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17230" - "plane" "(896 -2752 2048) (896 -2752 0) (1024 -2624 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17229" - "plane" "(896 -2752 0) (1024 -2752 0) (1024 -2624 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17228" - "plane" "(1024 -2752 2048) (896 -2752 2048) (1024 -2624 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 137 234" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17481" - side - { - "id" "17238" - "plane" "(320 -2752 2048) (320 -2752 0) (896 -2752 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17237" - "plane" "(896 -2944 2048) (896 -2944 0) (320 -2944 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17236" - "plane" "(896 -2752 2048) (896 -2752 0) (896 -2944 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17235" - "plane" "(320 -2944 2048) (320 -2944 0) (320 -2752 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17234" - "plane" "(896 -2752 0) (320 -2752 0) (320 -2944 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17233" - "plane" "(896 -2944 2048) (320 -2944 2048) (320 -2752 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 137 234" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17482" - side - { - "id" "17244" - "plane" "(320 -2752 4.57764e-05) (320 -2752 2048) (320 -3072 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17243" - "plane" "(384 -3072 4.57764e-05) (384 -3072 2048) (384 -2752 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17242" - "plane" "(384 -2752 4.57764e-05) (384 -2752 2048) (320 -2752 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17241" - "plane" "(320 -3072 4.57764e-05) (320 -3072 2048) (384 -3072 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17240" - "plane" "(320 -2752 4.57764e-05) (320 -3072 4.57764e-05) (384 -3072 4.57764e-05)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17239" - "plane" "(320 -3072 2048) (320 -2752 2048) (384 -2752 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17486" - side - { - "id" "38512" - "plane" "(-576 -2984 2048) (-576 -2984 0) (-576 -2752 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38511" - "plane" "(-512 -2752 2048) (-512 -2752 0) (-512 -2984 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38510" - "plane" "(-576 -2752 2048) (-576 -2752 0) (-512 -2752 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38509" - "plane" "(-512 -2984 2048) (-512 -2984 0) (-576 -2984 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38508" - "plane" "(-576 -2752 0) (-576 -2984 0) (-512 -2984 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38507" - "plane" "(-576 -2984 2048) (-576 -2752 2048) (-512 -2752 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "17487" - side - { - "id" "38506" - "plane" "(-576 -2752 2048) (-576 -2752 0) (-576 -2688 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38505" - "plane" "(-64 -2688 2048) (-64 -2688 0) (-64 -2752 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38504" - "plane" "(-576 -2688 2048) (-576 -2688 0) (-64 -2688 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38503" - "plane" "(-64 -2752 2048) (-64 -2752 0) (-576 -2752 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38502" - "plane" "(-576 -2688 0) (-576 -2752 0) (-64 -2752 0)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38501" - "plane" "(-576 -2752 2048) (-576 -2688 2048) (-64 -2688 2048)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "18117" - side - { - "id" "17430" - "plane" "(1280 -2752 320) (864 -2752 320) (864 -1280 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17429" - "plane" "(1280 -1280 256) (864 -1280 256) (864 -2752 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17428" - "plane" "(864 -2752 256) (864 -1280 256) (864 -1280 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17427" - "plane" "(864 -1280 256) (1280 -1280 256) (1280 -1280 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17426" - "plane" "(1280 -2752 256) (864 -2752 256) (864 -2752 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17425" - "plane" "(1280 -1280 256) (1280 -2752 256) (1280 -2752 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 145 198" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "18118" - side - { - "id" "17436" - "plane" "(1280 -1280 320) (2304 -1280 320) (2304 -2752 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17435" - "plane" "(1280 -2752 256) (2304 -2752 256) (2304 -1280 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17434" - "plane" "(2304 -1280 256) (2304 -2752 256) (2304 -2752 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17433" - "plane" "(1280 -1280 256) (2304 -1280 256) (2304 -1280 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17432" - "plane" "(2304 -2752 256) (1280 -2752 256) (1280 -2752 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17431" - "plane" "(1280 -2752 256) (1280 -1280 256) (1280 -1280 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 145 198" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - hidden - { - solid - { - "id" "18183" - side - { - "id" "87767" - "plane" "(864 -3328 320) (-1024 -3328 320) (-1024 1664 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "87766" - "plane" "(864 1664 256) (-1024 1664 256) (-1024 -3328 256)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "87765" - "plane" "(-1024 -3328 256) (-1024 1664 256) (-1024 1664 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "87764" - "plane" "(-1024 1664 256) (864 1664 256) (864 1664 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "87763" - "plane" "(864 -3328 256) (-1024 -3328 256) (-1024 -3328 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "87762" - "plane" "(864 1664 256) (864 -3328 256) (864 -3328 320)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 145 198" - "visgroupshown" "1" - "visgroupautoshown" "0" - } - } - } - solid - { - "id" "12734" - side - { - "id" "14144" - "plane" "(-256 -960 -64) (704 -960 -64) (704 -1472 -64)" - "material" "LIQUIDS/INFERNO_WATER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "14145" - "plane" "(-256 -1472 -128) (704 -1472 -128) (704 -960 -128)" - "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" "14146" - "plane" "(-256 -960 -128) (-256 -960 -64) (-256 -1472 -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" "14147" - "plane" "(704 -1472 -128) (704 -1472 -64) (704 -960 -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" "14148" - "plane" "(704 -960 -128) (704 -960 -64) (-256 -960 -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" "14149" - "plane" "(-256 -1472 -128) (-256 -1472 -64) (704 -1472 -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 173 158" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "13116" - side - { - "id" "14469" - "plane" "(0 -960 -128) (0 -640 -128) (704 -640 -128)" - "material" "RYAN_DEV/DEV_BLACK" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "14468" - "plane" "(0 -640 -192) (0 -960 -192) (704 -960 -192)" - "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" "14467" - "plane" "(0 -960 -192) (0 -640 -192) (0 -640 -128)" - "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" "14466" - "plane" "(704 -640 -192) (704 -960 -192) (704 -960 -128)" - "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" "14465" - "plane" "(0 -640 -192) (704 -640 -192) (704 -640 -128)" - "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" "14464" - "plane" "(704 -960 -192) (0 -960 -192) (0 -960 -128)" - "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 173 158" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "12468" - side - { - "id" "13815" - "plane" "(1184 320 320) (1184 448 320) (1856 448 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" "13814" - "plane" "(1184 448 64) (1184 320 64) (1856 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" "13813" - "plane" "(1184 320 64) (1184 320 320) (1856 320 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "13812" - "plane" "(1856 448 64) (1856 448 320) (1184 448 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "13811" - "plane" "(1856 320 64) (1856 320 320) (1856 448 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "13810" - "plane" "(1184 448 64) (1184 448 320) (1184 320 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 137 234" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "12565" - side - { - "id" "14041" - "plane" "(1328 948 460) (1328 1080 460) (1352 1080 460)" - "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" "14040" - "plane" "(1328 1080 64) (1328 948 64) (1352 948 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" "14039" - "plane" "(1328 948 64) (1328 1080 64) (1328 1080 460)" - "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" "14038" - "plane" "(1352 1080 64) (1352 948 64) (1352 948 460)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "14037" - "plane" "(1328 1080 64) (1352 1080 64) (1352 1080 460)" - "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" "14036" - "plane" "(1352 948 64) (1328 948 64) (1328 948 460)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 137 234" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "9741" - side - { - "id" "10866" - "plane" "(704 -2240 64) (704 -1792 64) (1008 -1792 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "10865" - "plane" "(704 -1792 -128) (704 -2240 -128) (1008 -2240 -128)" - "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" "10864" - "plane" "(704 -2240 -128) (704 -1792 -128) (704 -1792 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" "10863" - "plane" "(1008 -1792 -128) (1008 -2240 -128) (1008 -2240 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" "10862" - "plane" "(704 -1792 -128) (1008 -1792 -128) (1008 -1792 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" "10861" - "plane" "(1008 -2240 -128) (704 -2240 -128) (704 -2240 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 103 232" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "9767" - side - { - "id" "10938" - "plane" "(1472 -2112 64) (1472 -1856 64) (1664 -1856 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "10937" - "plane" "(1472 -1856 -128) (1472 -2112 -128) (1664 -2112 -128)" - "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" "10936" - "plane" "(1472 -2112 -128) (1472 -1856 -128) (1472 -1856 64)" - "material" "DE_CBBLE/STONE_ALT/WATERFRONT_ALT_STONE_01_BOTTOM" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 512] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "10935" - "plane" "(1664 -1856 -128) (1664 -2112 -128) (1664 -2112 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" "10934" - "plane" "(1472 -1856 -128) (1664 -1856 -128) (1664 -1856 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" "10933" - "plane" "(1664 -2112 -128) (1472 -2112 -128) (1472 -2112 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 163 172" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "9797" - side - { - "id" "11035" - "plane" "(1536 -1856 64) (1536 -1728 64) (2240 -1728 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "11034" - "plane" "(1536 -1728 0) (1536 -1856 0) (2240 -1856 0)" - "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" "11033" - "plane" "(1536 -1856 0) (1536 -1728 0) (1536 -1728 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" "11032" - "plane" "(2240 -1728 0) (2240 -1856 0) (2240 -1856 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" "11031" - "plane" "(1536 -1728 0) (2240 -1728 0) (2240 -1728 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" "11030" - "plane" "(2240 -1856 0) (1536 -1856 0) (1536 -1856 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 163 208" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "9890" - side - { - "id" "11275" - "plane" "(2432 -960 80) (2432 -704 80) (2496 -704 80)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "11274" - "plane" "(2432 -704 72) (2432 -960 72) (2496 -960 72)" - "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" "11273" - "plane" "(2432 -960 72) (2432 -704 72) (2432 -704 80)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 -256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "11272" - "plane" "(2496 -704 72) (2496 -960 72) (2496 -960 80)" - "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" "11271" - "plane" "(2432 -704 72) (2496 -704 72) (2496 -704 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "11270" - "plane" "(2496 -960 72) (2432 -960 72) (2432 -960 80)" - "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 139 240" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "9913" - side - { - "id" "11354" - "plane" "(2496 -320 96) (2752 -320 96) (2752 -704 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "11353" - "plane" "(2496 -704 64) (2752 -704 64) (2752 -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" "11352" - "plane" "(2496 -320 64) (2496 -320 96) (2496 -704 96)" - "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" "11351" - "plane" "(2752 -704 64) (2752 -704 96) (2752 -320 96)" - "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" "11350" - "plane" "(2752 -320 64) (2752 -320 96) (2496 -320 96)" - "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" "11349" - "plane" "(2496 -704 64) (2496 -704 96) (2752 -704 96)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 251 136" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "9916" - side - { - "id" "14312" - "plane" "(2240 -640 256) (2240 -576 256) (2496 -576 256)" - "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" "14311" - "plane" "(2240 -576 64) (2240 -640 64) (2496 -640 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" "14310" - "plane" "(2240 -640 64) (2240 -576 64) (2240 -576 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "14309" - "plane" "(2496 -576 64) (2496 -640 64) (2496 -640 256)" - "material" "TILE/HR_T/TILES_C" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "14308" - "plane" "(2240 -576 64) (2496 -576 64) (2496 -576 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "14307" - "plane" "(2496 -640 64) (2240 -640 64) (2240 -640 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 137 234" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11182" - side - { - "id" "32033" - "plane" "(1856 320 128) (1856 448 128) (2176 448 128)" - "material" "RYAN_DEV/DEV_BROWN4" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "32032" - "plane" "(1856 448 64) (1856 320 64) (2176 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" "32031" - "plane" "(1856 320 64) (1856 448 64) (1856 448 128)" - "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" "32030" - "plane" "(2176 448 64) (2176 320 64) (2176 320 128)" - "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" "32029" - "plane" "(1856 448 64) (2176 448 64) (2176 448 128)" - "material" "RYAN_DEV/BROWN2" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "32028" - "plane" "(2176 320 64) (1856 320 64) (1856 320 128)" - "material" "RYAN_DEV/BROWN2" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 217 190" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11217" - side - { - "id" "11785" - "plane" "(1344 448 64) (1344 960 64) (1664 960 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "11784" - "plane" "(1344 960 0) (1344 448 0) (1664 448 0)" - "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" "11783" - "plane" "(1344 448 0) (1344 960 0) (1344 960 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" "11782" - "plane" "(1664 960 0) (1664 448 0) (1664 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" "11781" - "plane" "(1344 960 0) (1664 960 0) (1664 960 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" "11780" - "plane" "(1664 448 0) (1344 448 0) (1344 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 217 190" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11220" - side - { - "id" "11797" - "plane" "(1184 448 64) (1184 768 64) (1344 768 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "11796" - "plane" "(1184 768 0) (1184 448 0) (1344 448 0)" - "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" "11795" - "plane" "(1184 448 0) (1184 768 0) (1184 768 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" "11794" - "plane" "(1344 768 0) (1344 448 0) (1344 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" "11793" - "plane" "(1184 768 0) (1344 768 0) (1344 768 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" "11792" - "plane" "(1344 448 0) (1184 448 0) (1184 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 217 190" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11228" - side - { - "id" "11814" - "plane" "(1344 320 64) (1344 448 64) (1472 448 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "11813" - "plane" "(1472 448 0) (1344 448 0) (1344 320 0)" - "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" "11812" - "plane" "(1344 320 0) (1344 448 0) (1344 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" "11811" - "plane" "(1344 448 0) (1472 448 0) (1472 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" - } - side - { - "id" "11810" - "plane" "(1472 448 0) (1344 320 0) (1344 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" - } - editor - { - "color" "0 217 190" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11229" - side - { - "id" "11826" - "plane" "(608 928 80) (640 896 80) (448 704 80)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "11825" - "plane" "(448 768 64) (448 704 64) (640 896 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" "11824" - "plane" "(608 928 64) (608 928 80) (448 768 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "11823" - "plane" "(448 704 64) (448 704 80) (640 896 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "11822" - "plane" "(640 896 64) (640 896 80) (608 928 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "11821" - "plane" "(448 768 64) (448 768 80) (448 704 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 144 237" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11514" - side - { - "id" "12360" - "plane" "(1472 -960 64) (1472 -576 64) (1728 -576 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "12359" - "plane" "(1472 -576 0) (1472 -960 0) (1728 -960 0)" - "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" "12358" - "plane" "(1472 -960 0) (1472 -576 0) (1472 -576 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" "12357" - "plane" "(1728 -576 0) (1728 -960 0) (1728 -960 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" "12356" - "plane" "(1472 -576 0) (1728 -576 0) (1728 -576 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" "12355" - "plane" "(1728 -960 0) (1472 -960 0) (1472 -960 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 119 112" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "9654" - side - { - "id" "10828" - "plane" "(-1040 -1088 48) (-1040 -704 48) (-960 -704 48)" - "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" "10827" - "plane" "(-1040 -704 0) (-1040 -1088 0) (-960 -1088 0)" - "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" "10826" - "plane" "(-1040 -1088 0) (-1040 -704 0) (-1040 -704 48)" - "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" "10825" - "plane" "(-960 -704 0) (-960 -1088 0) (-960 -1088 48)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "10824" - "plane" "(-1040 -704 0) (-960 -704 0) (-960 -704 48)" - "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" "10823" - "plane" "(-960 -1088 0) (-1040 -1088 0) (-1040 -1088 48)" - "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 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "8161" - side - { - "id" "9946" - "plane" "(48 -1856 80) (48 -1760 80) (64 -1760 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9945" - "plane" "(48 -1760 0) (48 -1856 0) (64 -1856 0)" - "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" "9944" - "plane" "(48 -1856 0) (48 -1760 0) (48 -1760 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9943" - "plane" "(64 -1760 0) (64 -1856 0) (64 -1856 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9942" - "plane" "(48 -1760 0) (64 -1760 0) (64 -1760 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9941" - "plane" "(64 -1856 0) (48 -1856 0) (48 -1856 80)" - "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 176 105" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "8171" - side - { - "id" "97214" - "plane" "(-48 -1856 48) (-48 -1776 48) (48 -1776 48)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - dispinfo - { - "power" "2" - "startposition" "[-48 -1856 48]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 0 0 0 1 0 0 1 0 0 1 0 0 0" - "row1" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1" - "row2" "0 0 0 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 0 0 0 0 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - distances - { - "row0" "0 15.6878 25 15.6878 0" - "row1" "0 0 15.6878 25 15.6878" - "row2" "0 6.38988 13.1994 27.1461 28.135" - "row3" "0 0 8.61866 24.5796 24.5491" - "row4" "6.29541 13.0724 17.4496 22.2083 21.3899" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "0 0 0 0 0" - "row1" "0 0 0 0 0" - "row2" "0 0 0 0 0" - "row3" "0 0 0 0 0" - "row4" "0 0 0 0 0" - } - triangle_tags - { - "row0" "9 0 1 1 9 9 1 1" - "row1" "9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 1 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } - } - side - { - "id" "97213" - "plane" "(-48 -1776 0) (-48 -1856 0) (48 -1856 0)" - "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" "97212" - "plane" "(-48 -1856 0) (-48 -1776 0) (-48 -1776 48)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "97211" - "plane" "(48 -1776 0) (48 -1856 0) (48 -1856 48)" - "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" "97210" - "plane" "(-48 -1776 0) (48 -1776 0) (48 -1776 48)" - "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" "97209" - "plane" "(48 -1856 0) (-48 -1856 0) (-48 -1856 48)" - "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 134 247" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "8181" - side - { - "id" "9982" - "plane" "(-64 -1760 64) (-48 -1760 64) (-48 -1856 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9981" - "plane" "(-64 -1856 0) (-48 -1856 0) (-48 -1760 0)" - "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" "9980" - "plane" "(-64 -1760 0) (-64 -1760 64) (-64 -1856 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9979" - "plane" "(-48 -1856 0) (-48 -1856 64) (-48 -1760 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9978" - "plane" "(-48 -1760 0) (-48 -1760 64) (-64 -1760 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9977" - "plane" "(-64 -1856 0) (-64 -1856 64) (-48 -1856 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 176 105" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "8204" - side - { - "id" "10047" - "plane" "(576 -1952 256) (576 -1920 256) (640 -1920 256)" - "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" "10046" - "plane" "(576 -1920 64) (576 -1952 64) (640 -1952 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" "10045" - "plane" "(576 -1952 64) (576 -1920 64) (576 -1920 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "10044" - "plane" "(640 -1920 64) (640 -1952 64) (640 -1952 256)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 384] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "10043" - "plane" "(576 -1920 64) (640 -1920 64) (640 -1920 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "10042" - "plane" "(640 -1952 64) (576 -1952 64) (576 -1952 256)" - "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 176 105" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "7989" - side - { - "id" "9803" - "plane" "(0 192 256) (0 448 256) (128 448 256)" - "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" "9802" - "plane" "(0 448 64) (0 192 64) (128 192 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" "9801" - "plane" "(0 192 64) (0 448 64) (0 448 256)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9800" - "plane" "(128 448 64) (128 192 64) (128 192 256)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 -256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9799" - "plane" "(0 448 64) (128 448 64) (128 448 256)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9798" - "plane" "(128 192 64) (0 192 64) (0 192 256)" - "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 158 183" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "7773" - side - { - "id" "35286" - "plane" "(704 -320 80) (576 -320 80) (576 -192 128)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "35285" - "plane" "(704 -192 80) (576 -192 80) (576 -320 80)" - "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" "35284" - "plane" "(576 -192 80) (704 -192 80) (704 -192 128)" - "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" "35283" - "plane" "(576 -192 128) (576 -320 80) (576 -192 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "35282" - "plane" "(704 -192 80) (704 -320 80) (704 -192 128)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 226 179" - "groupid" "7772" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "7799" - side - { - "id" "9687" - "plane" "(128 384 256) (128 448 256) (384 640 256)" - "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" "9686" - "plane" "(384 640 0) (128 448 0) (128 384 0)" - "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" "9685" - "plane" "(448 640 0) (448 640 256) (384 640 256)" - "material" "DEV/GRAYGRID" - "uaxis" "[-1 0 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9684" - "plane" "(128 384 0) (128 384 256) (448 384 256)" - "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" "9683" - "plane" "(448 384 0) (448 384 256) (448 640 256)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9682" - "plane" "(128 448 0) (128 448 256) (128 384 256)" - "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" "9681" - "plane" "(384 640 0) (384 640 256) (128 448 256)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "7809" - side - { - "id" "9694" - "plane" "(448 512 96) (448 640 96) (672 864 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9693" - "plane" "(448 512 64) (704 512 64) (704 832 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" "9692" - "plane" "(448 512 64) (448 512 96) (704 512 96)" - "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" "9691" - "plane" "(704 512 64) (704 512 96) (704 832 96)" - "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" "9690" - "plane" "(448 640 64) (448 640 96) (448 512 96)" - "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" "9689" - "plane" "(672 864 64) (672 864 96) (448 640 96)" - "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" "9688" - "plane" "(704 832 64) (704 832 96) (672 864 96)" - "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 226 179" - "groupid" "1004" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "7821" - side - { - "id" "9713" - "plane" "(704 -160 160) (704 -128 160) (896 -128 160)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9712" - "plane" "(704 -128 64) (704 -160 64) (896 -160 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" "9711" - "plane" "(896 -128 64) (896 -160 64) (896 -160 160)" - "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" "9710" - "plane" "(704 -160 64) (704 -128 64) (704 -128 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9709" - "plane" "(896 -160 64) (704 -160 64) (704 -160 160)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9708" - "plane" "(704 -128 64) (896 -128 64) (896 -128 160)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 -256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 158 183" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "6822" - side - { - "id" "9084" - "plane" "(-128 -2944 0) (128 -2944 0) (128 -2752 0)" - "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" "9083" - "plane" "(128 -2752 64) (128 -2752 0) (128 -2944 0)" - "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" "9082" - "plane" "(-128 -2752 0) (128 -2752 0) (128 -2752 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" "9081" - "plane" "(128 -2944 64) (128 -2944 0) (-128 -2944 0)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9080" - "plane" "(-128 -2944 0) (-128 -2752 0) (128 -2752 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "6830" - side - { - "id" "9106" - "plane" "(128 -2944 64) (128 -2720 64) (320 -2720 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9105" - "plane" "(128 -2720 0) (128 -2944 0) (320 -2944 0)" - "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" "9104" - "plane" "(128 -2944 0) (128 -2720 0) (128 -2720 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" "9103" - "plane" "(320 -2720 0) (320 -2944 0) (320 -2944 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" "9102" - "plane" "(128 -2720 0) (320 -2720 0) (320 -2720 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" "9101" - "plane" "(320 -2944 0) (128 -2944 0) (128 -2944 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "6838" - side - { - "id" "9130" - "plane" "(320 -1984 256) (320 -1952 256) (576 -1952 256)" - "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" "9129" - "plane" "(320 -1952 64) (320 -1984 64) (576 -1984 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" "9128" - "plane" "(320 -1984 64) (320 -1952 64) (320 -1952 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9127" - "plane" "(576 -1952 64) (576 -1984 64) (576 -1984 256)" - "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" "9126" - "plane" "(320 -1952 64) (576 -1952 64) (576 -1952 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9125" - "plane" "(576 -1984 64) (320 -1984 64) (320 -1984 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "6853" - side - { - "id" "50304" - "plane" "(-512 -3456 0) (-512 -2752 0) (320 -2752 0)" - "material" "DEV/DEV_BLENDMEASURE" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - dispinfo - { - "power" "4" - "startposition" "[-512 -3456 0]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - distances - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row9" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row10" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row11" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row12" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row13" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row14" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row15" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row16" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row9" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row10" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row11" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row12" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row13" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row14" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row15" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row16" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "0 0 0 0 120 255 255 255 255 178 10 0 0 0 0 0 0" - "row1" "0 0 0 0 0 255 112 189 222 0 15 35 0 0 0 0 0" - "row2" "0 0 0 0 45 172.5 167 121 247.5 120 22.5 0 0 0 0 0 0" - "row3" "0 0 0 0 37.5 120 155.5 136.5 243.5 135 0 0 0 0 0 0 0" - "row4" "71.5 0 0 0 0 37.5 247.5 162 202.5 67.5 0 0 0 0 0 0 0" - "row5" "255 104.5 0 11 82.5 253 225 180 97.5 0 0 0 0 0 0 0 0" - "row6" "255 255 159.5 148.5 136.5 255 255 172.5 61 0 0 0 0 0 0 0 0" - "row7" "255 255 255 247.5 178 244 225 94 0 0 0 0 0 0 0 0 0" - "row8" "255 255 255 249.5 139.5 255 71 5 0 0 0 0 0 0 0 0 0" - "row9" "254 255 189.5 150 46 0 0 0 0 0.5 0 0 0 0 0 0 0" - "row10" "202.5 255 255 216.5 55 0 0 0 0 0 0 0 0 0 0 0 0" - "row11" "0 22 110 216.5 93.5 49.5 0 0 0 0 0 0 0 0 0 0 0" - "row12" "0 0 8.5 150.5 115.5 115.5 134 187.5 75 0 0 0 0 0 0 0 0" - "row13" "0 0 0 66 131 230.5 255 255 100 0 0 0 0 0 0 0 0" - "row14" "0 0 0 0 99 255 255 255 75 0 0 0 0 0 0 0 0" - "row15" "0 0 0 0 44 88 22 210 175 25 0 0 0 0 0 0 0" - "row16" "0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row8" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row9" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row10" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row11" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row12" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row13" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row14" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row15" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } - } - side - { - "id" "50303" - "plane" "(-512 -2752 -64) (-512 -3456 -64) (320 -3456 -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" "50302" - "plane" "(-512 -3456 -64) (-512 -2752 -64) (-512 -2752 0)" - "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" "50301" - "plane" "(320 -2752 -64) (320 -3456 -64) (320 -3456 0)" - "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" "50300" - "plane" "(-512 -2752 -64) (320 -2752 -64) (320 -2752 0)" - "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" "50299" - "plane" "(320 -3456 -64) (-512 -3456 -64) (-512 -3456 0)" - "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 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "6869" - side - { - "id" "57854" - "plane" "(0 -2720 64) (0 -2176 64) (320 -2176 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "57853" - "plane" "(0 -2176 0) (0 -2720 0) (320 -2720 0)" - "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" "57852" - "plane" "(0 -2720 0) (0 -2176 0) (0 -2176 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "57851" - "plane" "(320 -2176 0) (320 -2720 0) (320 -2720 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" "57850" - "plane" "(0 -2176 0) (320 -2176 0) (320 -2176 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" "57849" - "plane" "(320 -2720 0) (0 -2720 0) (0 -2720 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 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2248" - side - { - "id" "6305" - "plane" "(1330 768 176) (1336 768 176) (1336 776 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6304" - "plane" "(1336 776 182) (1336 768 182) (1330 768 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6303" - "plane" "(1328 776 182) (1328 770 182) (1328 770 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6302" - "plane" "(1336 768 182) (1336 776 182) (1336 776 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6301" - "plane" "(1336 776 182) (1328 776 182) (1328 776 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6300" - "plane" "(1330 768 182) (1336 768 182) (1336 768 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -128.697] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6299" - "plane" "(1328 770 182) (1330 768 182) (1330 768 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2249" - side - { - "id" "6311" - "plane" "(1336 768 182) (1336 776 182) (1328 776 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -128.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6310" - "plane" "(1336 776 202) (1336 768 202) (1328 768 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6309" - "plane" "(1328 776 202) (1328 768 202) (1328 768 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6308" - "plane" "(1336 768 202) (1336 776 202) (1336 776 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6307" - "plane" "(1336 776 202) (1328 776 202) (1328 776 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6306" - "plane" "(1328 768 202) (1336 768 202) (1336 768 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -128.697] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2250" - side - { - "id" "6317" - "plane" "(1328 768 202) (1336 768 202) (1336 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6316" - "plane" "(1328 776 228) (1336 776 228) (1336 768 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6315" - "plane" "(1328 776 228) (1328 768 228) (1328 768 202)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 432.663] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6314" - "plane" "(1336 776 228) (1328 776 228) (1328 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6313" - "plane" "(1328 768 228) (1336 768 228) (1336 768 202)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 320.695] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6312" - "plane" "(1336 768 228) (1336 776 228) (1336 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2251" - side - { - "id" "6323" - "plane" "(1336 768 228) (1336 776 228) (1328 776 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 304.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6322" - "plane" "(1336 776 244) (1336 768 244) (1328 768 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6321" - "plane" "(1336 768 244) (1336 776 244) (1336 776 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6320" - "plane" "(1328 776 244) (1328 768 244) (1328 768 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -160.663] 0.25" - "vaxis" "[0 0 1 -457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6319" - "plane" "(1336 776 244) (1328 776 244) (1328 776 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 1 14.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6318" - "plane" "(1328 768 244) (1336 768 244) (1336 768 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 304.697] 0.25" - "vaxis" "[0 0 1 -457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2252" - side - { - "id" "6329" - "plane" "(1328 780 124) (1340 780 124) (1340 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6328" - "plane" "(1328 768 116) (1340 768 116) (1340 780 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6327" - "plane" "(1328 780 124) (1328 768 124) (1328 768 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6326" - "plane" "(1340 780 124) (1328 780 124) (1328 780 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6325" - "plane" "(1328 768 124) (1340 768 124) (1340 768 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -128.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6324" - "plane" "(1340 768 124) (1340 780 124) (1340 780 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -480.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2253" - side - { - "id" "6335" - "plane" "(1186 776 420) (1186 768 420) (764 768 420)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6334" - "plane" "(1186 768 412) (1186 776 412) (764 776 412)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6333" - "plane" "(1186 768 420) (1186 776 420) (1186 776 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6332" - "plane" "(764 776 420) (764 768 420) (764 768 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6331" - "plane" "(1186 776 420) (764 776 420) (764 776 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6330" - "plane" "(764 768 420) (1186 768 420) (1186 768 412)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 109.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2254" - side - { - "id" "6343" - "plane" "(954 768 376) (994 768 376) (996 770 376)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6342" - "plane" "(996 770 376) (996 770 412) (996 776 412)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 448.663] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6341" - "plane" "(952 776 376) (952 776 412) (952 770 412)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -400.656] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6340" - "plane" "(996 776 376) (996 776 412) (952 776 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6339" - "plane" "(954 768 376) (954 768 412) (994 768 412)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 96.6973] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6338" - "plane" "(952 770 376) (952 770 412) (954 768 412)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 0.707107 0 -201.556] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6337" - "plane" "(994 768 376) (994 768 412) (996 770 412)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 0.980075] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6336" - "plane" "(996 776 412) (996 770 412) (994 768 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2255" - side - { - "id" "6351" - "plane" "(838 768 376) (878 768 376) (880 770 376)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6350" - "plane" "(880 770 376) (880 770 412) (880 776 412)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 448.663] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6349" - "plane" "(836 776 376) (836 776 412) (836 770 412)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -400.656] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6348" - "plane" "(880 776 376) (880 776 412) (836 776 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6347" - "plane" "(838 768 376) (838 768 412) (878 768 412)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 144.697] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6346" - "plane" "(836 770 376) (836 770 412) (838 768 412)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 0.707107 0 -17.6514] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6345" - "plane" "(878 768 376) (878 768 412) (880 770 412)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 184.882] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6344" - "plane" "(880 776 412) (880 770 412) (878 768 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2256" - side - { - "id" "6359" - "plane" "(1070 768 376) (1110 768 376) (1112 770 376)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6358" - "plane" "(1112 770 376) (1112 770 412) (1112 776 412)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 448.663] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6357" - "plane" "(1068 776 376) (1068 776 412) (1068 770 412)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -400.656] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6356" - "plane" "(1112 776 376) (1112 776 412) (1068 776 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6355" - "plane" "(1070 768 376) (1070 768 412) (1110 768 412)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 48.6973] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6354" - "plane" "(1068 770 376) (1068 770 412) (1070 768 412)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 0.707107 0 -385.458] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6353" - "plane" "(1110 768 376) (1110 768 412) (1112 770 412)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 329.078] 0.25" - "vaxis" "[0 0 -1 421.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6352" - "plane" "(1112 776 412) (1112 770 412) (1110 768 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2257" - side - { - "id" "6365" - "plane" "(1336 776 244) (1160 776 244) (1160 768 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6364" - "plane" "(1336 768 288) (1160 768 288) (1160 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6363" - "plane" "(1336 768 288) (1336 776 288) (1336 776 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 2.69312] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6362" - "plane" "(1336 776 288) (1160 776 288) (1160 776 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 0 1 2.69312] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6361" - "plane" "(1160 768 288) (1336 768 288) (1336 768 244)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 320.695] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6360" - "plane" "(1160 776 288) (1160 768 288) (1160 768 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2258" - side - { - "id" "6372" - "plane" "(1324 964 96) (1340 964 96) (1340 768 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[1 0 0 31.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6371" - "plane" "(1324 784 64) (1344 764 64) (1344 964 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[1 0 0 31.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6370" - "plane" "(1344 964 92) (1340 964 96) (1324 964 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6369" - "plane" "(1324 784 96) (1340 768 96) (1344 764 92)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6368" - "plane" "(1324 964 96) (1324 784 96) (1324 784 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6367" - "plane" "(1344 764 92) (1344 964 92) (1344 964 64)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 368.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6366" - "plane" "(1340 964 96) (1344 964 92) (1344 764 92)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -464.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2259" - side - { - "id" "6378" - "plane" "(1324 964 116) (1340 964 116) (1340 784 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[1 0 0 -0.697266] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6377" - "plane" "(1324 784 96) (1340 784 96) (1340 964 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[1 0 0 -0.697266] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6376" - "plane" "(1340 964 116) (1324 964 116) (1324 964 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6375" - "plane" "(1324 784 116) (1340 784 116) (1340 784 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6374" - "plane" "(1324 964 116) (1324 784 116) (1324 784 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6373" - "plane" "(1340 784 116) (1340 964 116) (1340 964 96)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 80.6582] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2260" - side - { - "id" "6384" - "plane" "(1328 770 136) (1328 776 136) (1336 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6383" - "plane" "(1330 768 128) (1336 768 128) (1328 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6382" - "plane" "(1328 776 136) (1328 770 136) (1328 770 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6381" - "plane" "(1330 768 136) (1336 768 136) (1336 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -128.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6380" - "plane" "(1328 770 136) (1330 768 136) (1330 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6379" - "plane" "(1336 768 136) (1328 776 136) (1328 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2261" - side - { - "id" "6389" - "plane" "(1328 776 128) (1336 768 128) (1328 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -128.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6388" - "plane" "(1336 768 124) (1328 776 124) (1328 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6387" - "plane" "(1328 776 128) (1328 768 128) (1328 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6386" - "plane" "(1328 768 128) (1336 768 128) (1336 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -128.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6385" - "plane" "(1336 768 128) (1328 776 128) (1328 776 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -480.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2262" - side - { - "id" "6396" - "plane" "(1338 768 136) (1336 768 136) (1336 772 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6395" - "plane" "(1338 768 128) (1340 770 128) (1340 772 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6394" - "plane" "(1340 770 136) (1340 772 136) (1340 772 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6393" - "plane" "(1336 768 136) (1338 768 136) (1338 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 336.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6392" - "plane" "(1338 768 136) (1340 770 136) (1340 770 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6391" - "plane" "(1336 772 136) (1336 768 136) (1336 768 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6390" - "plane" "(1340 772 136) (1336 772 136) (1336 772 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2263" - side - { - "id" "6402" - "plane" "(1336 768 128) (1336 772 128) (1340 772 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 336.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6401" - "plane" "(1340 768 124) (1340 772 124) (1336 772 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6400" - "plane" "(1340 768 128) (1340 772 128) (1340 772 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6399" - "plane" "(1336 768 128) (1340 768 128) (1340 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 336.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6398" - "plane" "(1336 772 128) (1336 768 128) (1336 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -480.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6397" - "plane" "(1340 772 128) (1336 772 128) (1336 772 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -128.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2264" - side - { - "id" "6410" - "plane" "(1328 770 176) (1328 780 176) (1340 780 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6409" - "plane" "(1328 770 136) (1330 768 136) (1338 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6408" - "plane" "(1328 780 176) (1328 770 176) (1328 770 136)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 480.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6407" - "plane" "(1340 780 176) (1328 780 176) (1328 780 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6406" - "plane" "(1330 768 176) (1338 768 176) (1338 768 136)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 320.695] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6405" - "plane" "(1328 770 176) (1330 768 176) (1330 768 136)" - "material" "BRICK/WALL20" - "uaxis" "[0.707107 -0.707107 0 242.06] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6404" - "plane" "(1340 770 176) (1340 780 176) (1340 780 136)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 320.662] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6403" - "plane" "(1338 768 176) (1340 770 176) (1340 770 136)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 333.958] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2265" - side - { - "id" "6416" - "plane" "(1333 948 123) (1334 948 123) (1334 884 123)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6415" - "plane" "(1333 884 122) (1334 884 122) (1334 948 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6414" - "plane" "(1334 948 123) (1333 948 123) (1333 948 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6413" - "plane" "(1333 884 123) (1334 884 123) (1334 884 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6412" - "plane" "(1333 948 123) (1333 884 123) (1333 884 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6411" - "plane" "(1334 884 123) (1334 948 123) (1334 948 122)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 316.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2266" - side - { - "id" "6422" - "plane" "(1332 780 244) (1340 780 244) (1340 952 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6421" - "plane" "(1340 952 440) (1340 780 440) (1332 780 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6420" - "plane" "(1340 952 440) (1332 952 440) (1332 952 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 2.69312] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6419" - "plane" "(1332 952 440) (1332 780 440) (1332 780 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[0 0 1 2.69312] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6418" - "plane" "(1340 780 440) (1340 952 440) (1340 952 244)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 320.662] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6417" - "plane" "(1332 780 440) (1340 780 440) (1340 780 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2267" - side - { - "id" "6429" - "plane" "(1336 856 191) (1337 856 192) (1337 856 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6428" - "plane" "(1328 856 194) (1328 825 194) (1328 825 191)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[0 -1 0 -23.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6427" - "plane" "(1328 825 191) (1336 825 191) (1336 856 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6426" - "plane" "(1336 825 191) (1337 825 192) (1337 856 192)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6425" - "plane" "(1337 825 192) (1337 825 194) (1337 856 194)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 245.307] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6424" - "plane" "(1337 856 194) (1337 825 194) (1328 825 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[1 0 0 31.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6423" - "plane" "(1336 825 191) (1328 825 191) (1328 825 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2268" - side - { - "id" "6435" - "plane" "(1332 948 244) (1340 948 244) (1340 792 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6434" - "plane" "(1332 792 236) (1340 792 236) (1340 948 236)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 428.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6433" - "plane" "(1340 948 244) (1332 948 244) (1332 948 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6432" - "plane" "(1332 792 244) (1340 792 244) (1340 792 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6431" - "plane" "(1332 948 244) (1332 792 244) (1332 792 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6430" - "plane" "(1340 792 244) (1340 948 244) (1340 948 236)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 428.66] 0.25" - "vaxis" "[0 0 -1 429.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2269" - side - { - "id" "6441" - "plane" "(1333 948 122) (1335 948 122) (1335 884 122)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 316.66] 0.25" - "vaxis" "[1 0 0 -4.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6440" - "plane" "(1333 884 120) (1335 884 120) (1335 948 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6439" - "plane" "(1335 948 122) (1333 948 122) (1333 948 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6438" - "plane" "(1333 884 122) (1335 884 122) (1335 884 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6437" - "plane" "(1333 948 122) (1333 884 122) (1333 884 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6436" - "plane" "(1335 884 122) (1335 948 122) (1335 948 120)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 316.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2270" - side - { - "id" "6449" - "plane" "(1338 918 126) (1338 914 126) (1328 914 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 252.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6448" - "plane" "(1328 913 120) (1338 913 120) (1338 919 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -7.33984] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6447" - "plane" "(1338 919 125) (1328 919 125) (1328 919 120)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6446" - "plane" "(1328 913 125) (1338 913 125) (1338 913 120)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6445" - "plane" "(1328 919 125) (1328 918 126) (1328 914 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -7.33984] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6444" - "plane" "(1338 913 125) (1338 914 126) (1338 918 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 252.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6443" - "plane" "(1328 914 126) (1338 914 126) (1338 913 125)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6442" - "plane" "(1338 918 126) (1328 918 126) (1328 919 125)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2271" - side - { - "id" "6456" - "plane" "(1333 948 125) (1334 948 125) (1334 884 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 316.66] 0.25" - "vaxis" "[1 0 0 -4.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6455" - "plane" "(1333 884 123) (1335 884 123) (1335 948 123)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 316.66] 0.25" - "vaxis" "[1 0 0 -4.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6454" - "plane" "(1335 948 124) (1334 948 125) (1333 948 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6453" - "plane" "(1333 884 125) (1334 884 125) (1335 884 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6452" - "plane" "(1333 948 125) (1333 884 125) (1333 884 123)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6451" - "plane" "(1335 884 124) (1335 948 124) (1335 948 123)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 316.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6450" - "plane" "(1334 948 125) (1335 948 124) (1335 884 124)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 -348.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2272" - side - { - "id" "6462" - "plane" "(1333 920 192) (1334 920 192) (1334 918 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -11.3398] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6461" - "plane" "(1333 918 125) (1334 918 125) (1334 920 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -11.3398] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6460" - "plane" "(1334 920 192) (1333 920 192) (1333 920 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6459" - "plane" "(1333 918 192) (1334 918 192) (1334 918 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6458" - "plane" "(1333 920 192) (1333 918 192) (1333 918 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -11.3398] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6457" - "plane" "(1334 918 192) (1334 920 192) (1334 920 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 284.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2273" - side - { - "id" "6470" - "plane" "(1328 918 228) (1336 918 228) (1337 917 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -7.33984] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6469" - "plane" "(1328 914 126) (1336 914 126) (1337 915 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -7.33984] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6468" - "plane" "(1328 918 228) (1328 914 228) (1328 914 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -7.33984] 0.25" - "vaxis" "[0 0 -1 45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6467" - "plane" "(1328 914 228) (1336 914 228) (1336 914 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6466" - "plane" "(1336 918 228) (1328 918 228) (1328 918 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6465" - "plane" "(1337 917 228) (1336 918 228) (1336 918 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6464" - "plane" "(1336 914 228) (1337 915 228) (1337 915 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6463" - "plane" "(1337 915 228) (1337 917 228) (1337 917 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -348.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2274" - side - { - "id" "6476" - "plane" "(1333 914 192) (1334 914 192) (1334 912 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 28.6602] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6475" - "plane" "(1333 912 125) (1334 912 125) (1334 914 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 28.6602] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6474" - "plane" "(1334 914 192) (1333 914 192) (1333 914 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6473" - "plane" "(1333 912 192) (1334 912 192) (1334 912 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6472" - "plane" "(1333 914 192) (1333 912 192) (1333 912 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 28.6602] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6471" - "plane" "(1334 912 192) (1334 914 192) (1334 914 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 284.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2275" - side - { - "id" "6482" - "plane" "(1332 948 236) (1333 948 236) (1333 884 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[1 0 0 11.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6481" - "plane" "(1332 884 120) (1333 884 120) (1333 948 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[1 0 0 11.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6480" - "plane" "(1333 948 236) (1332 948 236) (1332 948 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -11.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6479" - "plane" "(1332 884 236) (1333 884 236) (1333 884 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -11.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6478" - "plane" "(1332 948 236) (1332 884 236) (1332 884 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6477" - "plane" "(1333 884 236) (1333 948 236) (1333 948 120)" - "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" - "uaxis" "[0 -1 0 416] 0.125" - "vaxis" "[0 0 -1 17.6552] 0.226563" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2276" - side - { - "id" "6488" - "plane" "(1333 948 231) (1334 948 231) (1334 946 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -27.3398] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6487" - "plane" "(1333 946 125) (1334 946 125) (1334 948 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -27.3398] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6486" - "plane" "(1334 948 231) (1333 948 231) (1333 948 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6485" - "plane" "(1333 946 231) (1334 946 231) (1334 946 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6484" - "plane" "(1333 948 231) (1333 946 231) (1333 946 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -27.3398] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6483" - "plane" "(1334 946 231) (1334 948 231) (1334 948 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 252.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2277" - side - { - "id" "6495" - "plane" "(1336 948 191) (1337 948 192) (1337 948 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6494" - "plane" "(1328 948 194) (1328 917 194) (1328 917 191)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[0 -1 0 24.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6493" - "plane" "(1328 917 191) (1336 917 191) (1336 948 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 360.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6492" - "plane" "(1336 917 191) (1337 917 192) (1337 948 192)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 360.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6491" - "plane" "(1337 917 192) (1337 917 194) (1337 948 194)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 245.307] 0.25" - "vaxis" "[0 -1 0 360.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6490" - "plane" "(1337 948 194) (1337 917 194) (1328 917 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -28.6602] 0.25" - "vaxis" "[1 0 0 31.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6489" - "plane" "(1336 917 191) (1328 917 191) (1328 917 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2278" - side - { - "id" "6501" - "plane" "(1333 948 191) (1335 948 191) (1335 884 191)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6500" - "plane" "(1333 884 189) (1335 884 189) (1335 948 189)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 316.66] 0.25" - "vaxis" "[1 0 0 -4.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6499" - "plane" "(1335 948 191) (1333 948 191) (1333 948 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6498" - "plane" "(1333 884 191) (1335 884 191) (1335 884 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6497" - "plane" "(1333 948 191) (1333 884 191) (1333 884 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6496" - "plane" "(1335 884 191) (1335 948 191) (1335 948 189)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 316.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2279" - side - { - "id" "6508" - "plane" "(1336 884 191) (1328 884 191) (1328 884 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6507" - "plane" "(1328 915 191) (1328 915 194) (1328 884 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[0 -1 0 24.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6506" - "plane" "(1336 884 191) (1336 915 191) (1328 915 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 360.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6505" - "plane" "(1337 884 192) (1337 915 192) (1336 915 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 360.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6504" - "plane" "(1337 884 194) (1337 915 194) (1337 915 192)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 245.307] 0.25" - "vaxis" "[0 -1 0 360.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6503" - "plane" "(1328 915 194) (1337 915 194) (1337 884 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -28.6602] 0.25" - "vaxis" "[1 0 0 31.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6502" - "plane" "(1336 915 191) (1337 915 192) (1337 915 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2280" - side - { - "id" "6516" - "plane" "(1338 914 228) (1338 918 228) (1328 918 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 252.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6515" - "plane" "(1328 919 234) (1338 919 234) (1338 913 234)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -7.33984] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6514" - "plane" "(1328 919 234) (1328 919 229) (1338 919 229)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6513" - "plane" "(1338 913 234) (1338 913 229) (1328 913 229)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6512" - "plane" "(1328 919 229) (1328 919 234) (1328 913 234)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -7.33984] 0.25" - "vaxis" "[0 0 1 2.69312] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6511" - "plane" "(1338 913 229) (1338 913 234) (1338 919 234)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 252.66] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6510" - "plane" "(1328 913 229) (1338 913 229) (1338 914 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6509" - "plane" "(1338 919 229) (1328 919 229) (1328 918 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2281" - side - { - "id" "6522" - "plane" "(1333 948 233) (1335 948 233) (1335 884 233)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6521" - "plane" "(1333 884 231) (1335 884 231) (1335 948 231)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 316.66] 0.25" - "vaxis" "[1 0 0 -4.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6520" - "plane" "(1335 948 233) (1333 948 233) (1333 948 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6519" - "plane" "(1333 884 233) (1335 884 233) (1335 884 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6518" - "plane" "(1333 948 233) (1333 884 233) (1333 884 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6517" - "plane" "(1335 884 233) (1335 948 233) (1335 948 231)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 316.66] 0.25" - "vaxis" "[0 0 -1 457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2282" - side - { - "id" "6529" - "plane" "(1336 948 233) (1337 948 234) (1337 948 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6528" - "plane" "(1336 884 233) (1328 884 233) (1328 884 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6527" - "plane" "(1328 948 233) (1328 948 236) (1328 884 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[0 -1 0 24.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6526" - "plane" "(1328 884 233) (1336 884 233) (1336 948 233)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 360.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6525" - "plane" "(1336 884 233) (1337 884 234) (1337 948 234)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 360.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6524" - "plane" "(1337 884 234) (1337 884 236) (1337 948 236)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 413.307] 0.25" - "vaxis" "[0 -1 0 360.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6523" - "plane" "(1328 948 236) (1337 948 236) (1337 884 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -28.6602] 0.25" - "vaxis" "[1 0 0 31.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2283" - side - { - "id" "6537" - "plane" "(1332 884 174) (1338 884 174) (1340 882 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -19.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6536" - "plane" "(1332 856 136) (1338 856 136) (1340 858 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -19.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6535" - "plane" "(1338 884 174) (1332 884 174) (1332 884 136)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -0.693359] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6534" - "plane" "(1332 856 174) (1338 856 174) (1338 856 136)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 112.701] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6533" - "plane" "(1332 884 174) (1332 856 174) (1332 856 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -19.3398] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6532" - "plane" "(1340 858 174) (1340 882 174) (1340 882 136)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 460.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6531" - "plane" "(1338 856 174) (1340 858 174) (1340 858 136)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 367.346] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6530" - "plane" "(1340 882 174) (1338 884 174) (1338 884 136)" - "material" "BRICK/WALL20" - "uaxis" "[0.707107 -0.707107 0 53.3897] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2284" - side - { - "id" "6543" - "plane" "(1332 864 174) (1340 864 174) (1340 876 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6542" - "plane" "(1332 876 186) (1340 876 186) (1340 864 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6541" - "plane" "(1340 876 186) (1332 876 186) (1332 876 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6540" - "plane" "(1332 864 186) (1340 864 186) (1340 864 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6539" - "plane" "(1332 876 186) (1332 864 186) (1332 864 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6538" - "plane" "(1340 864 186) (1340 876 186) (1340 876 174)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 460.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2285" - side - { - "id" "6549" - "plane" "(1332 856 182) (1340 856 182) (1340 864 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 364.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6548" - "plane" "(1332 864 186) (1340 864 186) (1340 856 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -19.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6547" - "plane" "(1340 864 186) (1332 864 186) (1332 864 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6546" - "plane" "(1332 856 186) (1340 856 186) (1340 856 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6545" - "plane" "(1332 864 186) (1332 856 186) (1332 856 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -19.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6544" - "plane" "(1340 856 186) (1340 864 186) (1340 864 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 364.66] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2286" - side - { - "id" "6555" - "plane" "(1332 856 186) (1340 856 186) (1340 884 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6554" - "plane" "(1332 884 194) (1340 884 194) (1340 856 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6553" - "plane" "(1340 884 194) (1332 884 194) (1332 884 186)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6552" - "plane" "(1332 856 194) (1340 856 194) (1340 856 186)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6551" - "plane" "(1332 884 194) (1332 856 194) (1332 856 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 1 -13.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6550" - "plane" "(1340 856 194) (1340 884 194) (1340 884 186)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 364.66] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2287" - side - { - "id" "6562" - "plane" "(1332 856 174) (1338 856 174) (1340 858 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -19.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6561" - "plane" "(1332 864 182) (1340 864 182) (1340 858 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -19.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6560" - "plane" "(1340 864 182) (1332 864 182) (1332 864 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6559" - "plane" "(1332 856 182) (1338 856 182) (1338 856 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6558" - "plane" "(1332 864 182) (1332 856 182) (1332 856 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -19.3398] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6557" - "plane" "(1340 858 182) (1340 864 182) (1340 864 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 364.66] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6556" - "plane" "(1338 856 182) (1340 858 182) (1340 858 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2288" - side - { - "id" "6569" - "plane" "(1332 876 174) (1340 876 174) (1340 882 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6568" - "plane" "(1332 884 182) (1338 884 182) (1340 882 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6567" - "plane" "(1338 884 182) (1332 884 182) (1332 884 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6566" - "plane" "(1332 876 182) (1340 876 182) (1340 876 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6565" - "plane" "(1332 884 182) (1332 876 182) (1332 876 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6564" - "plane" "(1340 876 182) (1340 882 182) (1340 882 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 364.66] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6563" - "plane" "(1340 882 182) (1338 884 182) (1338 884 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2289" - side - { - "id" "6575" - "plane" "(1332 876 182) (1340 876 182) (1340 884 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 364.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6574" - "plane" "(1332 884 186) (1340 884 186) (1340 876 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6573" - "plane" "(1340 884 186) (1332 884 186) (1332 884 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6572" - "plane" "(1332 876 186) (1340 876 186) (1340 876 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6571" - "plane" "(1332 884 186) (1332 876 186) (1332 876 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6570" - "plane" "(1340 876 186) (1340 884 186) (1340 884 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 364.66] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2290" - side - { - "id" "6581" - "plane" "(1332 856 197) (1340 856 197) (1340 884 197)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6580" - "plane" "(1332 884 199) (1340 884 199) (1340 856 199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6579" - "plane" "(1340 884 199) (1332 884 199) (1332 884 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -281.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6578" - "plane" "(1332 856 199) (1340 856 199) (1340 856 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -281.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6577" - "plane" "(1332 884 199) (1332 856 199) (1332 856 197)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 1 -33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6576" - "plane" "(1340 856 199) (1340 884 199) (1340 884 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 364.66] 0.25" - "vaxis" "[0 0 1 -281.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2291" - side - { - "id" "6589" - "plane" "(1332 884 236) (1338 884 236) (1340 882 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -19.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6588" - "plane" "(1332 856 199) (1338 856 199) (1340 858 199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -19.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6587" - "plane" "(1338 884 236) (1332 884 236) (1332 884 199)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -0.693359] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6586" - "plane" "(1332 856 236) (1338 856 236) (1338 856 199)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 112.701] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6585" - "plane" "(1332 884 236) (1332 856 236) (1332 856 199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -19.3398] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6584" - "plane" "(1340 858 236) (1340 882 236) (1340 882 199)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 460.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6583" - "plane" "(1338 856 236) (1340 858 236) (1340 858 199)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 367.346] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6582" - "plane" "(1340 882 236) (1338 884 236) (1338 884 199)" - "material" "BRICK/WALL20" - "uaxis" "[0.707107 -0.707107 0 53.3897] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2292" - side - { - "id" "6595" - "plane" "(1333 856 231) (1334 856 231) (1334 854 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -11.3398] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6594" - "plane" "(1333 854 125) (1334 854 125) (1334 856 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -11.3398] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6593" - "plane" "(1334 856 231) (1333 856 231) (1333 856 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6592" - "plane" "(1333 854 231) (1334 854 231) (1334 854 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6591" - "plane" "(1333 856 231) (1333 854 231) (1333 854 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -11.3398] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6590" - "plane" "(1334 854 231) (1334 856 231) (1334 856 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 396.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2293" - side - { - "id" "6601" - "plane" "(1332 856 236) (1333 856 236) (1333 792 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 11.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6600" - "plane" "(1332 792 120) (1333 792 120) (1333 856 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 11.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6599" - "plane" "(1333 856 236) (1332 856 236) (1332 856 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -11.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6598" - "plane" "(1332 792 236) (1333 792 236) (1333 792 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -11.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6597" - "plane" "(1332 856 236) (1332 792 236) (1332 792 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6596" - "plane" "(1333 792 236) (1333 856 236) (1333 856 120)" - "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" - "uaxis" "[0 -1 0 192] 0.125" - "vaxis" "[0 0 -1 17.6552] 0.226563" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2294" - side - { - "id" "6609" - "plane" "(1328 826 228) (1336 826 228) (1337 825 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 8.66016] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6608" - "plane" "(1328 822 126) (1336 822 126) (1337 823 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 8.66016] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6607" - "plane" "(1328 826 228) (1328 822 228) (1328 822 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 8.66016] 0.25" - "vaxis" "[0 0 -1 45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6606" - "plane" "(1328 822 228) (1336 822 228) (1336 822 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6605" - "plane" "(1336 826 228) (1328 826 228) (1328 826 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6604" - "plane" "(1337 825 228) (1336 826 228) (1336 826 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6603" - "plane" "(1336 822 228) (1337 823 228) (1337 823 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6602" - "plane" "(1337 823 228) (1337 825 228) (1337 825 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2295" - side - { - "id" "6617" - "plane" "(1338 822 228) (1338 826 228) (1328 826 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 396.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6616" - "plane" "(1328 827 234) (1338 827 234) (1338 821 234)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 8.66016] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6615" - "plane" "(1328 827 234) (1328 827 229) (1338 827 229)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6614" - "plane" "(1338 821 234) (1338 821 229) (1328 821 229)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6613" - "plane" "(1328 827 229) (1328 827 234) (1328 821 234)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 8.66016] 0.25" - "vaxis" "[0 0 1 2.69312] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6612" - "plane" "(1338 821 229) (1338 821 234) (1338 827 234)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 396.66] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6611" - "plane" "(1328 821 229) (1338 821 229) (1338 822 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6610" - "plane" "(1338 827 229) (1328 827 229) (1328 826 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2296" - side - { - "id" "6623" - "plane" "(1333 856 233) (1335 856 233) (1335 792 233)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6622" - "plane" "(1333 792 231) (1335 792 231) (1335 856 231)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 460.66] 0.25" - "vaxis" "[1 0 0 -4.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6621" - "plane" "(1335 856 233) (1333 856 233) (1333 856 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6620" - "plane" "(1333 792 233) (1335 792 233) (1335 792 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6619" - "plane" "(1333 856 233) (1333 792 233) (1333 792 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6618" - "plane" "(1335 792 233) (1335 856 233) (1335 856 231)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 460.66] 0.25" - "vaxis" "[0 0 -1 457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2297" - side - { - "id" "6630" - "plane" "(1336 856 233) (1337 856 234) (1337 856 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6629" - "plane" "(1336 792 233) (1328 792 233) (1328 792 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6628" - "plane" "(1328 856 233) (1328 856 236) (1328 792 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[0 -1 0 -23.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6627" - "plane" "(1328 792 233) (1336 792 233) (1336 856 233)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6626" - "plane" "(1336 792 233) (1337 792 234) (1337 856 234)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6625" - "plane" "(1337 792 234) (1337 792 236) (1337 856 236)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 413.307] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6624" - "plane" "(1328 856 236) (1337 856 236) (1337 792 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[1 0 0 31.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2298" - side - { - "id" "6636" - "plane" "(1333 856 191) (1335 856 191) (1335 792 191)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6635" - "plane" "(1333 792 189) (1335 792 189) (1335 856 189)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 460.66] 0.25" - "vaxis" "[1 0 0 -4.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6634" - "plane" "(1335 856 191) (1333 856 191) (1333 856 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6633" - "plane" "(1333 792 191) (1335 792 191) (1335 792 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6632" - "plane" "(1333 856 191) (1333 792 191) (1333 792 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6631" - "plane" "(1335 792 191) (1335 856 191) (1335 856 189)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 460.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2299" - side - { - "id" "6643" - "plane" "(1336 792 191) (1328 792 191) (1328 792 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6642" - "plane" "(1328 823 191) (1328 823 194) (1328 792 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[0 -1 0 -23.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6641" - "plane" "(1336 792 191) (1336 823 191) (1328 823 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6640" - "plane" "(1337 792 192) (1337 823 192) (1336 823 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6639" - "plane" "(1337 792 194) (1337 823 194) (1337 823 192)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 245.307] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6638" - "plane" "(1328 823 194) (1337 823 194) (1337 792 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[1 0 0 31.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6637" - "plane" "(1336 823 191) (1337 823 192) (1337 823 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2300" - side - { - "id" "6649" - "plane" "(1328 948 197) (1340 948 197) (1340 792 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[1 0 0 -128.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6648" - "plane" "(1328 792 194) (1340 792 194) (1340 948 194)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 428.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6647" - "plane" "(1340 948 197) (1328 948 197) (1328 948 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 13.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6646" - "plane" "(1328 792 197) (1340 792 197) (1340 792 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 13.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6645" - "plane" "(1328 948 197) (1328 792 197) (1328 792 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 -1 13.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6644" - "plane" "(1340 792 197) (1340 948 197) (1340 948 194)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 428.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2301" - side - { - "id" "6655" - "plane" "(1333 828 192) (1334 828 192) (1334 826 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 4.66016] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6654" - "plane" "(1333 826 125) (1334 826 125) (1334 828 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 4.66016] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6653" - "plane" "(1334 828 192) (1333 828 192) (1333 828 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6652" - "plane" "(1333 826 192) (1334 826 192) (1334 826 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6651" - "plane" "(1333 828 192) (1333 826 192) (1333 826 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 4.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6650" - "plane" "(1334 826 192) (1334 828 192) (1334 828 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 428.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2302" - side - { - "id" "6661" - "plane" "(1333 822 192) (1334 822 192) (1334 820 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -19.3398] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6660" - "plane" "(1333 820 125) (1334 820 125) (1334 822 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -19.3398] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6659" - "plane" "(1334 822 192) (1333 822 192) (1333 822 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6658" - "plane" "(1333 820 192) (1334 820 192) (1334 820 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6657" - "plane" "(1333 822 192) (1333 820 192) (1333 820 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -19.3398] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6656" - "plane" "(1334 820 192) (1334 822 192) (1334 822 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 428.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2303" - side - { - "id" "6667" - "plane" "(1333 794 231) (1334 794 231) (1334 792 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6666" - "plane" "(1333 792 125) (1334 792 125) (1334 794 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6665" - "plane" "(1334 794 231) (1333 794 231) (1333 794 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6664" - "plane" "(1333 792 231) (1334 792 231) (1334 792 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6663" - "plane" "(1333 794 231) (1333 792 231) (1333 792 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -3.33984] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6662" - "plane" "(1334 792 231) (1334 794 231) (1334 794 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 460.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2304" - side - { - "id" "6673" - "plane" "(1332 784 228) (1340 784 228) (1340 792 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -252.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6672" - "plane" "(1332 792 244) (1340 792 244) (1340 784 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6671" - "plane" "(1332 784 244) (1340 784 244) (1340 784 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6670" - "plane" "(1340 792 244) (1332 792 244) (1332 792 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 352.693] 0.25" - "vaxis" "[0 0 1 -457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6669" - "plane" "(1332 792 244) (1332 784 244) (1332 784 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 1 14.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6668" - "plane" "(1340 784 244) (1340 792 244) (1340 792 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -252.66] 0.25" - "vaxis" "[0 0 1 -457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2305" - side - { - "id" "6679" - "plane" "(1332 784 202) (1340 784 202) (1340 792 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6678" - "plane" "(1340 792 228) (1340 784 228) (1332 784 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6677" - "plane" "(1340 792 228) (1332 792 228) (1332 792 202)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -80.6953] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6676" - "plane" "(1332 792 228) (1332 784 228) (1332 784 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6675" - "plane" "(1340 784 228) (1340 792 228) (1340 792 202)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 320.662] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6674" - "plane" "(1332 784 228) (1340 784 228) (1340 784 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2306" - side - { - "id" "6685" - "plane" "(1332 784 182) (1340 784 182) (1340 792 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 428.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6684" - "plane" "(1332 792 202) (1340 792 202) (1340 784 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6683" - "plane" "(1340 792 202) (1332 792 202) (1332 792 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6682" - "plane" "(1332 784 202) (1340 784 202) (1340 784 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6681" - "plane" "(1332 792 202) (1332 784 202) (1332 784 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6680" - "plane" "(1340 784 202) (1340 792 202) (1340 792 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 428.66] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2307" - side - { - "id" "6692" - "plane" "(1332 784 176) (1340 784 176) (1340 790 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6691" - "plane" "(1332 792 182) (1338 792 182) (1340 790 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6690" - "plane" "(1338 792 182) (1332 792 182) (1332 792 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6689" - "plane" "(1332 784 182) (1340 784 182) (1340 784 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6688" - "plane" "(1332 792 182) (1332 784 182) (1332 784 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6687" - "plane" "(1340 784 182) (1340 790 182) (1340 790 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 428.66] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6686" - "plane" "(1340 790 182) (1338 792 182) (1338 792 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2308" - side - { - "id" "6698" - "plane" "(1332 780 176) (1340 780 176) (1340 784 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6697" - "plane" "(1340 784 244) (1340 780 244) (1332 780 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6696" - "plane" "(1340 784 244) (1332 784 244) (1332 784 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6695" - "plane" "(1332 784 244) (1332 780 244) (1332 780 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6694" - "plane" "(1340 780 244) (1340 784 244) (1340 784 176)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 320.662] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6693" - "plane" "(1332 780 244) (1340 780 244) (1340 780 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2309" - side - { - "id" "6705" - "plane" "(1338 792 176) (1340 790 176) (1340 780 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6704" - "plane" "(1332 780 136) (1340 780 136) (1340 790 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6703" - "plane" "(1338 792 176) (1332 792 176) (1332 792 136)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -32.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6702" - "plane" "(1332 792 176) (1332 780 176) (1332 780 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6701" - "plane" "(1340 780 176) (1340 790 176) (1340 790 136)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 320.662] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6700" - "plane" "(1340 790 176) (1338 792 176) (1338 792 136)" - "material" "BRICK/WALL20" - "uaxis" "[0.707107 -0.707107 0 273.175] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6699" - "plane" "(1332 780 176) (1340 780 176) (1340 780 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2310" - side - { - "id" "6712" - "plane" "(1332 792 136) (1338 792 136) (1340 790 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6711" - "plane" "(1332 784 128) (1340 784 128) (1340 790 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6710" - "plane" "(1338 792 136) (1332 792 136) (1332 792 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6709" - "plane" "(1332 784 136) (1340 784 136) (1340 784 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6708" - "plane" "(1332 792 136) (1332 784 136) (1332 784 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6707" - "plane" "(1340 784 136) (1340 790 136) (1340 790 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 428.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6706" - "plane" "(1340 790 136) (1338 792 136) (1338 792 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2311" - side - { - "id" "6718" - "plane" "(1340 784 136) (1340 772 136) (1332 772 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6717" - "plane" "(1332 772 124) (1340 772 124) (1340 784 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6716" - "plane" "(1340 784 136) (1332 784 136) (1332 784 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6715" - "plane" "(1332 784 136) (1332 772 136) (1332 772 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6714" - "plane" "(1340 772 136) (1340 784 136) (1340 784 124)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 320.662] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6713" - "plane" "(1332 772 136) (1340 772 136) (1340 772 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2312" - side - { - "id" "6724" - "plane" "(1340 792 124) (1340 780 124) (1328 780 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6723" - "plane" "(1328 780 116) (1340 780 116) (1340 792 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6722" - "plane" "(1340 792 124) (1328 792 124) (1328 792 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6721" - "plane" "(1328 792 124) (1328 780 124) (1328 780 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6720" - "plane" "(1340 780 124) (1340 792 124) (1340 792 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 428.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6719" - "plane" "(1328 780 124) (1340 780 124) (1340 780 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2313" - side - { - "id" "6732" - "plane" "(1338 826 126) (1338 822 126) (1328 822 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 396.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6731" - "plane" "(1328 821 120) (1338 821 120) (1338 827 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 8.66016] 0.25" - "vaxis" "[1 0 0 -8.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6730" - "plane" "(1338 827 125) (1328 827 125) (1328 827 120)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6729" - "plane" "(1328 821 125) (1338 821 125) (1338 821 120)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6728" - "plane" "(1328 827 125) (1328 826 126) (1328 822 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 8.66016] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6727" - "plane" "(1338 821 125) (1338 822 126) (1338 826 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 396.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6726" - "plane" "(1328 822 126) (1338 822 126) (1338 821 125)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6725" - "plane" "(1338 826 126) (1328 826 126) (1328 827 125)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2314" - side - { - "id" "6738" - "plane" "(1332 792 128) (1340 792 128) (1340 784 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 428.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6737" - "plane" "(1332 784 124) (1340 784 124) (1340 792 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6736" - "plane" "(1340 792 128) (1332 792 128) (1332 792 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6735" - "plane" "(1332 784 128) (1340 784 128) (1340 784 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6734" - "plane" "(1332 792 128) (1332 784 128) (1332 784 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6733" - "plane" "(1340 784 128) (1340 792 128) (1340 792 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 428.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2315" - side - { - "id" "6744" - "plane" "(1333 856 122) (1335 856 122) (1335 792 122)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 460.66] 0.25" - "vaxis" "[1 0 0 -4.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6743" - "plane" "(1333 792 120) (1335 792 120) (1335 856 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6742" - "plane" "(1335 856 122) (1333 856 122) (1333 856 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6741" - "plane" "(1333 792 122) (1335 792 122) (1335 792 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6740" - "plane" "(1333 856 122) (1333 792 122) (1333 792 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6739" - "plane" "(1335 792 122) (1335 856 122) (1335 856 120)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 460.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2316" - side - { - "id" "6751" - "plane" "(1333 856 125) (1334 856 125) (1334 792 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 460.66] 0.25" - "vaxis" "[1 0 0 -4.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6750" - "plane" "(1333 792 123) (1335 792 123) (1335 856 123)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 460.66] 0.25" - "vaxis" "[1 0 0 -4.69727] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6749" - "plane" "(1335 856 124) (1334 856 125) (1333 856 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6748" - "plane" "(1333 792 125) (1334 792 125) (1335 792 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6747" - "plane" "(1333 856 125) (1333 792 125) (1333 792 123)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6746" - "plane" "(1335 792 124) (1335 856 124) (1335 856 123)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 460.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6745" - "plane" "(1334 856 125) (1335 856 124) (1335 792 124)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2317" - side - { - "id" "6757" - "plane" "(1333 856 123) (1334 856 123) (1334 792 123)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6756" - "plane" "(1333 792 122) (1334 792 122) (1334 856 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[1 0 0 7.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6755" - "plane" "(1334 856 123) (1333 856 123) (1333 856 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6754" - "plane" "(1333 792 123) (1334 792 123) (1334 792 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6753" - "plane" "(1333 856 123) (1333 792 123) (1333 792 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 12.6602] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6752" - "plane" "(1334 792 123) (1334 856 123) (1334 856 122)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 -1 0 460.66] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2318" - side - { - "id" "6764" - "plane" "(1332 884 136) (1338 884 136) (1340 882 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0.660156] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6763" - "plane" "(1332 876 128) (1340 876 128) (1340 882 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0.660156] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6762" - "plane" "(1338 884 136) (1332 884 136) (1332 884 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6761" - "plane" "(1332 876 136) (1340 876 136) (1340 876 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6760" - "plane" "(1332 884 136) (1332 876 136) (1332 876 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0.660156] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6759" - "plane" "(1340 876 136) (1340 882 136) (1340 882 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 368.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6758" - "plane" "(1340 882 136) (1338 884 136) (1338 884 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2319" - side - { - "id" "6770" - "plane" "(1332 884 124) (1340 884 124) (1340 856 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6769" - "plane" "(1332 856 116) (1340 856 116) (1340 884 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6768" - "plane" "(1340 884 124) (1332 884 124) (1332 884 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6767" - "plane" "(1332 856 124) (1340 856 124) (1340 856 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6766" - "plane" "(1332 884 124) (1332 856 124) (1332 856 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6765" - "plane" "(1340 856 124) (1340 884 124) (1340 884 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 368.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2320" - side - { - "id" "6776" - "plane" "(1332 884 128) (1340 884 128) (1340 876 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 368.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6775" - "plane" "(1332 876 124) (1340 876 124) (1340 884 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0.660156] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6774" - "plane" "(1340 884 128) (1332 884 128) (1332 884 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6773" - "plane" "(1332 876 128) (1340 876 128) (1340 876 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6772" - "plane" "(1332 884 128) (1332 876 128) (1332 876 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0.660156] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6771" - "plane" "(1340 876 128) (1340 884 128) (1340 884 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 368.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2321" - side - { - "id" "6782" - "plane" "(1332 876 136) (1340 876 136) (1340 864 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6781" - "plane" "(1332 864 124) (1340 864 124) (1340 876 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6780" - "plane" "(1340 876 136) (1332 876 136) (1332 876 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6779" - "plane" "(1332 864 136) (1340 864 136) (1340 864 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6778" - "plane" "(1332 876 136) (1332 864 136) (1332 864 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6777" - "plane" "(1340 864 136) (1340 876 136) (1340 876 124)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 464.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2322" - side - { - "id" "6789" - "plane" "(1332 864 136) (1340 864 136) (1340 858 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -15.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6788" - "plane" "(1332 856 128) (1338 856 128) (1340 858 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -15.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6787" - "plane" "(1340 864 136) (1332 864 136) (1332 864 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6786" - "plane" "(1332 856 136) (1338 856 136) (1338 856 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6785" - "plane" "(1332 864 136) (1332 856 136) (1332 856 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6784" - "plane" "(1340 858 136) (1340 864 136) (1340 864 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 368.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6783" - "plane" "(1338 856 136) (1340 858 136) (1340 858 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2323" - side - { - "id" "6795" - "plane" "(1332 864 128) (1340 864 128) (1340 856 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 368.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6794" - "plane" "(1332 856 124) (1340 856 124) (1340 864 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -15.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6793" - "plane" "(1340 864 128) (1332 864 128) (1332 864 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6792" - "plane" "(1332 856 128) (1340 856 128) (1340 856 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6791" - "plane" "(1332 864 128) (1332 856 128) (1332 856 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6790" - "plane" "(1340 856 128) (1340 864 128) (1340 864 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 368.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2324" - side - { - "id" "6802" - "plane" "(1336 780 288) (1340 780 288) (1340 770 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6801" - "plane" "(1336 768 176) (1338 768 176) (1340 770 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6800" - "plane" "(1340 780 288) (1336 780 288) (1336 780 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6799" - "plane" "(1336 768 288) (1338 768 288) (1338 768 176)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 320.695] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6798" - "plane" "(1340 770 288) (1340 780 288) (1340 780 176)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 320.662] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6797" - "plane" "(1338 768 288) (1340 770 288) (1340 770 176)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 333.958] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6796" - "plane" "(1336 780 288) (1336 768 288) (1336 768 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2325" - side - { - "id" "6808" - "plane" "(736 764 460) (1344 764 460) (1156 952 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6934] 0.25" - "vaxis" "[0 1 0 15.3384] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6807" - "plane" "(924 952 560) (1156 952 560) (1284 824 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6934] 0.25" - "vaxis" "[0 1 0 15.3384] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6806" - "plane" "(796 824 560) (1284 824 560) (1344 764 460)" - "material" "WOOD/MILROOF001" - "uaxis" "[1 0 0 -144.697] 0.25" - "vaxis" "[0 0 1 -293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6805" - "plane" "(1156 952 560) (924 952 560) (924 952 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6804" - "plane" "(924 952 560) (796 824 560) (736 764 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6803" - "plane" "(1284 824 560) (1156 952 560) (1156 952 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2326" - side - { - "id" "6814" - "plane" "(802.012 824 560) (1278 824 560) (1270 832 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6813" - "plane" "(1282 820 568) (798 820 568) (810 832 568)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6812" - "plane" "(1270 832 568) (1270 832 560) (1278 824 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32.6602] 0.25" - "vaxis" "[0 0 1 -21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6811" - "plane" "(798 820 568) (802.012 824 560) (810.012 832 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6810" - "plane" "(810 832 568) (810.012 832 560) (1270 832 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6809" - "plane" "(1282 820 568) (1278 824 560) (802.012 824 560)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -432.697] 0.25" - "vaxis" "[0 0 -1 157.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2327" - side - { - "id" "6821" - "plane" "(1184 770 420) (1184 776 420) (1220 776 420)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6820" - "plane" "(1184 770 312) (1186 768 312) (1220 768 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6819" - "plane" "(1184 776 420) (1184 770 420) (1184 770 312)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -400.656] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6818" - "plane" "(1220 776 420) (1184 776 420) (1184 776 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6817" - "plane" "(1186 768 420) (1220 768 420) (1220 768 312)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6816" - "plane" "(1184 770 420) (1186 768 420) (1186 768 312)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 0.707107 0 -57.3585] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6815" - "plane" "(1220 768 420) (1220 776 420) (1220 776 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2360" - side - { - "id" "6827" - "plane" "(1344 856 108) (1340 856 112) (1340 856 92)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6826" - "plane" "(1344 792 92) (1340 792 92) (1340 792 112)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6825" - "plane" "(1344 792 92) (1344 792 108) (1344 856 108)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 192.66] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6824" - "plane" "(1344 792 108) (1340 792 112) (1340 856 112)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -288.66] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6823" - "plane" "(1340 792 92) (1344 792 92) (1344 856 92)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[1 0 0 15.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6822" - "plane" "(1340 856 92) (1340 856 112) (1340 792 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -0.660156] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2361" - side - { - "id" "6833" - "plane" "(1344 948 108) (1340 948 112) (1340 948 92)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6832" - "plane" "(1344 884 92) (1340 884 92) (1340 884 112)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6831" - "plane" "(1344 884 92) (1344 884 108) (1344 948 108)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 48.6602] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6830" - "plane" "(1344 884 108) (1340 884 112) (1340 948 112)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -144.66] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6829" - "plane" "(1340 884 92) (1344 884 92) (1344 948 92)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[1 0 0 15.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6828" - "plane" "(1340 948 92) (1340 948 112) (1340 884 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2362" - side - { - "id" "6839" - "plane" "(1344 764 460) (1344 1080 460) (1156 1080 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3447] 0.25" - "vaxis" "[-1 0 0 -7.30469] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6838" - "plane" "(1284 1080 560) (1284 824 560) (1156 952 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3447] 0.25" - "vaxis" "[-1 0 0 -7.30469] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6837" - "plane" "(1284 824 560) (1284 1080 560) (1344 1080 460)" - "material" "WOOD/MILROOF001" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6836" - "plane" "(1156 1080 560) (1156 952 560) (1156 952 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6835" - "plane" "(1156 952 560) (1284 824 560) (1344 764 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8.69727] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6834" - "plane" "(1284 1080 560) (1156 1080 560) (1156 1080 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2363" - side - { - "id" "6845" - "plane" "(732 764 452) (1344 764 452) (1332 776 452)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6844" - "plane" "(732 776 460) (1332 776 460) (1348 760 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6843" - "plane" "(732 776 460) (732 760 460) (732 764 452)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6842" - "plane" "(1332 776 460) (732 776 460) (732 776 452)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 1 -5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6841" - "plane" "(732 760 460) (1348 760 460) (1344 764 452)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -432.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6840" - "plane" "(1348 760 460) (1332 776 460) (1332 776 452)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2364" - side - { - "id" "6851" - "plane" "(732 764 448) (1344 764 448) (1332 776 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6850" - "plane" "(732 776 452) (1332 776 452) (1344 764 452)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6849" - "plane" "(732 776 452) (732 764 452) (732 764 448)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6848" - "plane" "(1332 776 452) (732 776 452) (732 776 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6847" - "plane" "(732 764 452) (1344 764 452) (1344 764 448)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -432.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6846" - "plane" "(1344 764 452) (1332 776 452) (1332 776 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2365" - side - { - "id" "6857" - "plane" "(732 768 440) (1340 768 440) (1332 776 440)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 216.697] 0.25" - "vaxis" "[0 -1 0 408.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6856" - "plane" "(732 776 448) (1332 776 448) (1344 764 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6855" - "plane" "(732 776 448) (732 764 448) (732 768 440)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6854" - "plane" "(1332 776 448) (732 776 448) (732 776 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 1 -21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6853" - "plane" "(732 764 448) (1344 764 448) (1340 768 440)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -432.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6852" - "plane" "(1344 764 448) (1332 776 448) (1332 776 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2366" - side - { - "id" "6863" - "plane" "(1340 768 440) (1340 1080 440) (1332 1080 440)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -392.66] 0.25" - "vaxis" "[1 0 0 -200.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6862" - "plane" "(1344 1080 448) (1344 764 448) (1332 776 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 23.3398] 0.25" - "vaxis" "[1 0 0 -16.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6861" - "plane" "(1332 1080 448) (1332 776 448) (1332 776 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 23.3398] 0.25" - "vaxis" "[0 0 1 -21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6860" - "plane" "(1344 764 448) (1344 1080 448) (1340 1080 440)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 56.6602] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6859" - "plane" "(1332 776 448) (1344 764 448) (1340 768 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6858" - "plane" "(1344 1080 448) (1332 1080 448) (1332 1080 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -24.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2367" - side - { - "id" "6869" - "plane" "(1344 764 448) (1344 1080 448) (1332 1080 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 23.3398] 0.25" - "vaxis" "[1 0 0 31.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6868" - "plane" "(1344 1080 452) (1344 764 452) (1332 776 452)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 23.3398] 0.25" - "vaxis" "[1 0 0 31.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6867" - "plane" "(1332 1080 452) (1332 776 452) (1332 776 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 23.3398] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6866" - "plane" "(1344 764 452) (1344 1080 452) (1344 1080 448)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 56.6602] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6865" - "plane" "(1332 776 452) (1344 764 452) (1344 764 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6864" - "plane" "(1344 1080 452) (1332 1080 452) (1332 1080 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -24.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2368" - side - { - "id" "6875" - "plane" "(1344 764 452) (1344 1080 452) (1332 1080 452)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 23.3398] 0.25" - "vaxis" "[1 0 0 31.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6874" - "plane" "(1348 1080 460) (1348 760 460) (1332 776 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 23.3398] 0.25" - "vaxis" "[1 0 0 31.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6873" - "plane" "(1332 1080 460) (1332 776 460) (1332 776 452)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 23.3398] 0.25" - "vaxis" "[0 0 1 -5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6872" - "plane" "(1348 760 460) (1348 1080 460) (1344 1080 452)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 -1 0 56.6602] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6871" - "plane" "(1332 776 460) (1348 760 460) (1344 764 452)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6870" - "plane" "(1348 1080 460) (1332 1080 460) (1332 1080 452)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -24.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2369" - side - { - "id" "6881" - "plane" "(1278 824 560) (1278 1080 560) (1270 1080 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[1 0 0 -0.697266] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6880" - "plane" "(1270 1080 568) (1282 1080 568) (1282 820 568)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[1 0 0 -0.697266] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6879" - "plane" "(1270 832 568) (1282 820 568) (1278 824 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6878" - "plane" "(1270 1080 568) (1270 832 568) (1270 832 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6877" - "plane" "(1282 820 568) (1282 1080 568) (1278 1080 560)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -320.66] 0.25" - "vaxis" "[0 0 -1 157.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6876" - "plane" "(1282 1080 568) (1270 1080 568) (1270 1080 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2370" - side - { - "id" "6888" - "plane" "(1340 780 420) (1340 770 420) (1338 768 420)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6887" - "plane" "(1338 768 288) (1340 770 288) (1340 780 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 0.660156] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6886" - "plane" "(1340 770 420) (1340 780 420) (1340 780 288)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 320.662] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6885" - "plane" "(1220 780 420) (1220 768 420) (1220 768 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6884" - "plane" "(1340 780 420) (1220 780 420) (1220 780 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6883" - "plane" "(1220 768 420) (1338 768 420) (1338 768 288)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 144.697] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6882" - "plane" "(1338 768 420) (1340 770 420) (1340 770 288)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 329.272] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2371" - side - { - "id" "6895" - "plane" "(1338 768 420) (1340 770 420) (1340 780 420)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6894" - "plane" "(1340 780 440) (1340 770 440) (1338 768 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6893" - "plane" "(1340 770 440) (1340 780 440) (1340 780 420)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 320.662] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6892" - "plane" "(732 780 440) (732 768 440) (732 768 420)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6891" - "plane" "(1340 780 440) (732 780 440) (732 780 420)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 1 -5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6890" - "plane" "(732 768 440) (1338 768 440) (1338 768 420)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -80.6973] 0.25" - "vaxis" "[0 0 -1 453.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6889" - "plane" "(1338 768 440) (1340 770 440) (1340 770 420)" - "material" "BRICK/WALL20" - "uaxis" "[0.707107 0.707107 0 -93.9615] 0.25" - "vaxis" "[0 0 -1 453.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2373" - side - { - "id" "6907" - "plane" "(760 768 104) (768 768 104) (768 764 100)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6906" - "plane" "(764 764 64) (768 764 64) (768 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6905" - "plane" "(764 764 64) (760 768 64) (760 768 104)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6904" - "plane" "(768 768 104) (760 768 104) (760 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6903" - "plane" "(764 764 100) (768 764 100) (768 764 64)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6902" - "plane" "(768 764 100) (768 768 104) (768 768 64)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2374" - side - { - "id" "6913" - "plane" "(768 768 104) (844 768 104) (844 764 100)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6912" - "plane" "(768 764 96) (768 768 96) (768 768 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6911" - "plane" "(768 768 104) (768 768 96) (844 768 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6910" - "plane" "(844 764 100) (844 764 96) (768 764 96)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6909" - "plane" "(844 768 104) (844 768 96) (844 764 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6908" - "plane" "(768 764 96) (844 764 96) (844 768 96)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2375" - side - { - "id" "49730" - "plane" "(844 764 100) (844 768 104) (852 768 104)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49729" - "plane" "(852 768 64) (844 768 64) (844 764 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49728" - "plane" "(848 764 100) (852 768 104) (852 768 64)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49727" - "plane" "(852 768 104) (844 768 104) (844 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49726" - "plane" "(844 764 100) (848 764 100) (848 764 64)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49725" - "plane" "(844 764 64) (844 768 64) (844 768 104)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2377" - side - { - "id" "6931" - "plane" "(948 764 100) (948 768 104) (956 768 104)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6930" - "plane" "(956 768 64) (948 768 64) (948 764 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6929" - "plane" "(952 764 100) (956 768 104) (956 768 64)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6928" - "plane" "(956 768 104) (948 768 104) (948 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6927" - "plane" "(948 764 100) (952 764 100) (952 764 64)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6926" - "plane" "(948 764 64) (948 768 64) (948 768 104)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2378" - side - { - "id" "6937" - "plane" "(872 768 104) (948 768 104) (948 764 100)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6936" - "plane" "(872 764 96) (872 768 96) (872 768 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6935" - "plane" "(872 768 104) (872 768 96) (948 768 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6934" - "plane" "(948 764 100) (948 764 96) (872 764 96)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6933" - "plane" "(948 768 104) (948 768 96) (948 764 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6932" - "plane" "(872 764 96) (948 764 96) (948 768 96)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2379" - side - { - "id" "49724" - "plane" "(864 768 104) (872 768 104) (872 764 100)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49723" - "plane" "(868 764 64) (872 764 64) (872 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49722" - "plane" "(868 764 64) (864 768 64) (864 768 104)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49721" - "plane" "(872 768 104) (864 768 104) (864 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49720" - "plane" "(868 764 100) (872 764 100) (872 764 64)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49719" - "plane" "(872 764 100) (872 768 104) (872 768 64)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2380" - side - { - "id" "6949" - "plane" "(952 764 92) (952 768 96) (968 768 96)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6948" - "plane" "(964 764 64) (968 768 64) (952 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6947" - "plane" "(964 764 92) (968 768 96) (968 768 64)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6946" - "plane" "(952 764 64) (952 768 64) (952 768 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6945" - "plane" "(968 768 96) (952 768 96) (952 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6944" - "plane" "(952 764 92) (964 764 92) (964 764 64)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2383" - side - { - "id" "6967" - "plane" "(968 780 116) (968 768 116) (732 768 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6966" - "plane" "(968 768 96) (968 780 96) (732 780 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6965" - "plane" "(968 768 116) (968 780 116) (968 780 96)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6964" - "plane" "(732 780 116) (732 768 116) (732 768 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6963" - "plane" "(968 780 116) (732 780 116) (732 780 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6962" - "plane" "(732 768 116) (968 768 116) (968 768 96)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2384" - side - { - "id" "6973" - "plane" "(872 776 128) (872 768 128) (864 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6972" - "plane" "(872 768 124) (872 776 124) (864 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6971" - "plane" "(872 768 128) (872 776 128) (872 776 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6970" - "plane" "(864 776 128) (864 768 128) (864 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6969" - "plane" "(872 776 128) (864 776 128) (864 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6968" - "plane" "(864 768 128) (872 768 128) (872 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2385" - side - { - "id" "6979" - "plane" "(872 776 124) (872 768 124) (844 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6978" - "plane" "(872 768 116) (872 776 116) (844 776 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6977" - "plane" "(872 768 124) (872 776 124) (872 776 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6976" - "plane" "(844 776 124) (844 768 124) (844 768 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6975" - "plane" "(872 776 124) (844 776 124) (844 776 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6974" - "plane" "(844 768 124) (872 768 124) (872 768 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2386" - side - { - "id" "6985" - "plane" "(852 776 128) (852 768 128) (844 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6984" - "plane" "(852 768 124) (852 776 124) (844 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6983" - "plane" "(852 768 128) (852 776 128) (852 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6982" - "plane" "(844 776 128) (844 768 128) (844 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6981" - "plane" "(852 776 128) (844 776 128) (844 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6980" - "plane" "(844 768 128) (852 768 128) (852 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2396" - side - { - "id" "6992" - "plane" "(1264 776 120) (1328 776 120) (1328 768 120)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -128.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6991" - "plane" "(1264 766 116) (1328 766 116) (1328 776 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -128.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6990" - "plane" "(1328 776 120) (1264 776 120) (1264 776 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6989" - "plane" "(1264 766 118) (1328 766 118) (1328 766 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -128.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6988" - "plane" "(1264 768 120) (1328 768 120) (1328 766 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -128.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6987" - "plane" "(1264 776 120) (1264 768 120) (1264 766 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -112.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6986" - "plane" "(1328 766 118) (1328 768 120) (1328 776 120)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -112.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2395" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2409" - side - { - "id" "6998" - "plane" "(864 776 136) (864 768 136) (852 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6997" - "plane" "(864 768 124) (864 776 124) (852 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6996" - "plane" "(864 768 136) (864 776 136) (864 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6995" - "plane" "(852 776 136) (852 768 136) (852 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6994" - "plane" "(864 776 136) (852 776 136) (852 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6993" - "plane" "(852 768 136) (864 768 136) (864 768 124)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2410" - side - { - "id" "7005" - "plane" "(852 776 136) (852 768 136) (846 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7004" - "plane" "(846 768 128) (852 768 128) (852 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7003" - "plane" "(852 768 136) (852 776 136) (852 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7002" - "plane" "(844 776 136) (844 770 136) (844 770 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7001" - "plane" "(852 776 136) (844 776 136) (844 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7000" - "plane" "(846 768 136) (852 768 136) (852 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6999" - "plane" "(844 770 136) (846 768 136) (846 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2411" - side - { - "id" "7012" - "plane" "(872 776 136) (872 770 136) (870 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7011" - "plane" "(870 768 128) (872 770 128) (872 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7010" - "plane" "(872 770 136) (872 776 136) (872 776 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7009" - "plane" "(864 776 136) (864 768 136) (864 768 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7008" - "plane" "(872 776 136) (864 776 136) (864 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7007" - "plane" "(864 768 136) (870 768 136) (870 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7006" - "plane" "(870 768 136) (872 770 136) (872 770 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2412" - side - { - "id" "7020" - "plane" "(872 776 174) (872 770 174) (870 768 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7019" - "plane" "(846 768 136) (870 768 136) (872 770 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7018" - "plane" "(872 770 174) (872 776 174) (872 776 136)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 0.663086] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7017" - "plane" "(844 776 174) (844 770 174) (844 770 136)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -400.656] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7016" - "plane" "(872 776 174) (844 776 174) (844 776 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7015" - "plane" "(846 768 174) (870 768 174) (870 768 136)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7014" - "plane" "(844 770 174) (846 768 174) (846 768 136)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 0.707107 0 -507.023] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7013" - "plane" "(870 768 174) (872 770 174) (872 770 136)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 226.256] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2413" - side - { - "id" "7026" - "plane" "(952 776 236) (952 775 236) (872 775 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7025" - "plane" "(952 775 120) (952 776 120) (872 776 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7024" - "plane" "(952 775 236) (952 776 236) (952 776 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7023" - "plane" "(872 776 236) (872 775 236) (872 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7022" - "plane" "(952 776 236) (872 776 236) (872 776 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7021" - "plane" "(872 775 236) (952 775 236) (952 775 120)" - "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" - "uaxis" "[-1 0 0 460.8] 0.15625" - "vaxis" "[0 0 -1 17.6552] 0.226563" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2414" - side - { - "id" "7032" - "plane" "(952 775 122) (952 773 122) (872 773 122)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7031" - "plane" "(952 773 120) (952 775 120) (872 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7030" - "plane" "(952 773 122) (952 775 122) (952 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7029" - "plane" "(872 775 122) (872 773 122) (872 773 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7028" - "plane" "(952 775 122) (872 775 122) (872 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7027" - "plane" "(872 773 122) (952 773 122) (952 773 120)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2415" - side - { - "id" "7038" - "plane" "(952 775 123) (952 774 123) (872 774 123)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7037" - "plane" "(952 774 122) (952 775 122) (872 775 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7036" - "plane" "(952 774 123) (952 775 123) (952 775 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7035" - "plane" "(872 775 123) (872 774 123) (872 774 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7034" - "plane" "(952 775 123) (872 775 123) (872 775 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7033" - "plane" "(872 774 123) (952 774 123) (952 774 122)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2416" - side - { - "id" "7045" - "plane" "(952 775 125) (952 774 125) (872 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7044" - "plane" "(952 773 123) (952 775 123) (872 775 123)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7043" - "plane" "(952 773 124) (952 774 125) (952 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -4.66016] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7042" - "plane" "(872 775 125) (872 774 125) (872 773 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -4.66016] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7041" - "plane" "(952 775 125) (872 775 125) (872 775 123)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7040" - "plane" "(872 773 124) (952 773 124) (952 773 123)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7039" - "plane" "(952 774 125) (952 773 124) (872 773 124)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[1 0 0 -144.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2417" - side - { - "id" "7053" - "plane" "(914 770 126) (910 770 126) (910 780 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7052" - "plane" "(915 770 120) (915 780 120) (909 780 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7051" - "plane" "(915 770 125) (915 780 125) (915 780 120)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7050" - "plane" "(909 780 125) (909 770 125) (909 770 120)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7049" - "plane" "(915 780 125) (914 780 126) (910 780 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7048" - "plane" "(909 770 125) (910 770 126) (914 770 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7047" - "plane" "(910 780 126) (910 770 126) (909 770 125)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7046" - "plane" "(914 770 126) (914 780 126) (915 780 125)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2418" - side - { - "id" "7061" - "plane" "(914 780 228) (914 772 228) (913 771 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7060" - "plane" "(910 772 126) (911 771 126) (913 771 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7059" - "plane" "(914 780 228) (910 780 228) (910 780 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 0 -1 45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7058" - "plane" "(910 780 228) (910 772 228) (910 772 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7057" - "plane" "(914 772 228) (914 780 228) (914 780 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7056" - "plane" "(913 771 228) (914 772 228) (914 772 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7055" - "plane" "(910 772 228) (911 771 228) (911 771 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7054" - "plane" "(911 771 228) (913 771 228) (913 771 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2419" - side - { - "id" "7067" - "plane" "(910 775 192) (910 774 192) (908 774 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7066" - "plane" "(910 774 125) (910 775 125) (908 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7065" - "plane" "(910 774 192) (910 775 192) (910 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7064" - "plane" "(908 775 192) (908 774 192) (908 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7063" - "plane" "(910 775 192) (908 775 192) (908 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7062" - "plane" "(908 774 192) (910 774 192) (910 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2420" - side - { - "id" "7073" - "plane" "(874 775 231) (874 774 231) (872 774 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7072" - "plane" "(874 774 125) (874 775 125) (872 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7071" - "plane" "(874 774 231) (874 775 231) (874 775 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7070" - "plane" "(872 775 231) (872 774 231) (872 774 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7069" - "plane" "(874 775 231) (872 775 231) (872 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7068" - "plane" "(872 774 231) (874 774 231) (874 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2421" - side - { - "id" "7079" - "plane" "(916 775 192) (916 774 192) (914 774 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7078" - "plane" "(916 774 125) (916 775 125) (914 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7077" - "plane" "(916 774 192) (916 775 192) (916 775 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7076" - "plane" "(914 775 192) (914 774 192) (914 774 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7075" - "plane" "(916 775 192) (914 775 192) (914 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7074" - "plane" "(914 774 192) (916 774 192) (916 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2422" - side - { - "id" "7085" - "plane" "(952 775 231) (952 774 231) (950 774 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8.69727] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7084" - "plane" "(952 774 125) (952 775 125) (950 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8.69727] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7083" - "plane" "(952 774 231) (952 775 231) (952 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7082" - "plane" "(950 775 231) (950 774 231) (950 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7081" - "plane" "(952 775 231) (950 775 231) (950 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8.69727] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7080" - "plane" "(950 774 231) (952 774 231) (952 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2423" - side - { - "id" "7091" - "plane" "(952 775 191) (952 773 191) (872 773 191)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7090" - "plane" "(952 773 189) (952 775 189) (872 775 189)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7089" - "plane" "(952 773 191) (952 775 191) (952 775 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7088" - "plane" "(872 775 191) (872 773 191) (872 773 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7087" - "plane" "(952 775 191) (872 775 191) (872 775 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7086" - "plane" "(872 773 191) (952 773 191) (952 773 189)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2424" - side - { - "id" "7097" - "plane" "(960 776 128) (960 768 128) (952 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7096" - "plane" "(960 768 124) (960 776 124) (952 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7095" - "plane" "(952 776 128) (952 768 128) (952 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7094" - "plane" "(960 768 128) (960 776 128) (960 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7093" - "plane" "(960 776 128) (952 776 128) (952 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7092" - "plane" "(952 768 128) (960 768 128) (960 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2425" - side - { - "id" "7104" - "plane" "(960 776 136) (960 768 136) (954 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7103" - "plane" "(954 768 128) (960 768 128) (960 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7102" - "plane" "(952 776 136) (952 770 136) (952 770 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7101" - "plane" "(960 768 136) (960 776 136) (960 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7100" - "plane" "(960 776 136) (952 776 136) (952 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7099" - "plane" "(954 768 136) (960 768 136) (960 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7098" - "plane" "(952 770 136) (954 768 136) (954 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2426" - side - { - "id" "7110" - "plane" "(844 776 236) (844 775 236) (764 775 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7109" - "plane" "(844 775 120) (844 776 120) (764 776 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7108" - "plane" "(844 775 236) (844 776 236) (844 776 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7107" - "plane" "(764 776 236) (764 775 236) (764 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7106" - "plane" "(844 776 236) (764 776 236) (764 776 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7105" - "plane" "(764 775 236) (844 775 236) (844 775 120)" - "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" - "uaxis" "[-1 0 0 281.6] 0.15625" - "vaxis" "[0 0 -1 17.6552] 0.226563" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2427" - side - { - "id" "7118" - "plane" "(806 770 126) (802 770 126) (802 780 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7117" - "plane" "(807 770 120) (807 780 120) (801 780 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7116" - "plane" "(807 770 125) (807 780 125) (807 780 120)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7115" - "plane" "(801 780 125) (801 770 125) (801 770 120)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7114" - "plane" "(807 780 125) (806 780 126) (802 780 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7113" - "plane" "(801 770 125) (802 770 126) (806 770 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7112" - "plane" "(802 780 126) (802 770 126) (801 770 125)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7111" - "plane" "(806 770 126) (806 780 126) (807 780 125)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2428" - side - { - "id" "7126" - "plane" "(806 780 228) (806 772 228) (805 771 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7125" - "plane" "(802 772 126) (803 771 126) (805 771 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7124" - "plane" "(806 780 228) (802 780 228) (802 780 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 0 -1 45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7123" - "plane" "(802 780 228) (802 772 228) (802 772 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7122" - "plane" "(806 772 228) (806 780 228) (806 780 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7121" - "plane" "(805 771 228) (806 772 228) (806 772 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7120" - "plane" "(802 772 228) (803 771 228) (803 771 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7119" - "plane" "(803 771 228) (805 771 228) (805 771 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2429" - side - { - "id" "7132" - "plane" "(802 775 192) (802 774 192) (800 774 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7131" - "plane" "(802 774 125) (802 775 125) (800 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7130" - "plane" "(802 774 192) (802 775 192) (802 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7129" - "plane" "(800 775 192) (800 774 192) (800 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7128" - "plane" "(802 775 192) (800 775 192) (800 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7127" - "plane" "(800 774 192) (802 774 192) (802 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2430" - side - { - "id" "7138" - "plane" "(808 775 192) (808 774 192) (806 774 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8.69727] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7137" - "plane" "(808 774 125) (808 775 125) (806 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8.69727] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7136" - "plane" "(808 774 192) (808 775 192) (808 775 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7135" - "plane" "(806 775 192) (806 774 192) (806 774 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7134" - "plane" "(808 775 192) (806 775 192) (806 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8.69727] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7133" - "plane" "(806 774 192) (808 774 192) (808 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2431" - side - { - "id" "7145" - "plane" "(844 775 125) (844 774 125) (764 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7144" - "plane" "(844 773 123) (844 775 123) (764 775 123)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7143" - "plane" "(844 773 124) (844 774 125) (844 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -4.66016] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7142" - "plane" "(764 775 125) (764 774 125) (764 773 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -4.66016] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7141" - "plane" "(844 775 125) (764 775 125) (764 775 123)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7140" - "plane" "(764 773 124) (844 773 124) (844 773 123)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7139" - "plane" "(844 774 125) (844 773 124) (764 773 124)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[1 0 0 -144.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2432" - side - { - "id" "7151" - "plane" "(844 775 122) (844 773 122) (764 773 122)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7150" - "plane" "(844 773 120) (844 775 120) (764 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7149" - "plane" "(844 773 122) (844 775 122) (844 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7148" - "plane" "(764 775 122) (764 773 122) (764 773 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7147" - "plane" "(844 775 122) (764 775 122) (764 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7146" - "plane" "(764 773 122) (844 773 122) (844 773 120)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2433" - side - { - "id" "7157" - "plane" "(844 775 123) (844 774 123) (764 774 123)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7156" - "plane" "(844 774 122) (844 775 122) (764 775 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7155" - "plane" "(844 774 123) (844 775 123) (844 775 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7154" - "plane" "(764 775 123) (764 774 123) (764 774 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7153" - "plane" "(844 775 123) (764 775 123) (764 775 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7152" - "plane" "(764 774 123) (844 774 123) (844 774 122)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2434" - side - { - "id" "7163" - "plane" "(766 775 231) (766 774 231) (764 774 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7162" - "plane" "(766 774 125) (766 775 125) (764 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7161" - "plane" "(766 774 231) (766 775 231) (766 775 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7160" - "plane" "(764 775 231) (764 774 231) (764 774 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7159" - "plane" "(766 775 231) (764 775 231) (764 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7158" - "plane" "(764 774 231) (766 774 231) (766 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2435" - side - { - "id" "7169" - "plane" "(844 775 191) (844 773 191) (764 773 191)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7168" - "plane" "(844 773 189) (844 775 189) (764 775 189)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7167" - "plane" "(844 773 191) (844 775 191) (844 775 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7166" - "plane" "(764 775 191) (764 773 191) (764 773 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7165" - "plane" "(844 775 191) (764 775 191) (764 775 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7164" - "plane" "(764 773 191) (844 773 191) (844 773 189)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2436" - side - { - "id" "7175" - "plane" "(844 775 231) (844 774 231) (842 774 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 24.6973] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7174" - "plane" "(844 774 125) (844 775 125) (842 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 24.6973] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7173" - "plane" "(844 774 231) (844 775 231) (844 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7172" - "plane" "(842 775 231) (842 774 231) (842 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7171" - "plane" "(844 775 231) (842 775 231) (842 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 24.6973] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7170" - "plane" "(842 774 231) (844 774 231) (844 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2437" - side - { - "id" "7181" - "plane" "(764 780 124) (764 768 124) (732 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7180" - "plane" "(764 768 116) (764 780 116) (732 780 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7179" - "plane" "(764 768 124) (764 780 124) (764 780 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7178" - "plane" "(732 780 124) (732 768 124) (732 768 116)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7177" - "plane" "(764 780 124) (732 780 124) (732 780 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7176" - "plane" "(732 768 124) (764 768 124) (764 768 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2438" - side - { - "id" "7187" - "plane" "(764 776 128) (764 768 128) (756 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7186" - "plane" "(764 768 124) (764 776 124) (756 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7185" - "plane" "(764 768 128) (764 776 128) (764 776 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7184" - "plane" "(756 776 128) (756 768 128) (756 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7183" - "plane" "(764 776 128) (756 776 128) (756 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7182" - "plane" "(756 768 128) (764 768 128) (764 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2439" - side - { - "id" "7194" - "plane" "(764 776 136) (764 770 136) (762 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7193" - "plane" "(762 768 128) (764 770 128) (764 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7192" - "plane" "(764 770 136) (764 776 136) (764 776 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7191" - "plane" "(756 776 136) (756 768 136) (756 768 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7190" - "plane" "(764 776 136) (756 776 136) (756 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7189" - "plane" "(756 768 136) (762 768 136) (762 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7188" - "plane" "(762 768 136) (764 770 136) (764 770 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2440" - side - { - "id" "7201" - "plane" "(764 776 174) (764 770 174) (762 768 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7200" - "plane" "(762 768 136) (764 770 136) (764 776 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7199" - "plane" "(732 776 174) (732 768 174) (732 768 136)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7198" - "plane" "(764 770 174) (764 776 174) (764 776 136)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7197" - "plane" "(764 776 174) (732 776 174) (732 776 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7196" - "plane" "(732 768 174) (762 768 174) (762 768 136)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7195" - "plane" "(762 768 174) (764 770 174) (764 770 136)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2441" - side - { - "id" "7207" - "plane" "(756 776 136) (756 768 136) (732 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7206" - "plane" "(756 768 124) (756 776 124) (732 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7205" - "plane" "(732 776 136) (732 768 136) (732 768 124)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7204" - "plane" "(756 768 136) (756 776 136) (756 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7203" - "plane" "(756 776 136) (732 776 136) (732 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7202" - "plane" "(732 768 136) (756 768 136) (756 768 124)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2442" - side - { - "id" "7213" - "plane" "(952 776 244) (952 768 244) (764 768 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7212" - "plane" "(952 768 236) (952 776 236) (764 776 236)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7211" - "plane" "(952 768 244) (952 776 244) (952 776 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7210" - "plane" "(764 776 244) (764 768 244) (764 768 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7209" - "plane" "(952 776 244) (764 776 244) (764 776 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7208" - "plane" "(764 768 244) (952 768 244) (952 768 236)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 429.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2443" - side - { - "id" "7219" - "plane" "(872 768 186) (872 776 186) (844 776 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7218" - "plane" "(872 776 194) (872 768 194) (844 768 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7217" - "plane" "(872 768 194) (872 776 194) (872 776 186)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7216" - "plane" "(844 776 194) (844 768 194) (844 768 186)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7215" - "plane" "(872 776 194) (844 776 194) (844 776 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -13.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7214" - "plane" "(844 768 194) (872 768 194) (872 768 186)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2444" - side - { - "id" "7225" - "plane" "(872 768 182) (872 776 182) (864 776 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7224" - "plane" "(872 776 186) (872 768 186) (864 768 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7223" - "plane" "(872 768 186) (872 776 186) (872 776 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7222" - "plane" "(864 776 186) (864 768 186) (864 768 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7221" - "plane" "(872 776 186) (864 776 186) (864 776 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7220" - "plane" "(864 768 186) (872 768 186) (872 768 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2445" - side - { - "id" "7232" - "plane" "(870 768 174) (872 770 174) (872 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7231" - "plane" "(872 776 182) (872 770 182) (870 768 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7230" - "plane" "(872 770 182) (872 776 182) (872 776 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7229" - "plane" "(864 776 182) (864 768 182) (864 768 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7228" - "plane" "(872 776 182) (864 776 182) (864 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7227" - "plane" "(864 768 182) (870 768 182) (870 768 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7226" - "plane" "(870 768 182) (872 770 182) (872 770 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2446" - side - { - "id" "7238" - "plane" "(852 768 182) (852 776 182) (844 776 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7237" - "plane" "(852 776 186) (852 768 186) (844 768 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7236" - "plane" "(852 768 186) (852 776 186) (852 776 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7235" - "plane" "(844 776 186) (844 768 186) (844 768 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7234" - "plane" "(852 776 186) (844 776 186) (844 776 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7233" - "plane" "(844 768 186) (852 768 186) (852 768 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2447" - side - { - "id" "7245" - "plane" "(846 768 174) (852 768 174) (852 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7244" - "plane" "(852 776 182) (852 768 182) (846 768 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7243" - "plane" "(852 768 182) (852 776 182) (852 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7242" - "plane" "(844 776 182) (844 770 182) (844 770 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7241" - "plane" "(852 776 182) (844 776 182) (844 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7240" - "plane" "(846 768 182) (852 768 182) (852 768 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7239" - "plane" "(844 770 182) (846 768 182) (846 768 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2448" - side - { - "id" "7251" - "plane" "(864 768 174) (864 776 174) (852 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7250" - "plane" "(864 776 186) (864 768 186) (852 768 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7249" - "plane" "(864 768 186) (864 776 186) (864 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7248" - "plane" "(852 776 186) (852 768 186) (852 768 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7247" - "plane" "(864 776 186) (852 776 186) (852 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7246" - "plane" "(852 768 186) (864 768 186) (864 768 174)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2449" - side - { - "id" "7258" - "plane" "(762 768 174) (764 770 174) (764 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7257" - "plane" "(764 776 182) (764 770 182) (762 768 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7256" - "plane" "(764 770 182) (764 776 182) (764 776 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7255" - "plane" "(756 776 182) (756 768 182) (756 768 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7254" - "plane" "(764 776 182) (756 776 182) (756 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7253" - "plane" "(756 768 182) (762 768 182) (762 768 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7252" - "plane" "(762 768 182) (764 770 182) (764 770 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2450" - side - { - "id" "7264" - "plane" "(756 768 174) (756 776 174) (732 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7263" - "plane" "(756 776 202) (756 768 202) (732 768 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7262" - "plane" "(732 776 202) (732 768 202) (732 768 174)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7261" - "plane" "(756 768 202) (756 776 202) (756 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7260" - "plane" "(756 776 202) (732 776 202) (732 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7259" - "plane" "(732 768 202) (756 768 202) (756 768 174)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2451" - side - { - "id" "7270" - "plane" "(764 768 182) (764 776 182) (756 776 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7269" - "plane" "(764 776 202) (764 768 202) (756 768 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7268" - "plane" "(764 768 202) (764 776 202) (764 776 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7267" - "plane" "(756 776 202) (756 768 202) (756 768 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7266" - "plane" "(764 776 202) (756 776 202) (756 776 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7265" - "plane" "(756 768 202) (764 768 202) (764 768 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2452" - side - { - "id" "7277" - "plane" "(954 768 174) (960 768 174) (960 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7276" - "plane" "(960 776 182) (960 768 182) (954 768 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7275" - "plane" "(952 776 182) (952 770 182) (952 770 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7274" - "plane" "(960 768 182) (960 776 182) (960 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7273" - "plane" "(960 776 182) (952 776 182) (952 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7272" - "plane" "(954 768 182) (960 768 182) (960 768 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7271" - "plane" "(952 770 182) (954 768 182) (954 768 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2453" - side - { - "id" "7283" - "plane" "(960 768 182) (960 776 182) (952 776 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7282" - "plane" "(960 776 194) (960 768 194) (952 768 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7281" - "plane" "(952 776 194) (952 768 194) (952 768 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7280" - "plane" "(960 768 194) (960 776 194) (960 776 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7279" - "plane" "(960 776 194) (952 776 194) (952 776 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7278" - "plane" "(952 768 194) (960 768 194) (960 768 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2454" - side - { - "id" "7290" - "plane" "(952 770 174) (952 780 174) (968 780 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7289" - "plane" "(952 770 136) (954 768 136) (968 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7288" - "plane" "(952 780 174) (952 770 174) (952 770 136)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -320.656] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7287" - "plane" "(968 780 174) (952 780 174) (952 780 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7286" - "plane" "(954 768 174) (968 768 174) (968 768 136)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7285" - "plane" "(952 770 174) (954 768 174) (954 768 136)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 0.707107 0 -121.554] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7284" - "plane" "(968 768 174) (968 780 174) (968 780 136)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2455" - side - { - "id" "7296" - "plane" "(960 768 174) (968 768 174) (968 780 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7295" - "plane" "(960 780 202) (968 780 202) (968 768 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7294" - "plane" "(960 780 202) (960 768 202) (960 768 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7293" - "plane" "(968 780 202) (960 780 202) (960 780 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7292" - "plane" "(960 768 202) (968 768 202) (968 768 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7291" - "plane" "(968 768 202) (968 780 202) (968 780 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2456" - side - { - "id" "7302" - "plane" "(960 780 136) (968 780 136) (968 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7301" - "plane" "(960 768 124) (968 768 124) (968 780 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7300" - "plane" "(960 780 136) (960 768 136) (960 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7299" - "plane" "(968 780 136) (960 780 136) (960 780 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7298" - "plane" "(960 768 136) (968 768 136) (968 768 124)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7297" - "plane" "(968 768 136) (968 780 136) (968 780 124)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2457" - side - { - "id" "7308" - "plane" "(952 780 124) (968 780 124) (968 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7307" - "plane" "(952 768 116) (968 768 116) (968 780 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7306" - "plane" "(952 780 124) (952 768 124) (952 768 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7305" - "plane" "(968 780 124) (952 780 124) (952 780 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7304" - "plane" "(952 768 124) (968 768 124) (968 768 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7303" - "plane" "(968 768 124) (968 780 124) (968 780 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2458" - side - { - "id" "7314" - "plane" "(1020 776 72) (1020 768 72) (968 768 72)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7313" - "plane" "(1020 768 68) (1020 776 68) (968 776 68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7312" - "plane" "(1020 768 72) (1020 776 72) (1020 776 68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7311" - "plane" "(968 776 72) (968 768 72) (968 768 68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7310" - "plane" "(1020 776 72) (968 776 72) (968 776 68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7309" - "plane" "(968 768 72) (1020 768 72) (1020 768 68)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2459" - side - { - "id" "7320" - "plane" "(968 776 68) (986 776 68) (986 768 68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7319" - "plane" "(968 768 64) (984 768 64) (984 776 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7318" - "plane" "(968 776 68) (968 768 68) (968 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7317" - "plane" "(986 776 68) (968 776 68) (968 776 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7316" - "plane" "(968 768 68) (986 768 68) (984 768 64)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7315" - "plane" "(986 768 68) (986 776 68) (984 776 64)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2460" - side - { - "id" "7326" - "plane" "(1020 768 68) (1002 768 68) (1002 776 68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7325" - "plane" "(1020 776 64) (1004 776 64) (1004 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7324" - "plane" "(1020 768 68) (1020 776 68) (1020 776 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7323" - "plane" "(1020 776 68) (1002 776 68) (1004 776 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7322" - "plane" "(1002 768 68) (1020 768 68) (1020 768 64)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7321" - "plane" "(1002 776 68) (1002 768 68) (1004 768 64)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2461" - side - { - "id" "7332" - "plane" "(1020 780 76) (1020 776 76) (968 776 76)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7331" - "plane" "(1020 776 72) (1020 780 72) (968 780 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7330" - "plane" "(1020 776 76) (1020 780 76) (1020 780 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7329" - "plane" "(968 780 76) (968 776 76) (968 776 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7328" - "plane" "(1020 780 76) (968 780 76) (968 780 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7327" - "plane" "(968 776 76) (1020 776 76) (1020 776 72)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[-1 0 0 195.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2462" - side - { - "id" "7338" - "plane" "(1020 784 190) (1020 780 190) (968 780 190)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7337" - "plane" "(1020 780 76) (1020 784 76) (968 784 76)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7336" - "plane" "(1020 780 190) (1020 784 190) (1020 784 76)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7335" - "plane" "(968 784 190) (968 780 190) (968 780 76)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7334" - "plane" "(1020 784 190) (968 784 190) (968 784 76)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7333" - "plane" "(968 780 190) (1020 780 190) (1020 780 76)" - "material" "DE_DUST/DOOR02" - "uaxis" "[-1 0 0 39.8257] 0.413" - "vaxis" "[0 0 -1 276.364] 0.275" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2463" - side - { - "id" "7344" - "plane" "(968 780 96) (968 768 96) (964 768 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7343" - "plane" "(968 768 64) (968 780 64) (964 780 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7342" - "plane" "(968 768 96) (968 780 96) (968 780 64)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7341" - "plane" "(964 780 96) (964 768 96) (964 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7340" - "plane" "(968 780 96) (964 780 96) (964 780 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7339" - "plane" "(964 768 96) (968 768 96) (968 768 64)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 160.697] 0.25" - "vaxis" "[0 0 -1 181.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2464" - side - { - "id" "7351" - "plane" "(1040 784 202) (1040 776 202) (1032 768 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7350" - "plane" "(1028 768 176) (1036 776 176) (1036 784 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7349" - "plane" "(1020 784 202) (1020 768 202) (1020 768 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7348" - "plane" "(1040 776 202) (1040 784 202) (1036 784 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7347" - "plane" "(1040 784 202) (1020 784 202) (1020 784 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7346" - "plane" "(1020 768 202) (1032 768 202) (1028 768 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7345" - "plane" "(1032 768 202) (1040 776 202) (1036 776 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2465" - side - { - "id" "7358" - "plane" "(1052 784 224) (1052 776 224) (1044 768 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7357" - "plane" "(1032 768 202) (1040 776 202) (1040 784 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7356" - "plane" "(1036 784 224) (1036 768 224) (1024 768 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7355" - "plane" "(1052 776 224) (1052 784 224) (1040 784 202)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7354" - "plane" "(1052 784 224) (1036 784 224) (1024 784 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7353" - "plane" "(1036 768 224) (1044 768 224) (1032 768 202)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.877895 0 -0.478852 -445.999] 0.25" - "vaxis" "[-0.420382 -0.478852 -0.7707 337.594] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7352" - "plane" "(1044 768 224) (1052 776 224) (1040 776 202)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.57918 0.751497 -0.315916 -19.5278] 0.25" - "vaxis" "[-0.104466 -0.315916 -0.943018 122.846] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2466" - side - { - "id" "7365" - "plane" "(1068 784 238) (1068 776 238) (1060 768 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7364" - "plane" "(1044 768 224) (1052 776 224) (1052 784 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7363" - "plane" "(1052 784 238) (1052 768 238) (1036 768 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7362" - "plane" "(1068 776 238) (1068 784 238) (1052 784 224)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[-0.752577 0 -0.658504 253.576] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7361" - "plane" "(1068 784 238) (1052 784 238) (1036 784 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7360" - "plane" "(1052 768 238) (1060 768 238) (1044 768 224)" - "material" "BRICK/WALL20" - "uaxis" "[0.857493 0 -0.514496 -226.447] 0.25" - "vaxis" "[-0.441176 -0.514496 -0.735294 -3.62074] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7359" - "plane" "(1060 768 238) (1068 776 238) (1052 776 224)" - "material" "BRICK/WALL20" - "uaxis" "[0.534411 0.689115 -0.489413 -396.899] 0.25" - "vaxis" "[-0.467683 -0.241227 -0.850342 410.894] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2467" - side - { - "id" "7371" - "plane" "(968 768 190) (1020 768 190) (1020 780 190)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 288.697] 0.25" - "vaxis" "[0 -1 0 472.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7370" - "plane" "(968 780 202) (1020 780 202) (1020 768 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7369" - "plane" "(968 780 202) (968 768 202) (968 768 190)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7368" - "plane" "(1020 780 202) (968 780 202) (968 780 190)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7367" - "plane" "(968 768 202) (1020 768 202) (1020 768 190)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 288.697] 0.25" - "vaxis" "[0 0 1 -269.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7366" - "plane" "(1020 768 202) (1020 780 202) (1020 780 190)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 269.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2468" - side - { - "id" "7377" - "plane" "(1024 768 202) (1024 776 202) (1020 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7376" - "plane" "(1036 776 224) (1036 768 224) (1020 768 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7375" - "plane" "(1036 768 224) (1036 776 224) (1024 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7374" - "plane" "(1020 776 224) (1020 768 224) (1020 768 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7373" - "plane" "(1036 776 224) (1020 776 224) (1020 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7372" - "plane" "(1020 768 224) (1036 768 224) (1024 768 202)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2469" - side - { - "id" "7383" - "plane" "(1036 768 224) (1036 776 224) (1020 776 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7382" - "plane" "(1052 776 238) (1052 768 238) (1020 768 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7381" - "plane" "(1052 768 238) (1052 776 238) (1036 776 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7380" - "plane" "(1020 776 238) (1020 768 238) (1020 768 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7379" - "plane" "(1052 776 238) (1020 776 238) (1020 776 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7378" - "plane" "(1020 768 238) (1052 768 238) (1036 768 224)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2470" - side - { - "id" "7389" - "plane" "(764 768 202) (764 776 202) (732 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7388" - "plane" "(764 776 228) (764 768 228) (732 768 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7387" - "plane" "(764 768 228) (764 776 228) (764 776 202)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 432.663] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7386" - "plane" "(732 776 228) (732 768 228) (732 768 202)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7385" - "plane" "(764 776 228) (732 776 228) (732 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7384" - "plane" "(732 768 228) (764 768 228) (764 768 202)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2471" - side - { - "id" "7396" - "plane" "(1090 784 252) (1090 776 252) (1082 768 252)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7395" - "plane" "(1060 768 238) (1068 776 238) (1068 784 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7394" - "plane" "(1074 784 252) (1074 768 252) (1052 768 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7393" - "plane" "(1090 776 252) (1090 784 252) (1068 784 238)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[-0.752577 0 -0.658504 338.617] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7392" - "plane" "(1090 784 252) (1074 784 252) (1052 784 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7391" - "plane" "(1074 768 252) (1082 768 252) (1060 768 238)" - "material" "BRICK/WALL20" - "uaxis" "[0.536875 0 -0.843661 -16.2992] 0.25" - "vaxis" "[-0.833921 -0.151515 -0.530677 27.4964] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7390" - "plane" "(1082 768 252) (1090 776 252) (1068 776 238)" - "material" "BRICK/WALL20" - "uaxis" "[0.253951 0.881054 -0.399066 -323.472] 0.25" - "vaxis" "[-0.762252 -0.0716691 -0.6433 78.5521] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2472" - side - { - "id" "7403" - "plane" "(1144 784 224) (1144 768 224) (1136 768 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7402" - "plane" "(1148 768 202) (1156 768 202) (1156 784 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7401" - "plane" "(1144 768 224) (1144 784 224) (1156 784 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7400" - "plane" "(1128 784 224) (1128 776 224) (1140 776 202)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7399" - "plane" "(1144 784 224) (1128 784 224) (1140 784 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7398" - "plane" "(1136 768 224) (1144 768 224) (1156 768 202)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.877895 0 -0.478852 8.06409] 0.25" - "vaxis" "[0.420382 -0.478852 -0.7707 26.5834] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7397" - "plane" "(1128 776 224) (1136 768 224) (1148 768 202)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.579179 0.751497 -0.315916 -285.199] 0.25" - "vaxis" "[0.104466 -0.315916 -0.943018 178.921] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2473" - side - { - "id" "7410" - "plane" "(1128 784 238) (1128 768 238) (1120 768 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7409" - "plane" "(1136 768 224) (1144 768 224) (1144 784 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7408" - "plane" "(1144 784 224) (1144 768 224) (1128 768 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7407" - "plane" "(1128 776 224) (1128 784 224) (1112 784 238)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0.752577 0 -0.658504 -63.3281] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7406" - "plane" "(1128 784 238) (1112 784 238) (1128 784 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7405" - "plane" "(1120 768 238) (1128 768 238) (1144 768 224)" - "material" "BRICK/WALL20" - "uaxis" "[-0.857493 0 -0.514496 38.5612] 0.25" - "vaxis" "[0.441176 -0.514496 -0.735294 4.6957] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7404" - "plane" "(1112 776 238) (1120 768 238) (1136 768 224)" - "material" "BRICK/WALL20" - "uaxis" "[-0.534411 0.689115 -0.489413 -53.3558] 0.25" - "vaxis" "[0.467683 -0.241227 -0.850342 173.626] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2474" - side - { - "id" "7417" - "plane" "(1106 784 252) (1106 768 252) (1098 768 252)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7416" - "plane" "(1120 768 238) (1128 768 238) (1128 784 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7415" - "plane" "(1128 784 238) (1128 768 238) (1106 768 252)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7414" - "plane" "(1112 776 238) (1112 784 238) (1090 784 252)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0.752577 0 -0.658504 -490.287] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7413" - "plane" "(1106 784 252) (1090 784 252) (1112 784 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7412" - "plane" "(1098 768 252) (1106 768 252) (1128 768 238)" - "material" "BRICK/WALL20" - "uaxis" "[-0.536875 0 -0.843661 350.075] 0.25" - "vaxis" "[0.833921 -0.151515 -0.530677 -19.1065] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7411" - "plane" "(1090 776 252) (1098 768 252) (1120 768 238)" - "material" "BRICK/WALL20" - "uaxis" "[-0.253951 0.881054 -0.399066 -18.5195] 0.25" - "vaxis" "[0.762252 -0.0716691 -0.6433 -328.021] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2475" - side - { - "id" "7423" - "plane" "(1052 768 238) (1052 776 238) (1020 776 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7422" - "plane" "(1074 776 252) (1074 768 252) (1020 768 252)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7421" - "plane" "(1074 768 252) (1074 776 252) (1052 776 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7420" - "plane" "(1020 776 252) (1020 768 252) (1020 768 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7419" - "plane" "(1074 776 252) (1020 776 252) (1020 776 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7418" - "plane" "(1020 768 252) (1074 768 252) (1052 768 238)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2476" - side - { - "id" "7429" - "plane" "(1090 784 254) (1090 766 254) (1078 766 254)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 23.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7428" - "plane" "(1090 766 242) (1090 784 242) (1078 784 238)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7427" - "plane" "(1078 784 254) (1078 766 254) (1078 766 238)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 237.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7426" - "plane" "(1090 784 254) (1078 784 254) (1078 784 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 23.3027] 0.25" - "vaxis" "[0 0 -1 13.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7425" - "plane" "(1090 766 242) (1078 766 238) (1078 766 254)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0.536875 0 -0.843661 -450.008] 0.25" - "vaxis" "[-0.83139 -0.169937 -0.529066 172.781] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7424" - "plane" "(1090 766 254) (1090 784 254) (1090 784 242)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2477" - side - { - "id" "7435" - "plane" "(1090 784 254) (1102 784 254) (1102 766 254)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 23.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7434" - "plane" "(1090 766 242) (1102 766 238) (1102 784 238)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7433" - "plane" "(1090 784 242) (1102 784 238) (1102 784 254)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 23.3027] 0.25" - "vaxis" "[0 0 -1 13.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7432" - "plane" "(1090 766 254) (1102 766 254) (1102 766 238)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0.536875 0 -0.843661 -450.008] 0.25" - "vaxis" "[-0.83139 -0.169937 -0.529066 172.781] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7431" - "plane" "(1102 766 254) (1102 784 254) (1102 784 238)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 237.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7430" - "plane" "(1090 784 254) (1090 766 254) (1090 766 242)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2478" - side - { - "id" "7442" - "plane" "(1148 784 68) (1148 774 68) (1032 774 68)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[-1 0 0 336.697] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7441" - "plane" "(1148 772 64) (1148 784 64) (1032 784 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 0.660156] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7440" - "plane" "(1148 772 66) (1148 774 68) (1148 784 68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -0.660156] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7439" - "plane" "(1032 784 68) (1032 774 68) (1032 772 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -0.660156] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7438" - "plane" "(1148 784 68) (1032 784 68) (1032 784 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7437" - "plane" "(1032 772 66) (1148 772 66) (1148 772 64)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[-1 0 0 336.697] 0.25" - "vaxis" "[0 0 -1 245.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7436" - "plane" "(1148 774 68) (1148 772 66) (1032 772 66)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -128.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2479" - side - { - "id" "7449" - "plane" "(1160 784 202) (1160 768 202) (1148 768 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7448" - "plane" "(1152 768 176) (1160 768 176) (1160 784 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7447" - "plane" "(1160 768 202) (1160 784 202) (1160 784 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7446" - "plane" "(1140 784 202) (1140 776 202) (1144 776 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7445" - "plane" "(1160 784 202) (1140 784 202) (1144 784 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7444" - "plane" "(1148 768 202) (1160 768 202) (1160 768 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 384.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7443" - "plane" "(1140 776 202) (1148 768 202) (1152 768 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2484" - side - { - "id" "7455" - "plane" "(844 775 233) (844 773 233) (764 773 233)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7454" - "plane" "(844 773 231) (844 775 231) (764 775 231)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7453" - "plane" "(844 773 233) (844 775 233) (844 775 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7452" - "plane" "(764 775 233) (764 773 233) (764 773 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7451" - "plane" "(844 775 233) (764 775 233) (764 775 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7450" - "plane" "(764 773 233) (844 773 233) (844 773 231)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2485" - side - { - "id" "7462" - "plane" "(844 772 233) (844 771 234) (844 771 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7461" - "plane" "(764 772 233) (764 780 233) (764 780 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7460" - "plane" "(844 780 233) (844 780 236) (764 780 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[-1 0 0 12.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7459" - "plane" "(844 772 233) (844 780 233) (764 780 233)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7458" - "plane" "(764 772 233) (764 771 234) (844 771 234)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7457" - "plane" "(764 771 234) (764 771 236) (844 771 236)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 413.307] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7456" - "plane" "(844 780 236) (844 771 236) (764 771 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2486" - side - { - "id" "7468" - "plane" "(952 775 233) (952 773 233) (872 773 233)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7467" - "plane" "(952 773 231) (952 775 231) (872 775 231)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7466" - "plane" "(952 773 233) (952 775 233) (952 775 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7465" - "plane" "(872 775 233) (872 773 233) (872 773 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7464" - "plane" "(952 775 233) (872 775 233) (872 775 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7463" - "plane" "(872 773 233) (952 773 233) (952 773 231)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2487" - side - { - "id" "7475" - "plane" "(952 772 233) (952 771 234) (952 771 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7474" - "plane" "(872 772 233) (872 780 233) (872 780 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7473" - "plane" "(952 780 233) (952 780 236) (872 780 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[-1 0 0 -3.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7472" - "plane" "(952 772 233) (952 780 233) (872 780 233)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7471" - "plane" "(872 772 233) (872 771 234) (952 771 234)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7470" - "plane" "(872 771 234) (872 771 236) (952 771 236)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 413.307] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7469" - "plane" "(952 780 236) (952 771 236) (872 771 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2488" - side - { - "id" "7483" - "plane" "(914 780 228) (910 780 228) (910 770 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7482" - "plane" "(915 780 236) (915 770 236) (909 770 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7481" - "plane" "(915 780 236) (915 780 229) (915 770 229)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7480" - "plane" "(909 770 236) (909 770 229) (909 780 229)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7479" - "plane" "(915 780 229) (915 780 236) (909 780 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 0 1 2.69312] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7478" - "plane" "(909 770 229) (909 770 236) (915 770 236)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7477" - "plane" "(909 780 229) (909 770 229) (910 770 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7476" - "plane" "(915 770 229) (915 780 229) (914 780 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2489" - side - { - "id" "7491" - "plane" "(806 780 228) (802 780 228) (802 770 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7490" - "plane" "(807 780 236) (807 770 236) (801 770 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7489" - "plane" "(807 780 236) (807 780 229) (807 770 229)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7488" - "plane" "(801 770 236) (801 770 229) (801 780 229)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7487" - "plane" "(807 780 229) (807 780 236) (801 780 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 0 1 2.69312] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7486" - "plane" "(801 770 229) (801 770 236) (807 770 236)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7485" - "plane" "(801 780 229) (801 770 229) (802 770 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7484" - "plane" "(807 770 229) (807 780 229) (806 780 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2490" - side - { - "id" "7497" - "plane" "(960 780 197) (960 768 197) (764 768 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7496" - "plane" "(960 768 194) (960 780 194) (764 780 194)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7495" - "plane" "(960 768 197) (960 780 197) (960 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 13.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7494" - "plane" "(764 780 197) (764 768 197) (764 768 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 13.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7493" - "plane" "(960 780 197) (764 780 197) (764 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 13.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7492" - "plane" "(764 768 197) (960 768 197) (960 768 194)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2491" - side - { - "id" "7504" - "plane" "(844 772 191) (844 771 192) (844 771 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7503" - "plane" "(844 780 194) (805 780 194) (805 780 191)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[-1 0 0 12.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7502" - "plane" "(844 780 191) (805 780 191) (805 772 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7501" - "plane" "(805 772 191) (805 771 192) (844 771 192)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7500" - "plane" "(805 771 192) (805 771 194) (844 771 194)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 245.307] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7499" - "plane" "(844 771 194) (805 771 194) (805 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7498" - "plane" "(805 772 191) (805 780 191) (805 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2492" - side - { - "id" "7511" - "plane" "(764 772 191) (764 780 191) (764 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7510" - "plane" "(803 780 191) (803 780 194) (764 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[-1 0 0 12.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7509" - "plane" "(764 772 191) (803 772 191) (803 780 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7508" - "plane" "(764 771 192) (803 771 192) (803 772 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7507" - "plane" "(764 771 194) (803 771 194) (803 771 192)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 245.307] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7506" - "plane" "(764 780 194) (803 780 194) (803 771 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7505" - "plane" "(803 772 191) (803 771 192) (803 771 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2493" - side - { - "id" "7518" - "plane" "(952 772 191) (952 771 192) (952 771 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7517" - "plane" "(952 780 194) (913 780 194) (913 780 191)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[-1 0 0 -3.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7516" - "plane" "(952 780 191) (913 780 191) (913 772 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7515" - "plane" "(913 772 191) (913 771 192) (952 771 192)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7514" - "plane" "(913 771 192) (913 771 194) (952 771 194)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 245.307] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7513" - "plane" "(952 771 194) (913 771 194) (913 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7512" - "plane" "(913 772 191) (913 780 191) (913 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2494" - side - { - "id" "7525" - "plane" "(872 772 191) (872 780 191) (872 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7524" - "plane" "(911 780 191) (911 780 194) (872 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[-1 0 0 -3.30273] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7523" - "plane" "(872 772 191) (911 772 191) (911 780 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7522" - "plane" "(872 771 192) (911 771 192) (911 772 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7521" - "plane" "(872 771 194) (911 771 194) (911 771 192)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 245.307] 0.25" - "vaxis" "[-1 0 0 156.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7520" - "plane" "(872 780 194) (911 780 194) (911 771 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7519" - "plane" "(911 772 191) (911 771 192) (911 771 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2495" - side - { - "id" "7531" - "plane" "(872 768 197) (872 776 197) (844 776 197)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7530" - "plane" "(872 776 199) (872 768 199) (844 768 199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7529" - "plane" "(872 768 199) (872 776 199) (872 776 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -281.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7528" - "plane" "(844 776 199) (844 768 199) (844 768 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -281.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7527" - "plane" "(872 776 199) (844 776 199) (844 776 197)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7526" - "plane" "(844 768 199) (872 768 199) (872 768 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 1 -281.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2496" - side - { - "id" "7537" - "plane" "(960 768 197) (960 776 197) (952 776 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7536" - "plane" "(960 776 202) (960 768 202) (952 768 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7535" - "plane" "(952 776 202) (952 768 202) (952 768 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -277.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7534" - "plane" "(960 768 202) (960 776 202) (960 776 197)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 2.69312] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7533" - "plane" "(960 776 202) (952 776 202) (952 776 197)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 1 2.69312] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7532" - "plane" "(952 768 202) (960 768 202) (960 768 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 1 -277.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2497" - side - { - "id" "7545" - "plane" "(872 776 236) (872 770 236) (870 768 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7544" - "plane" "(846 768 199) (870 768 199) (872 770 199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7543" - "plane" "(872 770 236) (872 776 236) (872 776 199)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 0.663086] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7542" - "plane" "(844 776 236) (844 770 236) (844 770 199)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -400.656] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7541" - "plane" "(872 776 236) (844 776 236) (844 776 199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7540" - "plane" "(846 768 236) (870 768 236) (870 768 199)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7539" - "plane" "(844 770 236) (846 768 236) (846 768 199)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 0.707107 0 -507.023] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7538" - "plane" "(870 768 236) (872 770 236) (872 770 199)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 226.256] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2498" - side - { - "id" "7551" - "plane" "(1020 768 202) (1020 776 202) (952 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7550" - "plane" "(1020 776 228) (1020 768 228) (952 768 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7549" - "plane" "(1020 768 228) (1020 776 228) (1020 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7548" - "plane" "(952 776 228) (952 768 228) (952 768 202)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -320.656] 0.25" - "vaxis" "[0 0 1 -373.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7547" - "plane" "(1020 776 228) (952 776 228) (952 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7546" - "plane" "(952 768 228) (1020 768 228) (1020 768 202)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2499" - side - { - "id" "7557" - "plane" "(960 768 228) (960 776 228) (952 776 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7556" - "plane" "(960 776 244) (960 768 244) (952 768 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7555" - "plane" "(952 776 244) (952 768 244) (952 768 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7554" - "plane" "(960 768 244) (960 776 244) (960 776 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 14.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7553" - "plane" "(960 776 244) (952 776 244) (952 776 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 1 14.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7552" - "plane" "(952 768 244) (960 768 244) (960 768 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 1 -457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2500" - side - { - "id" "7563" - "plane" "(764 768 228) (764 776 228) (756 776 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -416.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7562" - "plane" "(764 776 244) (764 768 244) (756 768 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7561" - "plane" "(756 776 244) (756 768 244) (756 768 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7560" - "plane" "(764 768 244) (764 776 244) (764 776 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -160.663] 0.25" - "vaxis" "[0 0 1 -457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7559" - "plane" "(764 776 244) (756 776 244) (756 776 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 0 1 14.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7558" - "plane" "(756 768 244) (764 768 244) (764 768 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -416.697] 0.25" - "vaxis" "[0 0 1 -457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2501" - side - { - "id" "7569" - "plane" "(756 768 228) (756 776 228) (732 776 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7568" - "plane" "(756 776 244) (756 768 244) (732 768 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7567" - "plane" "(756 768 244) (756 776 244) (756 776 228)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 432.663] 0.25" - "vaxis" "[0 0 1 -365.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7566" - "plane" "(732 776 244) (732 768 244) (732 768 228)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7565" - "plane" "(756 776 244) (732 776 244) (732 776 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7564" - "plane" "(732 768 244) (756 768 244) (756 768 228)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2502" - side - { - "id" "7575" - "plane" "(1020 768 228) (1020 776 228) (960 776 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7574" - "plane" "(1020 776 244) (1020 768 244) (960 768 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7573" - "plane" "(1020 768 244) (1020 776 244) (1020 776 228)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 432.663] 0.25" - "vaxis" "[0 0 1 -365.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7572" - "plane" "(960 776 244) (960 768 244) (960 768 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7571" - "plane" "(1020 776 244) (960 776 244) (960 776 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 1 -5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7570" - "plane" "(960 768 244) (1020 768 244) (1020 768 228)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2503" - side - { - "id" "7581" - "plane" "(1020 768 244) (1020 776 244) (732 776 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7580" - "plane" "(1020 776 288) (1020 768 288) (732 768 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7579" - "plane" "(1020 768 288) (1020 776 288) (1020 776 244)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 432.663] 0.25" - "vaxis" "[0 0 1 -429.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7578" - "plane" "(732 776 288) (732 768 288) (732 768 244)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7577" - "plane" "(1020 776 288) (732 776 288) (732 776 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 1 -5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7576" - "plane" "(732 768 288) (1020 768 288) (1020 768 244)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2504" - side - { - "id" "7587" - "plane" "(844 776 304) (844 768 304) (836 768 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7586" - "plane" "(844 768 288) (844 776 288) (836 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 368.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7585" - "plane" "(844 768 304) (844 776 304) (844 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7584" - "plane" "(836 776 304) (836 768 304) (836 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7583" - "plane" "(844 776 304) (836 776 304) (836 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7582" - "plane" "(836 768 304) (844 768 304) (844 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 368.697] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2505" - side - { - "id" "7593" - "plane" "(872 776 296) (872 768 296) (844 768 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7592" - "plane" "(872 768 288) (872 776 288) (844 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 400.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7591" - "plane" "(872 768 296) (872 776 296) (872 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7590" - "plane" "(844 776 296) (844 768 296) (844 768 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7589" - "plane" "(872 776 296) (844 776 296) (844 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7588" - "plane" "(844 768 296) (872 768 296) (872 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 400.697] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2506" - side - { - "id" "7599" - "plane" "(880 776 304) (880 768 304) (872 768 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7598" - "plane" "(880 768 288) (880 776 288) (872 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7597" - "plane" "(880 768 304) (880 776 304) (880 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -48.6602] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7596" - "plane" "(872 776 304) (872 768 304) (872 768 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7595" - "plane" "(880 776 304) (872 776 304) (872 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7594" - "plane" "(872 768 304) (880 768 304) (880 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2507" - side - { - "id" "7606" - "plane" "(844 776 312) (844 768 312) (838 768 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7605" - "plane" "(838 768 304) (844 768 304) (844 776 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 368.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7604" - "plane" "(844 768 312) (844 776 312) (844 776 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7603" - "plane" "(836 776 312) (836 770 312) (836 770 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7602" - "plane" "(844 776 312) (836 776 312) (836 776 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7601" - "plane" "(838 768 312) (844 768 312) (844 768 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 368.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7600" - "plane" "(836 770 312) (838 768 312) (838 768 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2508" - side - { - "id" "7613" - "plane" "(880 776 312) (880 770 312) (878 768 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7612" - "plane" "(878 768 304) (880 770 304) (880 776 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -384.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7611" - "plane" "(872 776 312) (872 768 312) (872 768 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7610" - "plane" "(880 770 312) (880 776 312) (880 776 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7609" - "plane" "(880 776 312) (872 776 312) (872 776 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7608" - "plane" "(872 768 312) (878 768 312) (878 768 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -384.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7607" - "plane" "(878 768 312) (880 770 312) (880 770 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2509" - side - { - "id" "7619" - "plane" "(872 776 312) (872 768 312) (844 768 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7618" - "plane" "(872 768 296) (872 776 296) (844 776 296)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 400.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7617" - "plane" "(872 768 312) (872 776 312) (872 776 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7616" - "plane" "(844 776 312) (844 768 312) (844 768 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7615" - "plane" "(872 776 312) (844 776 312) (844 776 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7614" - "plane" "(844 768 312) (872 768 312) (872 768 296)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 144.697] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2510" - side - { - "id" "7627" - "plane" "(880 776 368) (880 770 368) (878 768 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7626" - "plane" "(838 768 312) (878 768 312) (880 770 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7625" - "plane" "(880 770 368) (880 776 368) (880 776 312)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 448.663] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7624" - "plane" "(836 776 368) (836 770 368) (836 770 312)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -400.656] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7623" - "plane" "(880 776 368) (836 776 368) (836 776 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7622" - "plane" "(838 768 368) (878 768 368) (878 768 312)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 144.697] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7621" - "plane" "(836 770 368) (838 768 368) (838 768 312)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 0.707107 0 -17.6514] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7620" - "plane" "(878 768 368) (880 770 368) (880 770 312)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 184.882] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2511" - side - { - "id" "7633" - "plane" "(836 776 412) (836 775 412) (764 775 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7632" - "plane" "(836 775 288) (836 776 288) (764 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7631" - "plane" "(836 775 412) (836 776 412) (836 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7630" - "plane" "(764 776 412) (764 775 412) (764 775 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7629" - "plane" "(836 776 412) (764 776 412) (764 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7628" - "plane" "(764 775 412) (836 775 412) (836 775 288)" - "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" - "uaxis" "[-1 0 0 312.889] 0.140625" - "vaxis" "[0 0 -1 165.161] 0.242188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2512" - side - { - "id" "7640" - "plane" "(836 776 412) (836 770 412) (830 770 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7639" - "plane" "(830 770 292) (836 770 292) (836 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 336.697] 0.25" - "vaxis" "[0 -1 0 -23.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7638" - "plane" "(836 770 412) (836 776 412) (836 776 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 7.33984] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7637" - "plane" "(828 776 412) (828 772 412) (828 772 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7636" - "plane" "(830 770 412) (836 770 412) (836 770 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 336.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7635" - "plane" "(828 772 412) (830 770 412) (830 770 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7634" - "plane" "(836 776 412) (828 776 412) (828 776 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2513" - side - { - "id" "7647" - "plane" "(772 776 412) (772 772 412) (770 770 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7646" - "plane" "(770 770 292) (772 772 292) (772 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -464.697] 0.25" - "vaxis" "[0 -1 0 -23.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7645" - "plane" "(764 776 412) (764 770 412) (764 770 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 7.33984] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7644" - "plane" "(772 772 412) (772 776 412) (772 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7643" - "plane" "(764 770 412) (770 770 412) (770 770 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -464.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7642" - "plane" "(770 770 412) (772 772 412) (772 772 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7641" - "plane" "(772 776 412) (764 776 412) (764 776 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2514" - side - { - "id" "7653" - "plane" "(764 776 304) (764 768 304) (756 768 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7652" - "plane" "(764 768 288) (764 776 288) (756 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 48.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7651" - "plane" "(764 768 304) (764 776 304) (764 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -48.6602] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7650" - "plane" "(756 776 304) (756 768 304) (756 768 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7649" - "plane" "(764 776 304) (756 776 304) (756 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7648" - "plane" "(756 768 304) (764 768 304) (764 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 48.6973] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2515" - side - { - "id" "7660" - "plane" "(764 776 312) (764 770 312) (762 768 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7659" - "plane" "(762 768 304) (764 770 304) (764 776 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -432.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7658" - "plane" "(756 776 312) (756 768 312) (756 768 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7657" - "plane" "(764 770 312) (764 776 312) (764 776 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7656" - "plane" "(764 776 312) (756 776 312) (756 776 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7655" - "plane" "(756 768 312) (762 768 312) (762 768 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -432.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7654" - "plane" "(762 768 312) (764 770 312) (764 770 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2516" - side - { - "id" "7666" - "plane" "(756 776 296) (756 768 296) (732 768 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7665" - "plane" "(756 768 288) (756 776 288) (732 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 448.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7664" - "plane" "(756 768 296) (756 776 296) (756 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7663" - "plane" "(732 776 296) (732 768 296) (732 768 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7662" - "plane" "(756 776 296) (732 776 296) (732 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7661" - "plane" "(732 768 296) (756 768 296) (756 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 448.697] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2517" - side - { - "id" "7673" - "plane" "(764 770 376) (762 768 376) (732 768 376)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7672" - "plane" "(764 770 312) (764 776 312) (732 776 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7671" - "plane" "(764 770 376) (764 776 376) (764 776 312)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 448.663] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7670" - "plane" "(764 776 376) (732 776 376) (732 776 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7669" - "plane" "(732 768 376) (762 768 376) (762 768 312)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 192.697] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7668" - "plane" "(762 768 376) (764 770 376) (764 770 312)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 368.786] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7667" - "plane" "(732 776 376) (732 768 376) (732 768 312)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2518" - side - { - "id" "7679" - "plane" "(756 768 312) (732 768 312) (732 776 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7678" - "plane" "(756 776 296) (732 776 296) (732 768 296)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 448.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7677" - "plane" "(756 768 312) (756 776 312) (756 776 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7676" - "plane" "(756 776 312) (732 776 312) (732 776 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7675" - "plane" "(732 768 312) (756 768 312) (756 768 296)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 192.697] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7674" - "plane" "(732 776 312) (732 768 312) (732 768 296)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2519" - side - { - "id" "7687" - "plane" "(798 768 298) (798 776 298) (802 776 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 64.6973] 0.25" - "vaxis" "[0 -1 0 472.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7686" - "plane" "(803 768 292) (803 776 292) (797 776 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7685" - "plane" "(803 768 297) (803 776 297) (803 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7684" - "plane" "(797 776 297) (797 768 297) (797 768 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7683" - "plane" "(797 768 297) (798 768 298) (802 768 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 64.6973] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7682" - "plane" "(798 776 298) (798 768 298) (797 768 297)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7681" - "plane" "(802 768 298) (802 776 298) (803 776 297)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7680" - "plane" "(803 776 297) (802 776 298) (798 776 298)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2520" - side - { - "id" "7695" - "plane" "(802 776 368) (802 770 368) (801 769 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7694" - "plane" "(799 769 298) (801 769 298) (802 770 298)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7693" - "plane" "(798 776 368) (798 770 368) (798 770 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7692" - "plane" "(802 770 368) (802 776 368) (802 776 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7691" - "plane" "(801 769 368) (802 770 368) (802 770 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7690" - "plane" "(798 770 368) (799 769 368) (799 769 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7689" - "plane" "(799 769 368) (801 769 368) (801 769 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -160.697] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7688" - "plane" "(802 776 368) (798 776 368) (798 776 298)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2521" - side - { - "id" "7701" - "plane" "(1186 776 376) (1186 768 376) (762 768 376)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7700" - "plane" "(1186 768 368) (1186 776 368) (762 776 368)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7699" - "plane" "(1186 768 376) (1186 776 376) (1186 776 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7698" - "plane" "(762 776 376) (762 768 376) (762 768 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7697" - "plane" "(1186 776 376) (762 776 376) (762 776 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7696" - "plane" "(762 768 376) (1186 768 376) (1186 768 368)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 445.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2522" - side - { - "id" "7709" - "plane" "(914 768 298) (914 776 298) (918 776 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 472.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7708" - "plane" "(919 768 292) (919 776 292) (913 776 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7707" - "plane" "(919 768 297) (919 776 297) (919 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7706" - "plane" "(913 776 297) (913 768 297) (913 768 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7705" - "plane" "(913 768 297) (914 768 298) (918 768 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7704" - "plane" "(914 776 298) (914 768 298) (913 768 297)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7703" - "plane" "(918 768 298) (918 776 298) (919 776 297)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7702" - "plane" "(919 776 297) (918 776 298) (914 776 298)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2523" - side - { - "id" "7717" - "plane" "(918 776 368) (918 770 368) (917 769 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7716" - "plane" "(915 769 298) (917 769 298) (918 770 298)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7715" - "plane" "(914 776 368) (914 770 368) (914 770 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7714" - "plane" "(918 770 368) (918 776 368) (918 776 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7713" - "plane" "(917 769 368) (918 770 368) (918 770 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7712" - "plane" "(914 770 368) (915 769 368) (915 769 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7711" - "plane" "(915 769 368) (917 769 368) (917 769 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -112.697] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7710" - "plane" "(918 776 368) (914 776 368) (914 776 298)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2524" - side - { - "id" "7723" - "plane" "(952 776 412) (952 775 412) (880 775 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7722" - "plane" "(952 775 288) (952 776 288) (880 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7721" - "plane" "(952 775 412) (952 776 412) (952 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7720" - "plane" "(880 776 412) (880 775 412) (880 775 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7719" - "plane" "(952 776 412) (880 776 412) (880 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7718" - "plane" "(880 775 412) (952 775 412) (952 775 288)" - "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" - "uaxis" "[-1 0 0 113.778] 0.140625" - "vaxis" "[0 0 -1 165.161] 0.242188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2525" - side - { - "id" "7730" - "plane" "(888 776 412) (888 772 412) (886 770 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7729" - "plane" "(886 770 292) (888 772 292) (888 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -416.697] 0.25" - "vaxis" "[0 -1 0 -23.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7728" - "plane" "(880 776 412) (880 770 412) (880 770 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 7.33984] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7727" - "plane" "(888 772 412) (888 776 412) (888 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7726" - "plane" "(880 770 412) (886 770 412) (886 770 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -416.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7725" - "plane" "(886 770 412) (888 772 412) (888 772 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7724" - "plane" "(888 776 412) (880 776 412) (880 776 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2526" - side - { - "id" "7737" - "plane" "(952 776 412) (952 770 412) (946 770 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7736" - "plane" "(946 770 292) (952 770 292) (952 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 288.697] 0.25" - "vaxis" "[0 -1 0 -23.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7735" - "plane" "(952 770 412) (952 776 412) (952 776 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 7.33984] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7734" - "plane" "(944 776 412) (944 772 412) (944 772 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7733" - "plane" "(946 770 412) (952 770 412) (952 770 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 288.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7732" - "plane" "(944 772 412) (946 770 412) (946 770 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7731" - "plane" "(952 776 412) (944 776 412) (944 776 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2527" - side - { - "id" "7743" - "plane" "(960 776 304) (960 768 304) (952 768 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7742" - "plane" "(960 768 288) (960 776 288) (952 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 320.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7741" - "plane" "(960 768 304) (960 776 304) (960 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7740" - "plane" "(952 776 304) (952 768 304) (952 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7739" - "plane" "(960 776 304) (952 776 304) (952 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7738" - "plane" "(952 768 304) (960 768 304) (960 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 320.697] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2528" - side - { - "id" "7749" - "plane" "(988 776 296) (988 768 296) (960 768 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7748" - "plane" "(988 768 288) (988 776 288) (960 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 352.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7747" - "plane" "(988 768 296) (988 776 296) (988 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7746" - "plane" "(960 776 296) (960 768 296) (960 768 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7745" - "plane" "(988 776 296) (960 776 296) (960 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7744" - "plane" "(960 768 296) (988 768 296) (988 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 352.697] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2529" - side - { - "id" "7756" - "plane" "(960 776 312) (960 768 312) (954 768 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7755" - "plane" "(954 768 304) (960 768 304) (960 776 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 320.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7754" - "plane" "(960 768 312) (960 776 312) (960 776 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7753" - "plane" "(952 776 312) (952 770 312) (952 770 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7752" - "plane" "(960 776 312) (952 776 312) (952 776 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7751" - "plane" "(954 768 312) (960 768 312) (960 768 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 320.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7750" - "plane" "(952 770 312) (954 768 312) (954 768 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2530" - side - { - "id" "7762" - "plane" "(988 776 312) (988 768 312) (960 768 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7761" - "plane" "(988 768 296) (988 776 296) (960 776 296)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 352.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7760" - "plane" "(988 768 312) (988 776 312) (988 776 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7759" - "plane" "(960 776 312) (960 768 312) (960 768 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7758" - "plane" "(988 776 312) (960 776 312) (960 776 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7757" - "plane" "(960 768 312) (988 768 312) (988 768 296)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 96.6973] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2531" - side - { - "id" "7770" - "plane" "(996 776 368) (996 770 368) (994 768 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7769" - "plane" "(954 768 312) (994 768 312) (996 770 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7768" - "plane" "(996 770 368) (996 776 368) (996 776 312)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 448.663] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7767" - "plane" "(952 776 368) (952 770 368) (952 770 312)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -400.656] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7766" - "plane" "(996 776 368) (952 776 368) (952 776 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7765" - "plane" "(954 768 368) (994 768 368) (994 768 312)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 96.6973] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7764" - "plane" "(952 770 368) (954 768 368) (954 768 312)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 0.707107 0 -201.556] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7763" - "plane" "(994 768 368) (996 770 368) (996 770 312)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 0.980075] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2532" - side - { - "id" "7777" - "plane" "(996 776 312) (996 770 312) (994 768 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7776" - "plane" "(994 768 304) (996 770 304) (996 776 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -336.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7775" - "plane" "(988 776 312) (988 768 312) (988 768 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7774" - "plane" "(996 770 312) (996 776 312) (996 776 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7773" - "plane" "(996 776 312) (988 776 312) (988 776 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7772" - "plane" "(988 768 312) (994 768 312) (994 768 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -336.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7771" - "plane" "(994 768 312) (996 770 312) (996 770 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2533" - side - { - "id" "7783" - "plane" "(996 776 304) (996 768 304) (988 768 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7782" - "plane" "(996 768 288) (996 776 288) (988 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 464.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7781" - "plane" "(996 768 304) (996 776 304) (996 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -48.6602] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7780" - "plane" "(988 776 304) (988 768 304) (988 768 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7779" - "plane" "(996 776 304) (988 776 304) (988 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7778" - "plane" "(988 768 304) (996 768 304) (996 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 464.697] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2534" - side - { - "id" "7791" - "plane" "(1030 768 298) (1030 776 298) (1034 776 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 472.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7790" - "plane" "(1035 768 292) (1035 776 292) (1029 776 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 28.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7789" - "plane" "(1035 768 297) (1035 776 297) (1035 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7788" - "plane" "(1029 776 297) (1029 768 297) (1029 768 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7787" - "plane" "(1029 768 297) (1030 768 298) (1034 768 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7786" - "plane" "(1030 776 298) (1030 768 298) (1029 768 297)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7785" - "plane" "(1034 768 298) (1034 776 298) (1035 776 297)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7784" - "plane" "(1035 776 297) (1034 776 298) (1030 776 298)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2535" - side - { - "id" "7799" - "plane" "(1034 776 368) (1034 770 368) (1033 769 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 28.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7798" - "plane" "(1031 769 298) (1033 769 298) (1034 770 298)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 28.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7797" - "plane" "(1030 776 368) (1030 770 368) (1030 770 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7796" - "plane" "(1034 770 368) (1034 776 368) (1034 776 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7795" - "plane" "(1033 769 368) (1034 770 368) (1034 770 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7794" - "plane" "(1030 770 368) (1031 769 368) (1031 769 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7793" - "plane" "(1031 769 368) (1033 769 368) (1033 769 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -64.6973] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7792" - "plane" "(1034 776 368) (1030 776 368) (1030 776 298)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2536" - side - { - "id" "7805" - "plane" "(1068 776 412) (1068 775 412) (996 775 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7804" - "plane" "(1068 775 288) (1068 776 288) (996 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7803" - "plane" "(1068 775 412) (1068 776 412) (1068 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7802" - "plane" "(996 776 412) (996 775 412) (996 775 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7801" - "plane" "(1068 776 412) (996 776 412) (996 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7800" - "plane" "(996 775 412) (1068 775 412) (1068 775 288)" - "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" - "uaxis" "[-1 0 0 426.667] 0.140625" - "vaxis" "[0 0 -1 165.161] 0.242188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2537" - side - { - "id" "7812" - "plane" "(1004 776 412) (1004 772 412) (1002 770 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7811" - "plane" "(1002 770 292) (1004 772 292) (1004 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -368.697] 0.25" - "vaxis" "[0 -1 0 -23.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7810" - "plane" "(996 776 412) (996 770 412) (996 770 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 7.33984] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7809" - "plane" "(1004 772 412) (1004 776 412) (1004 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7808" - "plane" "(996 770 412) (1002 770 412) (1002 770 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -368.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7807" - "plane" "(1002 770 412) (1004 772 412) (1004 772 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7806" - "plane" "(1004 776 412) (996 776 412) (996 776 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2538" - side - { - "id" "7819" - "plane" "(1068 776 412) (1068 770 412) (1062 770 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7818" - "plane" "(1062 770 292) (1068 770 292) (1068 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 240.697] 0.25" - "vaxis" "[0 -1 0 -23.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7817" - "plane" "(1068 770 412) (1068 776 412) (1068 776 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 7.33984] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7816" - "plane" "(1060 776 412) (1060 772 412) (1060 772 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7815" - "plane" "(1062 770 412) (1068 770 412) (1068 770 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 240.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7814" - "plane" "(1060 772 412) (1062 770 412) (1062 770 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7813" - "plane" "(1068 776 412) (1060 776 412) (1060 776 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2539" - side - { - "id" "7825" - "plane" "(1076 776 304) (1076 768 304) (1068 768 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7824" - "plane" "(1076 768 288) (1076 776 288) (1068 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 272.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7823" - "plane" "(1076 768 304) (1076 776 304) (1076 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7822" - "plane" "(1068 776 304) (1068 768 304) (1068 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7821" - "plane" "(1076 776 304) (1068 776 304) (1068 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7820" - "plane" "(1068 768 304) (1076 768 304) (1076 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 272.697] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2540" - side - { - "id" "7831" - "plane" "(1104 776 296) (1104 768 296) (1076 768 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7830" - "plane" "(1104 768 288) (1104 776 288) (1076 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 304.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7829" - "plane" "(1104 768 296) (1104 776 296) (1104 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7828" - "plane" "(1076 776 296) (1076 768 296) (1076 768 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7827" - "plane" "(1104 776 296) (1076 776 296) (1076 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7826" - "plane" "(1076 768 296) (1104 768 296) (1104 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 304.697] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2541" - side - { - "id" "7838" - "plane" "(1076 776 312) (1076 768 312) (1070 768 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7837" - "plane" "(1070 768 304) (1076 768 304) (1076 776 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 272.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7836" - "plane" "(1076 768 312) (1076 776 312) (1076 776 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7835" - "plane" "(1068 776 312) (1068 770 312) (1068 770 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7834" - "plane" "(1076 776 312) (1068 776 312) (1068 776 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7833" - "plane" "(1070 768 312) (1076 768 312) (1076 768 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 272.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7832" - "plane" "(1068 770 312) (1070 768 312) (1070 768 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2542" - side - { - "id" "7844" - "plane" "(1104 776 312) (1104 768 312) (1076 768 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7843" - "plane" "(1104 768 296) (1104 776 296) (1076 776 296)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 304.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7842" - "plane" "(1104 768 312) (1104 776 312) (1104 776 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7841" - "plane" "(1076 776 312) (1076 768 312) (1076 768 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7840" - "plane" "(1104 776 312) (1076 776 312) (1076 776 296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7839" - "plane" "(1076 768 312) (1104 768 312) (1104 768 296)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 48.6973] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2543" - side - { - "id" "7852" - "plane" "(1112 776 368) (1112 770 368) (1110 768 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7851" - "plane" "(1070 768 312) (1110 768 312) (1112 770 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7850" - "plane" "(1112 770 368) (1112 776 368) (1112 776 312)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 448.663] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7849" - "plane" "(1068 776 368) (1068 770 368) (1068 770 312)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -400.656] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7848" - "plane" "(1112 776 368) (1068 776 368) (1068 776 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7847" - "plane" "(1070 768 368) (1110 768 368) (1110 768 312)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 48.6973] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7846" - "plane" "(1068 770 368) (1070 768 368) (1070 768 312)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 0.707107 0 -385.458] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7845" - "plane" "(1110 768 368) (1112 770 368) (1112 770 312)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 329.078] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2544" - side - { - "id" "7859" - "plane" "(1112 776 312) (1112 770 312) (1110 768 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7858" - "plane" "(1110 768 304) (1112 770 304) (1112 776 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -288.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7857" - "plane" "(1104 776 312) (1104 768 312) (1104 768 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7856" - "plane" "(1112 770 312) (1112 776 312) (1112 776 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7855" - "plane" "(1112 776 312) (1104 776 312) (1104 776 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7854" - "plane" "(1104 768 312) (1110 768 312) (1110 768 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -288.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7853" - "plane" "(1110 768 312) (1112 770 312) (1112 770 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2545" - side - { - "id" "7865" - "plane" "(1112 776 304) (1112 768 304) (1104 768 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7864" - "plane" "(1112 768 288) (1112 776 288) (1104 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 416.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7863" - "plane" "(1112 768 304) (1112 776 304) (1112 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -48.6602] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7862" - "plane" "(1104 776 304) (1104 768 304) (1104 768 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7861" - "plane" "(1112 776 304) (1104 776 304) (1104 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7860" - "plane" "(1104 768 304) (1112 768 304) (1112 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 416.697] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2546" - side - { - "id" "7873" - "plane" "(1146 768 298) (1146 776 298) (1150 776 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 432.697] 0.25" - "vaxis" "[0 -1 0 472.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7872" - "plane" "(1151 768 292) (1151 776 292) (1145 776 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -19.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7871" - "plane" "(1151 768 297) (1151 776 297) (1151 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7870" - "plane" "(1145 776 297) (1145 768 297) (1145 768 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7869" - "plane" "(1145 768 297) (1146 768 298) (1150 768 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 432.697] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7868" - "plane" "(1146 776 298) (1146 768 298) (1145 768 297)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7867" - "plane" "(1150 768 298) (1150 776 298) (1151 776 297)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7866" - "plane" "(1151 776 297) (1150 776 298) (1146 776 298)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2547" - side - { - "id" "7881" - "plane" "(1150 776 368) (1150 770 368) (1149 769 368)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -19.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7880" - "plane" "(1147 769 298) (1149 769 298) (1150 770 298)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -19.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7879" - "plane" "(1146 776 368) (1146 770 368) (1146 770 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7878" - "plane" "(1150 770 368) (1150 776 368) (1150 776 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7877" - "plane" "(1149 769 368) (1150 770 368) (1150 770 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7876" - "plane" "(1146 770 368) (1147 769 368) (1147 769 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7875" - "plane" "(1147 769 368) (1149 769 368) (1149 769 298)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7874" - "plane" "(1150 776 368) (1146 776 368) (1146 776 298)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2548" - side - { - "id" "7887" - "plane" "(1184 776 412) (1184 775 412) (1112 775 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7886" - "plane" "(1184 775 288) (1184 776 288) (1112 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7885" - "plane" "(1184 775 412) (1184 776 412) (1184 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7884" - "plane" "(1112 776 412) (1112 775 412) (1112 775 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7883" - "plane" "(1184 776 412) (1112 776 412) (1112 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7882" - "plane" "(1112 775 412) (1184 775 412) (1184 775 288)" - "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" - "uaxis" "[-1 0 0 227.556] 0.140625" - "vaxis" "[0 0 -1 165.161] 0.242188" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2549" - side - { - "id" "7894" - "plane" "(1120 776 412) (1120 772 412) (1118 770 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7893" - "plane" "(1118 770 292) (1120 772 292) (1120 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -320.697] 0.25" - "vaxis" "[0 -1 0 -23.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7892" - "plane" "(1112 776 412) (1112 770 412) (1112 770 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 7.33984] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7891" - "plane" "(1120 772 412) (1120 776 412) (1120 776 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7890" - "plane" "(1112 770 412) (1118 770 412) (1118 770 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -320.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7889" - "plane" "(1118 770 412) (1120 772 412) (1120 772 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7888" - "plane" "(1120 776 412) (1112 776 412) (1112 776 292)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2550" - side - { - "id" "7901" - "plane" "(1176 776 412) (1184 776 412) (1184 770 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7900" - "plane" "(1176 772 292) (1178 770 292) (1184 770 292)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 192.697] 0.25" - "vaxis" "[0 -1 0 -23.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7899" - "plane" "(1184 770 292) (1184 770 412) (1184 776 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 7.33984] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7898" - "plane" "(1176 776 292) (1176 776 412) (1176 772 412)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7897" - "plane" "(1178 770 292) (1178 770 412) (1184 770 412)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 192.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7896" - "plane" "(1176 772 292) (1176 772 412) (1178 770 412)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -248.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7895" - "plane" "(1184 776 292) (1184 776 412) (1176 776 412)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2551" - side - { - "id" "7907" - "plane" "(1192 776 304) (1192 768 304) (1184 768 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7906" - "plane" "(1192 768 288) (1192 776 288) (1184 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 224.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7905" - "plane" "(1192 768 304) (1192 776 304) (1192 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7904" - "plane" "(1184 776 304) (1184 768 304) (1184 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7903" - "plane" "(1192 776 304) (1184 776 304) (1184 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7902" - "plane" "(1184 768 304) (1192 768 304) (1192 768 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 224.697] 0.25" - "vaxis" "[0 0 -1 125.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2552" - side - { - "id" "7914" - "plane" "(1192 776 312) (1192 768 312) (1186 768 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7913" - "plane" "(1186 768 304) (1192 768 304) (1192 776 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 224.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7912" - "plane" "(1192 768 312) (1192 776 312) (1192 776 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7911" - "plane" "(1184 776 312) (1184 770 312) (1184 770 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7910" - "plane" "(1192 776 312) (1184 776 312) (1184 776 304)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7909" - "plane" "(1186 768 312) (1192 768 312) (1192 768 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 224.697] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7908" - "plane" "(1184 770 312) (1186 768 312) (1186 768 304)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -240.66] 0.25" - "vaxis" "[0 0 -1 189.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2553" - side - { - "id" "7920" - "plane" "(1220 776 312) (1220 768 312) (1192 768 312)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7919" - "plane" "(1220 768 288) (1220 776 288) (1192 776 288)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 256.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7918" - "plane" "(1220 768 312) (1220 776 312) (1220 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7917" - "plane" "(1192 776 312) (1192 768 312) (1192 768 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7916" - "plane" "(1220 776 312) (1192 776 312) (1192 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7915" - "plane" "(1192 768 312) (1220 768 312) (1220 768 288)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 165.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2554" - side - { - "id" "7926" - "plane" "(1160 768 252) (1160 776 252) (1020 776 252)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7925" - "plane" "(1160 776 288) (1160 768 288) (1020 768 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7924" - "plane" "(1160 768 288) (1160 776 288) (1160 776 252)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7923" - "plane" "(1020 776 288) (1020 768 288) (1020 768 252)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7922" - "plane" "(1160 776 288) (1020 776 288) (1020 776 252)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 1 -5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7921" - "plane" "(1020 768 288) (1160 768 288) (1160 768 252)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -208.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2555" - side - { - "id" "7932" - "plane" "(1160 768 238) (1160 776 238) (1128 776 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7931" - "plane" "(1160 776 252) (1160 768 252) (1106 768 252)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7930" - "plane" "(1128 768 238) (1128 776 238) (1106 776 252)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7929" - "plane" "(1160 768 252) (1160 776 252) (1160 776 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7928" - "plane" "(1160 776 252) (1106 776 252) (1128 776 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7927" - "plane" "(1106 768 252) (1160 768 252) (1160 768 238)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2556" - side - { - "id" "7938" - "plane" "(1160 768 224) (1160 776 224) (1144 776 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7937" - "plane" "(1160 776 238) (1160 768 238) (1128 768 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7936" - "plane" "(1144 768 224) (1144 776 224) (1128 776 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7935" - "plane" "(1160 768 238) (1160 776 238) (1160 776 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7934" - "plane" "(1160 776 238) (1128 776 238) (1144 776 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7933" - "plane" "(1128 768 238) (1160 768 238) (1160 768 224)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2557" - side - { - "id" "7944" - "plane" "(1160 768 202) (1160 776 202) (1156 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7943" - "plane" "(1160 776 224) (1160 768 224) (1144 768 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7942" - "plane" "(1144 776 224) (1144 768 224) (1156 768 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7941" - "plane" "(1160 768 224) (1160 776 224) (1160 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7940" - "plane" "(1160 776 224) (1144 776 224) (1156 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7939" - "plane" "(1144 768 224) (1160 768 224) (1160 768 202)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 320.695] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2558" - side - { - "id" "7950" - "plane" "(764 768 376) (764 776 376) (732 776 376)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7949" - "plane" "(764 776 420) (764 768 420) (732 768 420)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7948" - "plane" "(764 768 420) (764 776 420) (764 776 376)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 432.663] 0.25" - "vaxis" "[0 0 1 -445.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7947" - "plane" "(732 776 420) (732 768 420) (732 768 376)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7946" - "plane" "(764 776 420) (732 776 420) (732 776 376)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 1 -21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7945" - "plane" "(732 768 420) (764 768 420) (764 768 376)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -80.6973] 0.25" - "vaxis" "[0 0 -1 277.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2559" - side - { - "id" "7957" - "plane" "(1028 768 64) (1036 776 64) (1036 784 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7956" - "plane" "(1020 784 64) (1020 784 104) (1020 768 104)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7955" - "plane" "(1036 776 64) (1036 776 104) (1036 784 104)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7954" - "plane" "(1036 784 64) (1036 784 104) (1020 784 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7953" - "plane" "(1020 768 64) (1020 768 104) (1028 768 104)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7952" - "plane" "(1028 768 64) (1028 768 104) (1036 776 104)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.707107 0.707107 0 18.0502] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7951" - "plane" "(1036 784 104) (1036 776 104) (1028 768 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2560" - side - { - "id" "7964" - "plane" "(1036 784 176) (1036 776 176) (1028 768 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7963" - "plane" "(1020 768 176) (1020 768 104) (1020 784 104)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7962" - "plane" "(1036 784 176) (1036 784 104) (1036 776 104)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7961" - "plane" "(1020 784 176) (1020 784 104) (1036 784 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7960" - "plane" "(1028 768 176) (1028 768 104) (1020 768 104)" - "material" "BRICK/WALL20" - "uaxis" "[1 0 0 -240.695] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7959" - "plane" "(1036 776 176) (1036 776 104) (1028 768 104)" - "material" "BRICK/WALL20" - "uaxis" "[0.707107 0.707107 0 -86.399] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7958" - "plane" "(1028 768 104) (1036 776 104) (1036 784 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2561" - side - { - "id" "7971" - "plane" "(1152 768 64) (1160 768 64) (1160 784 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7970" - "plane" "(1160 768 64) (1160 768 104) (1160 784 104)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7969" - "plane" "(1144 784 64) (1144 784 104) (1144 776 104)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7968" - "plane" "(1160 784 64) (1160 784 104) (1144 784 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7967" - "plane" "(1152 768 64) (1152 768 104) (1160 768 104)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7966" - "plane" "(1144 776 64) (1144 776 104) (1152 768 104)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.707107 0.707107 0 -193.962] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7965" - "plane" "(1160 784 104) (1160 768 104) (1152 768 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2562" - side - { - "id" "7978" - "plane" "(1160 768 116) (1160 768 124) (1160 784 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 277.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7977" - "plane" "(1144 784 116) (1144 784 124) (1144 776 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 277.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7976" - "plane" "(1160 784 116) (1160 784 124) (1144 784 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7975" - "plane" "(1152 768 116) (1152 768 124) (1160 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 277.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7974" - "plane" "(1144 776 116) (1144 776 124) (1152 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.707107 0.707107 0 -193.962] 0.25" - "vaxis" "[0 0 -1 277.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7973" - "plane" "(1152 768 116) (1160 768 116) (1160 784 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7972" - "plane" "(1160 784 124) (1160 768 124) (1152 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2563" - side - { - "id" "7985" - "plane" "(1160 784 176) (1160 768 176) (1152 768 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7984" - "plane" "(1160 784 176) (1160 784 124) (1160 768 124)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7983" - "plane" "(1144 776 176) (1144 776 124) (1144 784 124)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7982" - "plane" "(1144 784 176) (1144 784 124) (1160 784 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7981" - "plane" "(1160 768 176) (1160 768 124) (1152 768 124)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 320.695] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7980" - "plane" "(1152 768 176) (1152 768 124) (1144 776 124)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 0.707107 0 -190.782] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7979" - "plane" "(1152 768 124) (1160 768 124) (1160 784 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2564" - side - { - "id" "7992" - "plane" "(1160 768 104) (1160 768 116) (1160 784 116)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7991" - "plane" "(1144 784 104) (1144 784 116) (1144 776 116)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -432.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7990" - "plane" "(1160 784 104) (1160 784 116) (1144 784 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7989" - "plane" "(1152 768 104) (1152 768 116) (1160 768 116)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 320.695] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7988" - "plane" "(1144 776 104) (1144 776 116) (1152 768 116)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 0.707107 0 -190.782] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7987" - "plane" "(1152 768 104) (1160 768 104) (1160 784 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7986" - "plane" "(1160 784 116) (1160 768 116) (1152 768 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2565" - side - { - "id" "7999" - "plane" "(1324 784 96) (1340 768 96) (1156 768 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7998" - "plane" "(1156 784 64) (1156 764 64) (1344 764 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7997" - "plane" "(1344 764 92) (1340 768 96) (1324 784 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7996" - "plane" "(1156 784 96) (1156 768 96) (1156 764 92)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7995" - "plane" "(1324 784 96) (1156 784 96) (1156 784 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7994" - "plane" "(1156 764 92) (1344 764 92) (1344 764 64)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 80.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7993" - "plane" "(1340 768 96) (1344 764 92) (1156 764 92)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2566" - side - { - "id" "8005" - "plane" "(1340 784 116) (1340 768 116) (1160 768 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 0.660156] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8004" - "plane" "(1340 768 96) (1340 784 96) (1160 784 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 0.660156] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8003" - "plane" "(1340 768 116) (1340 784 116) (1340 784 96)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -288.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8002" - "plane" "(1160 784 116) (1160 768 116) (1160 768 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -0.660156] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8001" - "plane" "(1340 784 116) (1160 784 116) (1160 784 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8000" - "plane" "(1160 768 116) (1340 768 116) (1340 768 96)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 320.695] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2567" - side - { - "id" "8011" - "plane" "(1236 764 108) (1236 768 112) (1236 768 92)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -0.660156] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8010" - "plane" "(1172 764 92) (1172 768 92) (1172 768 112)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -0.660156] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8009" - "plane" "(1172 764 92) (1172 764 108) (1236 764 108)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 448.697] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8008" - "plane" "(1172 764 108) (1172 768 112) (1236 768 112)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -32.6973] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8007" - "plane" "(1236 764 92) (1236 768 92) (1172 768 92)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8006" - "plane" "(1236 768 92) (1236 768 112) (1172 768 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2568" - side - { - "id" "8017" - "plane" "(1328 764 108) (1328 768 112) (1328 768 92)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -0.660156] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8016" - "plane" "(1264 764 92) (1264 768 92) (1264 768 112)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -0.660156] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8015" - "plane" "(1264 764 92) (1264 764 108) (1328 764 108)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 304.697] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8014" - "plane" "(1264 764 108) (1264 768 112) (1328 768 112)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -400.697] 0.25" - "vaxis" "[0 0 -1 293.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8013" - "plane" "(1328 764 92) (1328 768 92) (1264 768 92)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 16.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8012" - "plane" "(1328 768 92) (1328 768 112) (1264 768 112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2569" - side - { - "id" "8023" - "plane" "(1236 775 123) (1236 774 123) (1172 774 123)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8022" - "plane" "(1236 774 122) (1236 775 122) (1172 775 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8021" - "plane" "(1236 774 123) (1236 775 123) (1236 775 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8020" - "plane" "(1172 775 123) (1172 774 123) (1172 774 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8019" - "plane" "(1236 775 123) (1172 775 123) (1172 775 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8018" - "plane" "(1172 774 123) (1236 774 123) (1236 774 122)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2570" - side - { - "id" "8031" - "plane" "(1206 770 126) (1202 770 126) (1202 780 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 144.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8030" - "plane" "(1207 770 120) (1207 780 120) (1201 780 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8029" - "plane" "(1207 770 125) (1207 780 125) (1207 780 120)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8028" - "plane" "(1201 780 125) (1201 770 125) (1201 770 120)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8027" - "plane" "(1207 780 125) (1206 780 126) (1202 780 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8026" - "plane" "(1201 770 125) (1202 770 126) (1206 770 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 144.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8025" - "plane" "(1202 780 126) (1202 770 126) (1201 770 125)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8024" - "plane" "(1206 770 126) (1206 780 126) (1207 780 125)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2571" - side - { - "id" "8037" - "plane" "(1236 775 122) (1236 773 122) (1172 773 122)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8036" - "plane" "(1236 773 120) (1236 775 120) (1172 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8035" - "plane" "(1236 773 122) (1236 775 122) (1236 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8034" - "plane" "(1172 775 122) (1172 773 122) (1172 773 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8033" - "plane" "(1236 775 122) (1172 775 122) (1172 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8032" - "plane" "(1172 773 122) (1236 773 122) (1236 773 120)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2572" - side - { - "id" "8044" - "plane" "(1236 775 125) (1236 774 125) (1172 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8043" - "plane" "(1236 773 123) (1236 775 123) (1172 775 123)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8042" - "plane" "(1236 773 124) (1236 774 125) (1236 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -4.66016] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8041" - "plane" "(1172 775 125) (1172 774 125) (1172 773 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -4.66016] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8040" - "plane" "(1236 775 125) (1172 775 125) (1172 775 123)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8039" - "plane" "(1172 773 124) (1236 773 124) (1236 773 123)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8038" - "plane" "(1236 774 125) (1236 773 124) (1172 773 124)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[1 0 0 -240.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2573" - side - { - "id" "8052" - "plane" "(1206 780 228) (1206 772 228) (1205 771 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8051" - "plane" "(1202 772 126) (1203 771 126) (1205 771 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8050" - "plane" "(1206 780 228) (1202 780 228) (1202 780 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 0 -1 45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8049" - "plane" "(1202 780 228) (1202 772 228) (1202 772 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8048" - "plane" "(1206 772 228) (1206 780 228) (1206 780 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8047" - "plane" "(1205 771 228) (1206 772 228) (1206 772 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8046" - "plane" "(1202 772 228) (1203 771 228) (1203 771 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8045" - "plane" "(1203 771 228) (1205 771 228) (1205 771 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -240.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2574" - side - { - "id" "8058" - "plane" "(1208 775 192) (1208 774 192) (1206 774 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8.69727] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8057" - "plane" "(1208 774 125) (1208 775 125) (1206 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8.69727] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8056" - "plane" "(1208 774 192) (1208 775 192) (1208 775 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8055" - "plane" "(1206 775 192) (1206 774 192) (1206 774 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8054" - "plane" "(1208 775 192) (1206 775 192) (1206 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8.69727] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8053" - "plane" "(1206 774 192) (1208 774 192) (1208 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2575" - side - { - "id" "8064" - "plane" "(1202 775 192) (1202 774 192) (1200 774 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8063" - "plane" "(1202 774 125) (1202 775 125) (1200 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8062" - "plane" "(1202 774 192) (1202 775 192) (1202 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8061" - "plane" "(1200 775 192) (1200 774 192) (1200 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8060" - "plane" "(1202 775 192) (1200 775 192) (1200 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8059" - "plane" "(1200 774 192) (1202 774 192) (1202 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2576" - side - { - "id" "8070" - "plane" "(1174 775 231) (1174 774 231) (1172 774 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8069" - "plane" "(1174 774 125) (1174 775 125) (1172 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8068" - "plane" "(1174 774 231) (1174 775 231) (1174 775 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8067" - "plane" "(1172 775 231) (1172 774 231) (1172 774 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8066" - "plane" "(1174 775 231) (1172 775 231) (1172 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8065" - "plane" "(1172 774 231) (1174 774 231) (1174 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2577" - side - { - "id" "8076" - "plane" "(1236 776 236) (1236 775 236) (1172 775 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8075" - "plane" "(1236 775 120) (1236 776 120) (1172 776 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8074" - "plane" "(1236 775 236) (1236 776 236) (1236 776 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8073" - "plane" "(1172 776 236) (1172 775 236) (1172 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8072" - "plane" "(1236 776 236) (1172 776 236) (1172 776 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8071" - "plane" "(1172 775 236) (1236 775 236) (1236 775 120)" - "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" - "uaxis" "[-1 0 0 160] 0.125" - "vaxis" "[0 0 -1 17.6552] 0.226563" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2578" - side - { - "id" "8082" - "plane" "(1236 775 191) (1236 773 191) (1172 773 191)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8081" - "plane" "(1236 773 189) (1236 775 189) (1172 775 189)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8080" - "plane" "(1236 773 191) (1236 775 191) (1236 775 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8079" - "plane" "(1172 775 191) (1172 773 191) (1172 773 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8078" - "plane" "(1236 775 191) (1172 775 191) (1172 775 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8077" - "plane" "(1172 773 191) (1236 773 191) (1236 773 189)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2579" - side - { - "id" "8089" - "plane" "(1172 772 191) (1172 780 191) (1172 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8088" - "plane" "(1203 780 191) (1203 780 194) (1172 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[-1 0 0 -19.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8087" - "plane" "(1172 772 191) (1203 772 191) (1203 780 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 252.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8086" - "plane" "(1172 771 192) (1203 771 192) (1203 772 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 252.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8085" - "plane" "(1172 771 194) (1203 771 194) (1203 771 192)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 245.307] 0.25" - "vaxis" "[-1 0 0 252.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8084" - "plane" "(1172 780 194) (1203 780 194) (1203 771 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8083" - "plane" "(1203 772 191) (1203 771 192) (1203 771 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2580" - side - { - "id" "8096" - "plane" "(1236 772 191) (1236 771 192) (1236 771 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8095" - "plane" "(1236 780 194) (1205 780 194) (1205 780 191)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[-1 0 0 -19.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8094" - "plane" "(1236 780 191) (1205 780 191) (1205 772 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 252.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8093" - "plane" "(1205 772 191) (1205 771 192) (1236 771 192)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 252.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8092" - "plane" "(1205 771 192) (1205 771 194) (1236 771 194)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 245.307] 0.25" - "vaxis" "[-1 0 0 252.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8091" - "plane" "(1236 771 194) (1205 771 194) (1205 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8090" - "plane" "(1205 772 191) (1205 780 191) (1205 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2581" - side - { - "id" "8102" - "plane" "(1236 775 231) (1236 774 231) (1234 774 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8101" - "plane" "(1236 774 125) (1236 775 125) (1234 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8100" - "plane" "(1236 774 231) (1236 775 231) (1236 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8099" - "plane" "(1234 775 231) (1234 774 231) (1234 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8098" - "plane" "(1236 775 231) (1234 775 231) (1234 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8097" - "plane" "(1234 774 231) (1236 774 231) (1236 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 144.697] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2582" - side - { - "id" "8108" - "plane" "(1328 780 197) (1328 768 197) (1172 768 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8107" - "plane" "(1328 768 194) (1328 780 194) (1172 780 194)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8106" - "plane" "(1328 768 197) (1328 780 197) (1328 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 13.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8105" - "plane" "(1172 780 197) (1172 768 197) (1172 768 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 13.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8104" - "plane" "(1328 780 197) (1172 780 197) (1172 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 13.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8103" - "plane" "(1172 768 197) (1328 768 197) (1328 768 194)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2583" - side - { - "id" "8114" - "plane" "(1236 775 233) (1236 773 233) (1172 773 233)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8113" - "plane" "(1236 773 231) (1236 775 231) (1172 775 231)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8112" - "plane" "(1236 773 233) (1236 775 233) (1236 775 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8111" - "plane" "(1172 775 233) (1172 773 233) (1172 773 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8110" - "plane" "(1236 775 233) (1172 775 233) (1172 775 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8109" - "plane" "(1172 773 233) (1236 773 233) (1236 773 231)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 0 -1 457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2584" - side - { - "id" "8121" - "plane" "(1236 772 233) (1236 771 234) (1236 771 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8120" - "plane" "(1172 772 233) (1172 780 233) (1172 780 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8119" - "plane" "(1236 780 233) (1236 780 236) (1172 780 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[-1 0 0 -19.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8118" - "plane" "(1236 772 233) (1236 780 233) (1172 780 233)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 252.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8117" - "plane" "(1172 772 233) (1172 771 234) (1236 771 234)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 252.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8116" - "plane" "(1172 771 234) (1172 771 236) (1236 771 236)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 413.307] 0.25" - "vaxis" "[-1 0 0 252.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8115" - "plane" "(1236 780 236) (1236 771 236) (1172 771 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2585" - side - { - "id" "8129" - "plane" "(1264 776 174) (1264 770 174) (1262 768 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8128" - "plane" "(1238 768 136) (1262 768 136) (1264 770 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8127" - "plane" "(1264 770 174) (1264 776 174) (1264 776 136)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 0.663086] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8126" - "plane" "(1236 776 174) (1236 770 174) (1236 770 136)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -400.656] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8125" - "plane" "(1264 776 174) (1236 776 174) (1236 776 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8124" - "plane" "(1238 768 174) (1262 768 174) (1262 768 136)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8123" - "plane" "(1236 770 174) (1238 768 174) (1238 768 136)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 0.707107 0 -422.28] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8122" - "plane" "(1262 768 174) (1264 770 174) (1264 770 136)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 311] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2586" - side - { - "id" "8136" - "plane" "(1238 768 174) (1244 768 174) (1244 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8135" - "plane" "(1244 776 182) (1244 768 182) (1238 768 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8134" - "plane" "(1244 768 182) (1244 776 182) (1244 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8133" - "plane" "(1236 776 182) (1236 770 182) (1236 770 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8132" - "plane" "(1244 776 182) (1236 776 182) (1236 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8131" - "plane" "(1238 768 182) (1244 768 182) (1244 768 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8130" - "plane" "(1236 770 182) (1238 768 182) (1238 768 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2587" - side - { - "id" "8142" - "plane" "(1256 768 174) (1256 776 174) (1244 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8141" - "plane" "(1256 776 186) (1256 768 186) (1244 768 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8140" - "plane" "(1256 768 186) (1256 776 186) (1256 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8139" - "plane" "(1244 776 186) (1244 768 186) (1244 768 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8138" - "plane" "(1256 776 186) (1244 776 186) (1244 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8137" - "plane" "(1244 768 186) (1256 768 186) (1256 768 174)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2588" - side - { - "id" "8148" - "plane" "(1264 768 186) (1264 776 186) (1236 776 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8147" - "plane" "(1264 776 194) (1264 768 194) (1236 768 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8146" - "plane" "(1264 768 194) (1264 776 194) (1264 776 186)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8145" - "plane" "(1236 776 194) (1236 768 194) (1236 768 186)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8144" - "plane" "(1264 776 194) (1236 776 194) (1236 776 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -13.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8143" - "plane" "(1236 768 194) (1264 768 194) (1264 768 186)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2589" - side - { - "id" "8154" - "plane" "(1244 768 182) (1244 776 182) (1236 776 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8153" - "plane" "(1244 776 186) (1244 768 186) (1236 768 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8152" - "plane" "(1244 768 186) (1244 776 186) (1244 776 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8151" - "plane" "(1236 776 186) (1236 768 186) (1236 768 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8150" - "plane" "(1244 776 186) (1236 776 186) (1236 776 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8149" - "plane" "(1236 768 186) (1244 768 186) (1244 768 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2590" - side - { - "id" "8161" - "plane" "(1262 768 174) (1264 770 174) (1264 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8160" - "plane" "(1264 776 182) (1264 770 182) (1262 768 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8159" - "plane" "(1264 770 182) (1264 776 182) (1264 776 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8158" - "plane" "(1256 776 182) (1256 768 182) (1256 768 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8157" - "plane" "(1264 776 182) (1256 776 182) (1256 776 174)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8156" - "plane" "(1256 768 182) (1262 768 182) (1262 768 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8155" - "plane" "(1262 768 182) (1264 770 182) (1264 770 174)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2591" - side - { - "id" "8167" - "plane" "(1264 768 182) (1264 776 182) (1256 776 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8166" - "plane" "(1264 776 186) (1264 768 186) (1256 768 186)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8165" - "plane" "(1264 768 186) (1264 776 186) (1264 776 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8164" - "plane" "(1256 776 186) (1256 768 186) (1256 768 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8163" - "plane" "(1264 776 186) (1256 776 186) (1256 776 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8162" - "plane" "(1256 768 186) (1264 768 186) (1264 768 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2592" - side - { - "id" "8175" - "plane" "(1264 776 236) (1264 770 236) (1262 768 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8174" - "plane" "(1238 768 199) (1262 768 199) (1264 770 199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8173" - "plane" "(1264 770 236) (1264 776 236) (1264 776 199)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 0.663086] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8172" - "plane" "(1236 776 236) (1236 770 236) (1236 770 199)" - "material" "BRICK/WALL20" - "uaxis" "[0 1 0 -400.656] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8171" - "plane" "(1264 776 236) (1236 776 236) (1236 776 199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8170" - "plane" "(1238 768 236) (1262 768 236) (1262 768 199)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8169" - "plane" "(1236 770 236) (1238 768 236) (1238 768 199)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 0.707107 0 -422.28] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8168" - "plane" "(1262 768 236) (1264 770 236) (1264 770 199)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 311] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2593" - side - { - "id" "8181" - "plane" "(1264 768 197) (1264 776 197) (1236 776 197)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8180" - "plane" "(1264 776 199) (1264 768 199) (1236 768 199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8179" - "plane" "(1264 768 199) (1264 776 199) (1264 776 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -281.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8178" - "plane" "(1236 776 199) (1236 768 199) (1236 768 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -281.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8177" - "plane" "(1264 776 199) (1236 776 199) (1236 776 197)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8176" - "plane" "(1236 768 199) (1264 768 199) (1264 768 197)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 1 -281.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2594" - side - { - "id" "8187" - "plane" "(1328 776 244) (1328 768 244) (1172 768 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8186" - "plane" "(1328 768 236) (1328 776 236) (1172 776 236)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8185" - "plane" "(1328 768 244) (1328 776 244) (1328 776 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8184" - "plane" "(1172 776 244) (1172 768 244) (1172 768 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8183" - "plane" "(1328 776 244) (1172 776 244) (1172 776 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8182" - "plane" "(1172 768 244) (1328 768 244) (1328 768 236)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 -1 429.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2595" - side - { - "id" "8193" - "plane" "(1172 768 228) (1172 776 228) (1164 776 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8192" - "plane" "(1172 776 244) (1172 768 244) (1164 768 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8191" - "plane" "(1164 776 244) (1164 768 244) (1164 768 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8190" - "plane" "(1172 768 244) (1172 776 244) (1172 776 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -160.663] 0.25" - "vaxis" "[0 0 1 -457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8189" - "plane" "(1172 776 244) (1164 776 244) (1164 776 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 1 14.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8188" - "plane" "(1164 768 244) (1172 768 244) (1172 768 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 1 -457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2596" - side - { - "id" "8199" - "plane" "(1172 776 202) (1164 776 202) (1164 768 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8198" - "plane" "(1172 768 228) (1164 768 228) (1164 776 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8197" - "plane" "(1172 768 228) (1172 776 228) (1172 776 202)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 432.663] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8196" - "plane" "(1172 776 228) (1164 776 228) (1164 776 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8195" - "plane" "(1164 768 228) (1172 768 228) (1172 768 202)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 320.695] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8194" - "plane" "(1164 776 228) (1164 768 228) (1164 768 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2597" - side - { - "id" "8205" - "plane" "(1172 768 182) (1172 776 182) (1164 776 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8204" - "plane" "(1172 776 202) (1172 768 202) (1164 768 202)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8203" - "plane" "(1172 768 202) (1172 776 202) (1172 776 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8202" - "plane" "(1164 776 202) (1164 768 202) (1164 768 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8201" - "plane" "(1172 776 202) (1164 776 202) (1164 776 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8200" - "plane" "(1164 768 202) (1172 768 202) (1172 768 182)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2598" - side - { - "id" "8211" - "plane" "(1164 776 176) (1160 776 176) (1160 768 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8210" - "plane" "(1164 768 244) (1160 768 244) (1160 776 244)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8209" - "plane" "(1164 768 244) (1164 776 244) (1164 776 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8208" - "plane" "(1164 776 244) (1160 776 244) (1160 776 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 0 1 -45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8207" - "plane" "(1160 768 244) (1164 768 244) (1164 768 176)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 320.695] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8206" - "plane" "(1160 776 244) (1160 768 244) (1160 768 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2599" - side - { - "id" "8218" - "plane" "(1170 768 176) (1172 770 176) (1172 776 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8217" - "plane" "(1172 776 182) (1172 770 182) (1170 768 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8216" - "plane" "(1172 770 182) (1172 776 182) (1172 776 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8215" - "plane" "(1164 776 182) (1164 768 182) (1164 768 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8214" - "plane" "(1172 776 182) (1164 776 182) (1164 776 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 1 -29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8213" - "plane" "(1164 768 182) (1170 768 182) (1170 768 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8212" - "plane" "(1170 768 182) (1172 770 182) (1172 770 176)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2600" - side - { - "id" "8225" - "plane" "(1172 770 176) (1170 768 176) (1160 768 176)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8224" - "plane" "(1172 770 136) (1172 776 136) (1160 776 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8223" - "plane" "(1172 770 176) (1172 776 176) (1172 776 136)" - "material" "BRICK/WALL20" - "uaxis" "[0 -1 0 480.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8222" - "plane" "(1172 776 176) (1160 776 176) (1160 776 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 37.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8221" - "plane" "(1160 768 176) (1170 768 176) (1170 768 136)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 320.695] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8220" - "plane" "(1170 768 176) (1172 770 176) (1172 770 136)" - "material" "BRICK/WALL20" - "uaxis" "[-0.707107 -0.707107 0 18.7828] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8219" - "plane" "(1160 776 176) (1160 768 176) (1160 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2601" - side - { - "id" "8232" - "plane" "(1172 776 136) (1172 770 136) (1170 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8231" - "plane" "(1170 768 128) (1172 770 128) (1172 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8230" - "plane" "(1172 770 136) (1172 776 136) (1172 776 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8229" - "plane" "(1164 776 136) (1164 768 136) (1164 768 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8228" - "plane" "(1172 776 136) (1164 776 136) (1164 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8227" - "plane" "(1164 768 136) (1170 768 136) (1170 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8226" - "plane" "(1170 768 136) (1172 770 136) (1172 770 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2602" - side - { - "id" "8238" - "plane" "(1164 768 136) (1160 768 136) (1160 776 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8237" - "plane" "(1164 776 124) (1160 776 124) (1160 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8236" - "plane" "(1164 768 136) (1164 776 136) (1164 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8235" - "plane" "(1164 776 136) (1160 776 136) (1160 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8234" - "plane" "(1160 768 136) (1164 768 136) (1164 768 124)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 320.695] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8233" - "plane" "(1160 776 136) (1160 768 136) (1160 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2603" - side - { - "id" "8244" - "plane" "(1172 776 128) (1172 768 128) (1164 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8243" - "plane" "(1172 768 124) (1172 776 124) (1164 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8242" - "plane" "(1172 768 128) (1172 776 128) (1172 776 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8241" - "plane" "(1164 776 128) (1164 768 128) (1164 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8240" - "plane" "(1172 776 128) (1164 776 128) (1164 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8239" - "plane" "(1164 768 128) (1172 768 128) (1172 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2604" - side - { - "id" "8250" - "plane" "(1172 768 124) (1160 768 124) (1160 780 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8249" - "plane" "(1172 780 116) (1160 780 116) (1160 768 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8248" - "plane" "(1172 768 124) (1172 780 124) (1172 780 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8247" - "plane" "(1172 780 124) (1160 780 124) (1160 780 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8246" - "plane" "(1160 768 124) (1172 768 124) (1172 768 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8245" - "plane" "(1160 780 124) (1160 768 124) (1160 768 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2605" - side - { - "id" "8256" - "plane" "(1264 776 124) (1264 768 124) (1236 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8255" - "plane" "(1264 768 116) (1264 776 116) (1236 776 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8254" - "plane" "(1264 768 124) (1264 776 124) (1264 776 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8253" - "plane" "(1236 776 124) (1236 768 124) (1236 768 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8252" - "plane" "(1264 776 124) (1236 776 124) (1236 776 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8251" - "plane" "(1236 768 124) (1264 768 124) (1264 768 116)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2606" - side - { - "id" "8262" - "plane" "(1264 776 128) (1264 768 128) (1256 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8261" - "plane" "(1264 768 124) (1264 776 124) (1256 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8260" - "plane" "(1264 768 128) (1264 776 128) (1264 776 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8259" - "plane" "(1256 776 128) (1256 768 128) (1256 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8258" - "plane" "(1264 776 128) (1256 776 128) (1256 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8257" - "plane" "(1256 768 128) (1264 768 128) (1264 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2607" - side - { - "id" "8268" - "plane" "(1256 776 136) (1256 768 136) (1244 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8267" - "plane" "(1256 768 124) (1256 776 124) (1244 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8266" - "plane" "(1256 768 136) (1256 776 136) (1256 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8265" - "plane" "(1244 776 136) (1244 768 136) (1244 768 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8264" - "plane" "(1256 776 136) (1244 776 136) (1244 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.6973] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8263" - "plane" "(1244 768 136) (1256 768 136) (1256 768 124)" - "material" "BRICK/WALL20" - "uaxis" "[-1 0 0 208.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2608" - side - { - "id" "8275" - "plane" "(1244 776 136) (1244 768 136) (1238 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8274" - "plane" "(1238 768 128) (1244 768 128) (1244 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8273" - "plane" "(1244 768 136) (1244 776 136) (1244 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8272" - "plane" "(1236 776 136) (1236 770 136) (1236 770 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8271" - "plane" "(1244 776 136) (1236 776 136) (1236 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8270" - "plane" "(1238 768 136) (1244 768 136) (1244 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8269" - "plane" "(1236 770 136) (1238 768 136) (1238 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2609" - side - { - "id" "8282" - "plane" "(1264 776 136) (1264 770 136) (1262 768 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8281" - "plane" "(1262 768 128) (1264 770 128) (1264 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8280" - "plane" "(1264 770 136) (1264 776 136) (1264 776 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8279" - "plane" "(1256 776 136) (1256 768 136) (1256 768 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8278" - "plane" "(1264 776 136) (1256 776 136) (1256 776 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8277" - "plane" "(1256 768 136) (1262 768 136) (1262 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8276" - "plane" "(1262 768 136) (1264 770 136) (1264 770 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2610" - side - { - "id" "8288" - "plane" "(1244 776 128) (1244 768 128) (1236 768 128)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8287" - "plane" "(1244 768 124) (1244 776 124) (1236 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8286" - "plane" "(1244 768 128) (1244 776 128) (1244 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8285" - "plane" "(1236 776 128) (1236 768 128) (1236 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8284" - "plane" "(1244 776 128) (1236 776 128) (1236 776 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 -10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8283" - "plane" "(1236 768 128) (1244 768 128) (1244 768 124)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 112.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2611" - side - { - "id" "8296" - "plane" "(1206 780 228) (1202 780 228) (1202 770 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 144.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8295" - "plane" "(1207 780 236) (1207 770 236) (1201 770 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8294" - "plane" "(1207 780 236) (1207 780 229) (1207 770 229)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8293" - "plane" "(1201 770 236) (1201 770 229) (1201 780 229)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8292" - "plane" "(1207 780 229) (1207 780 236) (1201 780 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 12.6973] 0.25" - "vaxis" "[0 0 1 2.69312] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8291" - "plane" "(1201 770 229) (1201 770 236) (1207 770 236)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 144.697] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8290" - "plane" "(1201 780 229) (1201 770 229) (1202 770 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8289" - "plane" "(1207 770 229) (1207 780 229) (1206 780 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2612" - side - { - "id" "8302" - "plane" "(1328 775 122) (1328 773 122) (1264 773 122)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 64.6973] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8301" - "plane" "(1328 773 120) (1328 775 120) (1264 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8300" - "plane" "(1328 773 122) (1328 775 122) (1328 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8299" - "plane" "(1264 775 122) (1264 773 122) (1264 773 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8298" - "plane" "(1328 775 122) (1264 775 122) (1264 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8297" - "plane" "(1264 773 122) (1328 773 122) (1328 773 120)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 64.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2613" - side - { - "id" "8310" - "plane" "(1298 770 126) (1294 770 126) (1294 780 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8309" - "plane" "(1299 770 120) (1299 780 120) (1293 780 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8308" - "plane" "(1299 770 125) (1299 780 125) (1299 780 120)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8307" - "plane" "(1293 780 125) (1293 770 125) (1293 770 120)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8306" - "plane" "(1299 780 125) (1298 780 126) (1294 780 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8305" - "plane" "(1293 770 125) (1294 770 126) (1298 770 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8304" - "plane" "(1294 780 126) (1294 770 126) (1293 770 125)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8303" - "plane" "(1298 770 126) (1298 780 126) (1299 780 125)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2614" - side - { - "id" "8317" - "plane" "(1328 775 125) (1328 774 125) (1264 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 64.6973] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8316" - "plane" "(1328 773 123) (1328 775 123) (1264 775 123)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 64.6973] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8315" - "plane" "(1328 773 124) (1328 774 125) (1328 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -4.66016] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8314" - "plane" "(1264 775 125) (1264 774 125) (1264 773 124)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -4.66016] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8313" - "plane" "(1328 775 125) (1264 775 125) (1264 775 123)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 33.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8312" - "plane" "(1264 773 124) (1328 773 124) (1328 773 123)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 64.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8311" - "plane" "(1328 774 125) (1328 773 124) (1264 773 124)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[1 0 0 -96.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2615" - side - { - "id" "8323" - "plane" "(1300 775 192) (1300 774 192) (1298 774 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8322" - "plane" "(1300 774 125) (1300 775 125) (1298 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8321" - "plane" "(1300 774 192) (1300 775 192) (1300 775 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8320" - "plane" "(1298 775 192) (1298 774 192) (1298 774 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8319" - "plane" "(1300 775 192) (1298 775 192) (1298 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -7.30273] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8318" - "plane" "(1298 774 192) (1300 774 192) (1300 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 32.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2616" - side - { - "id" "8331" - "plane" "(1298 780 228) (1298 772 228) (1297 771 228)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8330" - "plane" "(1294 772 126) (1295 771 126) (1297 771 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8329" - "plane" "(1298 780 228) (1294 780 228) (1294 780 126)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 0 -1 45.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8328" - "plane" "(1294 780 228) (1294 772 228) (1294 772 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8327" - "plane" "(1298 772 228) (1298 780 228) (1298 780 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8326" - "plane" "(1297 771 228) (1298 772 228) (1298 772 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8325" - "plane" "(1294 772 228) (1295 771 228) (1295 771 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8324" - "plane" "(1295 771 228) (1297 771 228) (1297 771 126)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[1 0 0 -96.6973] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2617" - side - { - "id" "8337" - "plane" "(1294 775 192) (1294 774 192) (1292 774 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8336" - "plane" "(1294 774 125) (1294 775 125) (1292 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8335" - "plane" "(1294 774 192) (1294 775 192) (1294 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8334" - "plane" "(1292 775 192) (1292 774 192) (1292 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8333" - "plane" "(1294 775 192) (1292 775 192) (1292 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -31.3027] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8332" - "plane" "(1292 774 192) (1294 774 192) (1294 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 32.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2618" - side - { - "id" "8343" - "plane" "(1328 776 236) (1328 775 236) (1264 775 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8342" - "plane" "(1328 775 120) (1328 776 120) (1264 776 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 12.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8341" - "plane" "(1328 775 236) (1328 776 236) (1328 776 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8340" - "plane" "(1264 776 236) (1264 775 236) (1264 775 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8339" - "plane" "(1328 776 236) (1264 776 236) (1264 776 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8338" - "plane" "(1264 775 236) (1328 775 236) (1328 775 120)" - "material" "DE_TRAIN/TRAIN_GLASSWINDOW_01" - "uaxis" "[-1 0 0 384] 0.125" - "vaxis" "[0 0 -1 17.6552] 0.226563" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2619" - side - { - "id" "8349" - "plane" "(1266 775 231) (1266 774 231) (1264 774 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8348" - "plane" "(1266 774 125) (1266 775 125) (1264 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8347" - "plane" "(1266 774 231) (1266 775 231) (1266 775 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8346" - "plane" "(1264 775 231) (1264 774 231) (1264 774 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8345" - "plane" "(1266 775 231) (1264 775 231) (1264 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -15.3027] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8344" - "plane" "(1264 774 231) (1266 774 231) (1266 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 64.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2620" - side - { - "id" "8355" - "plane" "(1328 775 231) (1328 774 231) (1326 774 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -23.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8354" - "plane" "(1328 774 125) (1328 775 125) (1326 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -23.3027] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8353" - "plane" "(1328 774 231) (1328 775 231) (1328 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8352" - "plane" "(1326 775 231) (1326 774 231) (1326 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8351" - "plane" "(1328 775 231) (1326 775 231) (1326 775 125)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -23.3027] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8350" - "plane" "(1326 774 231) (1328 774 231) (1328 774 125)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2621" - side - { - "id" "8362" - "plane" "(1328 772 191) (1328 771 192) (1328 771 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8361" - "plane" "(1328 780 194) (1297 780 194) (1297 780 191)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[-1 0 0 28.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8360" - "plane" "(1328 780 191) (1297 780 191) (1297 772 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 108.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8359" - "plane" "(1297 772 191) (1297 771 192) (1328 771 192)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 108.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8358" - "plane" "(1297 771 192) (1297 771 194) (1328 771 194)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 245.307] 0.25" - "vaxis" "[-1 0 0 108.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8357" - "plane" "(1328 771 194) (1297 771 194) (1297 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8356" - "plane" "(1297 772 191) (1297 780 191) (1297 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2622" - side - { - "id" "8368" - "plane" "(1328 775 191) (1328 773 191) (1264 773 191)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8367" - "plane" "(1328 773 189) (1328 775 189) (1264 775 189)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 64.6973] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8366" - "plane" "(1328 773 191) (1328 775 191) (1328 775 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8365" - "plane" "(1264 775 191) (1264 773 191) (1264 773 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8364" - "plane" "(1328 775 191) (1264 775 191) (1264 775 189)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 41.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8363" - "plane" "(1264 773 191) (1328 773 191) (1328 773 189)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 64.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2623" - side - { - "id" "8375" - "plane" "(1264 772 191) (1264 780 191) (1264 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8374" - "plane" "(1295 780 191) (1295 780 194) (1264 780 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -29.3069] 0.25" - "vaxis" "[-1 0 0 28.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8373" - "plane" "(1264 772 191) (1295 772 191) (1295 780 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 108.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8372" - "plane" "(1264 771 192) (1295 771 192) (1295 772 191)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 108.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8371" - "plane" "(1264 771 194) (1295 771 194) (1295 771 192)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 245.307] 0.25" - "vaxis" "[-1 0 0 108.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8370" - "plane" "(1264 780 194) (1295 780 194) (1295 771 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8369" - "plane" "(1295 772 191) (1295 771 192) (1295 771 194)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2624" - side - { - "id" "8383" - "plane" "(1298 780 228) (1294 780 228) (1294 770 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8382" - "plane" "(1299 780 236) (1299 770 236) (1293 770 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8381" - "plane" "(1299 780 236) (1299 780 229) (1299 770 229)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8380" - "plane" "(1293 770 236) (1293 770 229) (1293 780 229)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8379" - "plane" "(1299 780 229) (1299 780 236) (1293 780 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -3.30273] 0.25" - "vaxis" "[0 0 1 2.69312] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8378" - "plane" "(1293 770 229) (1293 770 236) (1299 770 236)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8377" - "plane" "(1293 780 229) (1293 770 229) (1294 770 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8376" - "plane" "(1299 770 229) (1299 780 229) (1298 780 228)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 1 -141.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2625" - side - { - "id" "8389" - "plane" "(1328 775 233) (1328 773 233) (1264 773 233)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8388" - "plane" "(1328 773 231) (1328 775 231) (1264 775 231)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 64.6973] 0.25" - "vaxis" "[0 -1 0 -3.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8387" - "plane" "(1328 773 233) (1328 775 233) (1328 775 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8386" - "plane" "(1264 775 233) (1264 773 233) (1264 773 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8385" - "plane" "(1328 775 233) (1264 775 233) (1264 775 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 17.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8384" - "plane" "(1264 773 233) (1328 773 233) (1328 773 231)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 64.6973] 0.25" - "vaxis" "[0 0 -1 457.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2626" - side - { - "id" "8396" - "plane" "(1328 772 233) (1328 771 234) (1328 771 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8395" - "plane" "(1264 772 233) (1264 780 233) (1264 780 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[0 -1 0 -7.33984] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8394" - "plane" "(1328 780 233) (1328 780 236) (1264 780 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -5.30688] 0.25" - "vaxis" "[-1 0 0 28.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8393" - "plane" "(1328 772 233) (1328 780 233) (1264 780 233)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 108.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8392" - "plane" "(1264 772 233) (1264 771 234) (1328 771 234)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 1 0 15.3398] 0.25" - "vaxis" "[-1 0 0 108.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8391" - "plane" "(1264 771 234) (1264 771 236) (1328 771 236)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[0 0 -1 413.307] 0.25" - "vaxis" "[-1 0 0 108.697] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8390" - "plane" "(1328 780 236) (1328 771 236) (1264 771 236)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 -1 0 32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2627" - side - { - "id" "8402" - "plane" "(1328 775 123) (1328 774 123) (1264 774 123)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8401" - "plane" "(1328 774 122) (1328 775 122) (1264 775 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 -1 0 8.66016] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8400" - "plane" "(1328 774 123) (1328 775 123) (1328 775 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8399" - "plane" "(1264 775 123) (1264 774 123) (1264 774 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -8.66016] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8398" - "plane" "(1328 775 123) (1264 775 123) (1264 775 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0.697266] 0.25" - "vaxis" "[0 0 -1 29.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8397" - "plane" "(1264 774 123) (1328 774 123) (1328 774 122)" - "material" "CONCRETE/CONCRETE_EXT_12" - "uaxis" "[-1 0 0 64.6973] 0.25" - "vaxis" "[0 0 -1 289.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2629" - side - { - "id" "8409" - "plane" "(1340 948 120) (1340 884 120) (1332 884 120)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -380.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8408" - "plane" "(1342 884 116) (1342 948 116) (1332 948 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -380.66] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8407" - "plane" "(1332 948 120) (1332 884 120) (1332 884 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -28.6602] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8406" - "plane" "(1342 884 118) (1342 948 118) (1342 948 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -380.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8405" - "plane" "(1340 884 120) (1340 948 120) (1342 948 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -380.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8404" - "plane" "(1332 884 120) (1340 884 120) (1342 884 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[-1 0 0 400.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8403" - "plane" "(1342 948 118) (1340 948 120) (1332 948 120)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[-1 0 0 400.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2628" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2631" - side - { - "id" "8416" - "plane" "(1340 856 120) (1340 792 120) (1332 792 120)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8415" - "plane" "(1342 792 116) (1342 856 116) (1332 856 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[1 0 0 -32.6973] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8414" - "plane" "(1332 856 120) (1332 792 120) (1332 792 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 19.3398] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8413" - "plane" "(1342 792 118) (1342 856 118) (1342 856 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8412" - "plane" "(1340 792 120) (1340 856 120) (1342 856 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -12.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8411" - "plane" "(1332 792 120) (1340 792 120) (1342 792 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[-1 0 0 400.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8410" - "plane" "(1342 856 118) (1340 856 120) (1332 856 120)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[-1 0 0 400.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2630" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2633" - side - { - "id" "8422" - "plane" "(1233.93 768 252) (1243.93 768 261.601) (1228.93 768 271.199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -19.8726] 0.25" - "vaxis" "[0.707107 0 -0.707107 -2.10255] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8421" - "plane" "(1221.43 767 259.198) (1228.93 767 271.197) (1243.93 767 261.598)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.707107 0 0.707107 -358.171] 0.25" - "vaxis" "[0.707107 0 -0.707107 -248.98] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8420" - "plane" "(1233.93 767 252) (1243.93 767 261.598) (1243.93 768 261.601)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.721389 0 0.692529 -187.279] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8419" - "plane" "(1221.43 768 259.2) (1228.93 768 271.199) (1228.93 767 271.197)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 23.501] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8418" - "plane" "(1228.93 768 271.199) (1243.93 768 261.601) (1243.93 767 261.598)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.721389 0 0.692529 41.906] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8417" - "plane" "(1221.43 767 259.198) (1233.93 767 252) (1233.93 768 252)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.721389 0 0.692529 41.906] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2632" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2634" - side - { - "id" "8428" - "plane" "(1221.43 768 259.2) (1228.93 768 271.2) (1213.93 768 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -19.8726] 0.25" - "vaxis" "[0.707107 0 -0.707107 -2.10255] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8427" - "plane" "(1211.43 767 264) (1213.93 767 276) (1228.94 767 271.199)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.856467 0.312128 0.411144 -189.214] 0.25" - "vaxis" "[-0.432765 0 -0.901507 141.343] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8426" - "plane" "(1221.44 767 259.199) (1228.94 767 271.199) (1228.93 768 271.2)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 23.501] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8425" - "plane" "(1211.43 768 264) (1213.93 768 276) (1213.93 767 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 23.501] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8424" - "plane" "(1213.93 768 276) (1228.93 768 271.2) (1228.94 767 271.199)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.989487 0.144544 -0.00460701 102.657] 0.25" - "vaxis" "[-0.144542 -0.989498 0 264.142] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8423" - "plane" "(1211.43 767 264) (1221.44 767 259.199) (1221.43 768 259.2)" - "material" "BRICK/EMBASSY_BRICKWALL_01A" - "uaxis" "[-0.721389 0 0.692529 59.906] 0.25" - "vaxis" "[0 1 0 -425.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2632" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2635" - side - { - "id" "8434" - "plane" "(1211.43 768 264) (1213.93 768 276) (1193.93 768 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -19.8726] 0.25" - "vaxis" "[0.707107 0 -0.707107 -2.10255] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8433" - "plane" "(1196.43 767 264) (1193.93 767 276) (1213.93 767 276)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.721389 0.692529 0 -61.7284] 0.25" - "vaxis" "[0 0 -1 245.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8432" - "plane" "(1211.43 767 264) (1213.93 767 276) (1213.93 768 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 23.501] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8431" - "plane" "(1196.43 768 264) (1193.93 768 276) (1193.93 767 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 36.4148] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8430" - "plane" "(1193.93 768 276) (1213.93 768 276) (1213.93 767 276)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.721403 0 -0.692515 126.003] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8429" - "plane" "(1196.43 767 264) (1211.43 767 264) (1211.43 768 264)" - "material" "BRICK/EMBASSY_BRICKWALL_01A" - "uaxis" "[-0.721389 0 0.692529 59.906] 0.25" - "vaxis" "[0 1 0 -425.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2632" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2636" - side - { - "id" "8440" - "plane" "(1196.43 768 264) (1193.93 768 276) (1178.93 768 271.199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -19.8726] 0.25" - "vaxis" "[0.707107 0 -0.707107 -2.10255] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8439" - "plane" "(1186.43 767 259.198) (1178.93 767 271.199) (1193.93 767 276)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[0.856481 0.312231 0.411037 -87.7523] 0.25" - "vaxis" "[0.432667 0 -0.901553 -212.218] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8438" - "plane" "(1196.43 767 264) (1193.93 767 276) (1193.93 768 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 36.4148] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8437" - "plane" "(1186.43 768 259.199) (1178.93 768 271.199) (1178.93 767 271.199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 36.4148] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8436" - "plane" "(1178.93 768 271.199) (1193.93 768 276) (1193.93 767 276)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[0.989507 0.144402 -0.00468656 -182.9] 0.25" - "vaxis" "[0.1444 -0.989519 0 151.899] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8435" - "plane" "(1186.43 767 259.198) (1196.43 767 264) (1196.43 768 264)" - "material" "BRICK/EMBASSY_BRICKWALL_01A" - "uaxis" "[0.721389 0 0.692529 -169.279] 0.25" - "vaxis" "[0 1 0 -425.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2632" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2637" - side - { - "id" "8446" - "plane" "(1186.43 768 259.203) (1178.93 768 271.198) (1163.93 768 261.594)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -19.8726] 0.25" - "vaxis" "[0.707107 0 -0.707107 -2.10255] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8445" - "plane" "(1173.93 767 252) (1163.93 767 261.6) (1178.93 767 271.195)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.707107 0 0.707107 -358.171] 0.25" - "vaxis" "[0.707107 0 -0.707107 -248.98] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8444" - "plane" "(1186.43 767 259.2) (1178.93 767 271.195) (1178.93 768 271.198)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 36.4148] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8443" - "plane" "(1163.93 767 261.6) (1173.93 767 252) (1173.93 768 252)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.721389 0 0.692529 41.906] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8442" - "plane" "(1163.93 768 261.594) (1178.93 768 271.198) (1178.93 767 271.195)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.721389 0 0.692529 -187.279] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8441" - "plane" "(1173.93 767 252) (1186.43 767 259.2) (1186.43 768 259.203)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.721389 0 0.692529 -187.279] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2632" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2639" - side - { - "id" "8452" - "plane" "(1325.93 768 252) (1335.93 768 261.602) (1320.92 768 271.199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -24.0884] 0.25" - "vaxis" "[0.707107 0 -0.707107 -6.31934] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8451" - "plane" "(1313.43 767 259.2) (1320.93 767 271.199) (1335.93 767 261.598)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.707107 0 0.707107 -106.387] 0.25" - "vaxis" "[0.707107 0 -0.707107 2.80468] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8450" - "plane" "(1325.93 767 252) (1335.93 767 261.598) (1335.93 768 261.602)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.721389 0 0.692529 -452.75] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8449" - "plane" "(1313.42 768 259.202) (1320.92 768 271.199) (1320.93 767 271.199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 14.0293] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8448" - "plane" "(1320.92 768 271.199) (1335.93 768 261.602) (1335.93 767 261.598)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.721389 0 0.692529 307.378] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8447" - "plane" "(1313.43 767 259.2) (1325.93 767 252) (1325.93 768 252)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.721389 0 0.692529 307.378] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2638" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2640" - side - { - "id" "8458" - "plane" "(1313.43 768 259.203) (1320.93 768 271.201) (1305.93 768 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -24.0884] 0.25" - "vaxis" "[0.707107 0 -0.707107 -6.31934] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8457" - "plane" "(1303.43 767 264) (1305.93 767 276) (1320.94 767 271.199)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.856467 0.312128 0.411144 -386.032] 0.25" - "vaxis" "[-0.432765 0 -0.901507 300.601] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8456" - "plane" "(1313.44 767 259.2) (1320.94 767 271.199) (1320.93 768 271.201)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 14.0293] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8455" - "plane" "(1303.43 768 264) (1305.93 768 276) (1305.93 767 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 14.0293] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8454" - "plane" "(1305.93 768 276) (1320.93 768 271.201) (1320.94 767 271.199)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.989487 0.144544 -0.00460701 466.788] 0.25" - "vaxis" "[-0.144542 -0.989498 0 317.333] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8453" - "plane" "(1303.43 767 264) (1313.44 767 259.2) (1313.43 768 259.203)" - "material" "BRICK/EMBASSY_BRICKWALL_01A" - "uaxis" "[-0.721389 0 0.692529 325.378] 0.25" - "vaxis" "[0 1 0 -425.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2638" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2641" - side - { - "id" "8464" - "plane" "(1303.43 768 264) (1305.93 768 276) (1285.93 768 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -24.0884] 0.25" - "vaxis" "[0.707107 0 -0.707107 -6.31934] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8463" - "plane" "(1288.43 767 264) (1285.93 767 276) (1305.93 767 276)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.721389 0.692529 0 -308.258] 0.25" - "vaxis" "[0 0 -1 245.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8462" - "plane" "(1303.43 767 264) (1305.93 767 276) (1305.93 768 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 14.0293] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8461" - "plane" "(1288.43 768 264) (1285.93 768 276) (1285.93 767 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 45.8855] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8460" - "plane" "(1285.93 768 276) (1305.93 768 276) (1305.93 767 276)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.721403 0 -0.692515 391.479] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8459" - "plane" "(1288.43 767 264) (1303.43 767 264) (1303.43 768 264)" - "material" "BRICK/EMBASSY_BRICKWALL_01A" - "uaxis" "[-0.721389 0 0.692529 325.378] 0.25" - "vaxis" "[0 1 0 -425.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2638" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2642" - side - { - "id" "8470" - "plane" "(1288.43 768 264) (1285.93 768 276) (1270.93 768 271.199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -24.0884] 0.25" - "vaxis" "[0.707107 0 -0.707107 -6.31934] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8469" - "plane" "(1278.43 767 259.198) (1270.93 767 271.2) (1285.93 767 276)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[0.856481 0.312231 0.411037 -402.938] 0.25" - "vaxis" "[0.432667 0 -0.901553 -371.44] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8468" - "plane" "(1288.43 767 264) (1285.93 767 276) (1285.93 768 276)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 45.8855] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8467" - "plane" "(1278.43 768 259.199) (1270.93 768 271.199) (1270.93 767 271.2)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 45.8855] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8466" - "plane" "(1270.93 768 271.199) (1285.93 768 276) (1285.93 767 276)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[0.989507 0.144402 -0.00468656 -35.0383] 0.25" - "vaxis" "[0.1444 -0.989519 0 98.7607] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8465" - "plane" "(1278.43 767 259.198) (1288.43 767 264) (1288.43 768 264)" - "material" "BRICK/EMBASSY_BRICKWALL_01A" - "uaxis" "[0.721389 0 0.692529 -434.75] 0.25" - "vaxis" "[0 1 0 -425.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2638" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2643" - side - { - "id" "8476" - "plane" "(1278.43 768 259.196) (1270.93 768 271.195) (1255.93 768 261.598)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -24.0884] 0.25" - "vaxis" "[0.707107 0 -0.707107 -6.31934] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8475" - "plane" "(1265.93 767 252) (1255.93 767 261.599) (1270.93 767 271.199)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.707107 0 0.707107 -106.387] 0.25" - "vaxis" "[0.707107 0 -0.707107 2.80468] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8474" - "plane" "(1278.43 767 259.198) (1270.93 767 271.199) (1270.93 768 271.195)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 45.8855] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8473" - "plane" "(1255.93 767 261.599) (1265.93 767 252) (1265.93 768 252)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.721389 0 0.692529 307.378] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8472" - "plane" "(1255.93 768 261.598) (1270.93 768 271.195) (1270.93 767 271.199)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.721389 0 0.692529 -452.75] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8471" - "plane" "(1265.93 767 252) (1278.43 767 259.198) (1278.43 768 259.196)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.721389 0 0.692529 -452.75] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2638" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2645" - side - { - "id" "8482" - "plane" "(872 772 120) (872 768 120) (870.667 768 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8481" - "plane" "(872 772 116) (870 766 116) (872 766 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8480" - "plane" "(870 766 118) (872 766 118) (872 766 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8479" - "plane" "(870.667 768 120) (872 768 120) (872 766 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8478" - "plane" "(872 766 118) (872 768 120) (872 772 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8477" - "plane" "(872 772 120) (870.667 768 120) (870 766 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2644" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2646" - side - { - "id" "8489" - "plane" "(872 776 120) (952 776 120) (952 768 120)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8488" - "plane" "(872 766 116) (952 766 116) (952 776 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8487" - "plane" "(952 776 120) (872 776 120) (872 776 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8486" - "plane" "(872 766 118) (952 766 118) (952 766 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8485" - "plane" "(872 768 120) (952 768 120) (952 766 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8484" - "plane" "(872 776 120) (872 768 120) (872 766 118)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8483" - "plane" "(952 766 118) (952 768 120) (952 776 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2644" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2647" - side - { - "id" "8495" - "plane" "(952 771.97 120) (953.332 768 120) (952 768 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8494" - "plane" "(954 766 116) (952 771.973 116) (952 766 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8493" - "plane" "(952 766 118) (954 766 118) (954 766 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8492" - "plane" "(952 768 120) (953.332 768 120) (954 766 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8491" - "plane" "(952 771.97 120) (952 768 120) (952 766 118)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8490" - "plane" "(954 766 118) (953.332 768 120) (952 771.97 120)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2644" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2649" - side - { - "id" "8502" - "plane" "(764 776 120) (844 776 120) (844 768 120)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8501" - "plane" "(764 766 116) (844 766 116) (844 776 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8500" - "plane" "(844 776 120) (764 776 120) (764 776 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8499" - "plane" "(764 766 118) (844 766 118) (844 766 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8498" - "plane" "(764 768 120) (844 768 120) (844 766 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8497" - "plane" "(764 776 120) (764 768 120) (764 766 118)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8496" - "plane" "(844 766 118) (844 768 120) (844 776 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2648" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2650" - side - { - "id" "8508" - "plane" "(764 772 120) (764 768 120) (762.667 768 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8507" - "plane" "(764 772 116) (762 766 116) (764 766 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8506" - "plane" "(762 766 118) (764 766 118) (764 766 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8505" - "plane" "(762.667 768 120) (764 768 120) (764 766 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8504" - "plane" "(764 766 118) (764 768 120) (764 772 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8503" - "plane" "(764 772 120) (762.667 768 120) (762 766 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2648" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2651" - side - { - "id" "8514" - "plane" "(844 771.97 120) (845.332 768 120) (844 768 120)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 -1 0 -15.3398] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8513" - "plane" "(846 766 116) (844 771.98 116) (844 766 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8512" - "plane" "(844 766 118) (846 766 118) (846 766 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8511" - "plane" "(844 768 120) (845.332 768 120) (846 766 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -176.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8510" - "plane" "(844 771.97 120) (844 768 120) (844 766 118)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32.6602] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8509" - "plane" "(846 766 118) (845.332 768 120) (844 771.97 120)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -16.6602] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2648" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2653" - side - { - "id" "8520" - "plane" "(833.93 768 256) (843.927 768 265.599) (828.93 768 275.195)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -29.398] 0.25" - "vaxis" "[0.707107 0 -0.707107 11] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8519" - "plane" "(821.433 767 263.199) (828.932 767 275.197) (843.934 767 265.598)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.707107 0 0.707107 -239.697] 0.25" - "vaxis" "[0.707107 0 -0.707107 -107.878] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8518" - "plane" "(833.936 767 256) (843.934 767 265.598) (843.927 768 265.599)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.721389 0 0.692529 -45.2656] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8517" - "plane" "(821.431 768 263.199) (828.93 768 275.195) (828.932 767 275.197)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 -26.4863] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8516" - "plane" "(828.93 768 275.195) (843.927 768 265.599) (843.934 767 265.598)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.721389 0 0.692529 389.733] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8515" - "plane" "(821.433 767 263.199) (833.936 767 256) (833.93 768 256)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.721389 0 0.692529 389.733] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2652" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2654" - side - { - "id" "8526" - "plane" "(821.432 768 263.198) (828.932 768 275.199) (813.935 768 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -29.398] 0.25" - "vaxis" "[0.707107 0 -0.707107 11] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8525" - "plane" "(811.43 767 268) (813.93 767 280) (828.93 767 275.199)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.856467 0.312128 0.411144 -172.145] 0.25" - "vaxis" "[-0.432765 0 -0.901507 162.298] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8524" - "plane" "(821.43 767 263.199) (828.93 767 275.199) (828.932 768 275.199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 -26.4863] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8523" - "plane" "(811.434 768 268) (813.935 768 280) (813.93 767 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 -26.4863] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8522" - "plane" "(813.935 768 280) (828.932 768 275.199) (828.93 767 275.199)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.989487 0.144544 -0.00460701 483.009] 0.25" - "vaxis" "[-0.144542 -0.989498 0 95.3171] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8521" - "plane" "(811.43 767 268) (821.43 767 263.199) (821.432 768 263.198)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.721389 0 0.692529 468.749] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2652" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2655" - side - { - "id" "8532" - "plane" "(811.432 768 268) (813.932 768 280) (793.93 768 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -29.398] 0.25" - "vaxis" "[0.707107 0 -0.707107 11] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8531" - "plane" "(796.432 767 268) (793.932 767 280) (813.935 767 280)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.721389 0.692529 0 -392.31] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8530" - "plane" "(811.435 767 268) (813.935 767 280) (813.932 768 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 -26.4863] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8529" - "plane" "(796.43 768 268) (793.93 768 280) (793.932 767 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 0.241012] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8528" - "plane" "(793.93 768 280) (813.932 768 280) (813.935 767 280)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.721403 0 -0.692515 318.485] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8527" - "plane" "(796.432 767 268) (811.435 767 268) (811.432 768 268)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.721389 0 0.692529 468.749] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2652" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2656" - side - { - "id" "8538" - "plane" "(796.432 768 268) (793.932 768 280) (778.934 768 275.199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -29.398] 0.25" - "vaxis" "[0.707107 0 -0.707107 11] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8537" - "plane" "(786.431 767 263.199) (778.93 767 275.2) (793.93 767 280)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[0.856481 0.312231 0.411037 -117.959] 0.25" - "vaxis" "[0.432667 0 -0.901553 -204.439] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8536" - "plane" "(796.43 767 268) (793.93 767 280) (793.932 768 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 0.241012] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8535" - "plane" "(786.433 768 263.2) (778.934 768 275.199) (778.93 767 275.2)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 0.241012] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8534" - "plane" "(778.934 768 275.199) (793.932 768 280) (793.93 767 280)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[0.989507 0.144402 -0.00468656 -51.0813] 0.25" - "vaxis" "[0.1444 -0.989519 0 320.559] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8533" - "plane" "(786.431 767 263.199) (796.43 767 268) (796.432 768 268)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[0.721389 0 0.692529 33.3262] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2652" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2657" - side - { - "id" "8544" - "plane" "(786.432 768 263.2) (778.933 768 275.199) (763.93 768 265.602)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 -29.398] 0.25" - "vaxis" "[0.707107 0 -0.707107 11] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8543" - "plane" "(773.929 767 256) (763.93 767 265.6) (778.93 767 275.199)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.707107 0 0.707107 -239.697] 0.25" - "vaxis" "[0.707107 0 -0.707107 -107.878] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8542" - "plane" "(786.43 767 263.199) (778.93 767 275.199) (778.933 768 275.199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 0.241012] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8541" - "plane" "(763.93 767 265.6) (773.929 767 256) (773.931 768 256)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.721389 0 0.692529 389.733] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8540" - "plane" "(763.93 768 265.602) (778.933 768 275.199) (778.93 767 275.199)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.721389 0 0.692529 -45.2656] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8539" - "plane" "(773.929 767 256) (786.43 767 263.199) (786.432 768 263.2)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.721389 0 0.692529 -45.2656] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2652" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2659" - side - { - "id" "8550" - "plane" "(941.93 768 256) (951.93 768 265.602) (936.934 768 275.203)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 26.7143] 0.25" - "vaxis" "[0.707107 0 -0.707107 3.11132] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8549" - "plane" "(929.43 767 263.199) (936.93 767 275.2) (951.93 767 265.605)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.707107 0 0.707107 -55.5845] 0.25" - "vaxis" "[0.707107 0 -0.707107 -435.766] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8548" - "plane" "(941.927 767 256) (951.93 767 265.605) (951.93 768 265.602)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.721389 0 0.692529 -379.777] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8547" - "plane" "(929.431 768 263.199) (936.934 768 275.203) (936.93 767 275.2)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 23.0019] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8546" - "plane" "(936.934 768 275.203) (951.93 768 265.602) (951.93 767 265.605)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.721389 0 0.692529 212.244] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8545" - "plane" "(929.43 767 263.199) (941.927 767 256) (941.93 768 256)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.721389 0 0.692529 212.244] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2658" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2660" - side - { - "id" "8556" - "plane" "(929.431 768 263.201) (936.931 768 275.2) (921.93 768 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 26.7143] 0.25" - "vaxis" "[0.707107 0 -0.707107 3.11132] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8555" - "plane" "(919.43 767 268) (921.93 767 280) (936.93 767 275.199)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.856467 0.312128 0.411144 -172.145] 0.25" - "vaxis" "[-0.432765 0 -0.901507 162.298] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8554" - "plane" "(929.431 767 263.201) (936.93 767 275.199) (936.931 768 275.2)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 23.0019] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8553" - "plane" "(919.43 768 268) (921.93 768 280) (921.93 767 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 23.0019] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8552" - "plane" "(921.93 768 280) (936.931 768 275.2) (936.93 767 275.199)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.989487 0.144544 -0.00460701 483.009] 0.25" - "vaxis" "[-0.144542 -0.989498 0 95.3171] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8551" - "plane" "(919.43 767 268) (929.431 767 263.201) (929.431 768 263.201)" - "material" "BRICK/EMBASSY_BRICKWALL_01A" - "uaxis" "[-0.721389 0 0.692529 230.244] 0.25" - "vaxis" "[0 1 0 -425.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2658" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2661" - side - { - "id" "8562" - "plane" "(919.432 768 268) (921.932 768 280) (901.93 768 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 26.7143] 0.25" - "vaxis" "[0.707107 0 -0.707107 3.11132] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8561" - "plane" "(904.428 767 268) (901.928 767 280) (921.93 767 280)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.721389 0.692529 0 -392.31] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8560" - "plane" "(919.43 767 268) (921.93 767 280) (921.932 768 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.721389 0 0.692529 23.0019] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8559" - "plane" "(904.43 768 268) (901.93 768 280) (901.928 767 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 14.7508] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8558" - "plane" "(901.93 768 280) (921.932 768 280) (921.93 767 280)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[-0.721403 0 -0.692515 318.485] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8557" - "plane" "(904.428 767 268) (919.43 767 268) (919.432 768 268)" - "material" "BRICK/EMBASSY_BRICKWALL_01A" - "uaxis" "[-0.721389 0 0.692529 230.244] 0.25" - "vaxis" "[0 1 0 -425.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2658" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2662" - side - { - "id" "8568" - "plane" "(904.428 768 268) (901.928 768 280) (886.928 768 275.199)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 26.7143] 0.25" - "vaxis" "[0.707107 0 -0.707107 3.11132] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8567" - "plane" "(894.431 767 263.199) (886.93 767 275.2) (901.93 767 280)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[0.856481 0.312231 0.411037 -117.959] 0.25" - "vaxis" "[0.432667 0 -0.901553 -204.439] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8566" - "plane" "(904.43 767 268) (901.93 767 280) (901.928 768 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 14.7508] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8565" - "plane" "(894.429 768 263.199) (886.928 768 275.199) (886.93 767 275.2)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 14.7508] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8564" - "plane" "(886.928 768 275.199) (901.928 768 280) (901.93 767 280)" - "material" "DE_TRAIN/TRAIN_OLDBRICK_01" - "uaxis" "[0.989507 0.144402 -0.00468656 -51.0813] 0.25" - "vaxis" "[0.1444 -0.989519 0 320.559] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8563" - "plane" "(894.431 767 263.199) (904.43 767 268) (904.428 768 268)" - "material" "BRICK/EMBASSY_BRICKWALL_01A" - "uaxis" "[0.721389 0 0.692529 -361.777] 0.25" - "vaxis" "[0 1 0 -425.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2658" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2663" - side - { - "id" "8574" - "plane" "(894.428 768 263.2) (886.93 768 275.196) (871.934 768 265.594)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0 0.707107 26.7143] 0.25" - "vaxis" "[0.707107 0 -0.707107 3.11132] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8573" - "plane" "(881.929 767 256) (871.93 767 265.599) (886.93 767 275.195)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.707107 0 0.707107 -55.5845] 0.25" - "vaxis" "[0.707107 0 -0.707107 -435.766] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8572" - "plane" "(894.428 767 263.2) (886.93 767 275.195) (886.93 768 275.196)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.721389 0 0.692529 14.7508] 0.25" - "vaxis" "[0 1 0 -32.6602] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8571" - "plane" "(871.93 767 265.599) (881.929 767 256) (881.929 768 256)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[-0.721389 0 0.692529 212.244] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8570" - "plane" "(871.934 768 265.594) (886.93 768 275.196) (886.93 767 275.195)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.721389 0 0.692529 -379.777] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8569" - "plane" "(881.929 767 256) (894.428 767 263.2) (894.428 768 263.2)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0.721389 0 0.692529 -379.777] 0.25" - "vaxis" "[0 1 0 -480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2658" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2665" - side - { - "id" "8581" - "plane" "(764 776 292) (836 776 292) (836 768 292)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -144.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8580" - "plane" "(764 766 288) (836 766 288) (836 776 288)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -144.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8579" - "plane" "(836 776 292) (764 776 292) (764 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8578" - "plane" "(764 766 290) (836 766 290) (836 766 288)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -144.697] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8577" - "plane" "(764 768 292) (836 768 292) (836 766 290)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -144.697] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8576" - "plane" "(836 766 290) (836 768 292) (836 776 292)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -480.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8575" - "plane" "(764 776 292) (764 768 292) (764 766 290)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -480.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2664" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2667" - side - { - "id" "8588" - "plane" "(880 776 292) (952 776 292) (952 768 292)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -96.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8587" - "plane" "(880 766 288) (952 766 288) (952 776 288)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -96.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8586" - "plane" "(952 776 292) (880 776 292) (880 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8585" - "plane" "(880 766 290) (952 766 290) (952 766 288)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -96.6973] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8584" - "plane" "(880 768 292) (952 768 292) (952 766 290)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -96.6973] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8583" - "plane" "(952 766 290) (952 768 292) (952 776 292)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -480.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8582" - "plane" "(880 776 292) (880 768 292) (880 766 290)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -480.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2666" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2669" - side - { - "id" "8595" - "plane" "(996 776 292) (1068 776 292) (1068 768 292)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -48.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8594" - "plane" "(996 766 288) (1068 766 288) (1068 776 288)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -48.6973] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8593" - "plane" "(1068 776 292) (996 776 292) (996 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16.6973] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8592" - "plane" "(996 766 290) (1068 766 290) (1068 766 288)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -48.6973] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8591" - "plane" "(996 768 292) (1068 768 292) (1068 766 290)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -48.6973] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8590" - "plane" "(1068 766 290) (1068 768 292) (1068 776 292)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -480.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8589" - "plane" "(996 776 292) (996 768 292) (996 766 290)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -480.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2668" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2671" - side - { - "id" "8602" - "plane" "(1112 776 292) (1184 776 292) (1184 768 292)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8601" - "plane" "(1112 766 288) (1184 766 288) (1184 776 288)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8600" - "plane" "(1184 776 292) (1112 776 292) (1112 776 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 31.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8599" - "plane" "(1112 766 290) (1184 766 290) (1184 766 288)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8598" - "plane" "(1112 768 292) (1184 768 292) (1184 766 290)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -0.697266] 0.25" - "vaxis" "[0 0 -1 437.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8597" - "plane" "(1184 766 290) (1184 768 292) (1184 776 292)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -480.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8596" - "plane" "(1112 776 292) (1112 768 292) (1112 766 290)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -480.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2670" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2673" - side - { - "id" "8609" - "plane" "(1172 776 120) (1236 776 120) (1236 768 120)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -272.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8608" - "plane" "(1172 766 116) (1236 766 116) (1236 776 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -272.697] 0.25" - "vaxis" "[0 -1 0 480.66] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8607" - "plane" "(1236 776 120) (1172 776 120) (1172 776 116)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 15.3027] 0.25" - "vaxis" "[0 0 -1 21.3069] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8606" - "plane" "(1172 766 118) (1236 766 118) (1236 766 116)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -272.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8605" - "plane" "(1172 768 120) (1236 768 120) (1236 766 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[1 0 0 -272.697] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8604" - "plane" "(1172 776 120) (1172 768 120) (1172 766 118)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -112.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8603" - "plane" "(1236 766 118) (1236 768 120) (1236 776 120)" - "material" "CONCRETE/CONCRETECEILING001A" - "uaxis" "[0 1 0 -112.66] 0.25" - "vaxis" "[0 0 -1 261.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "244 169 0" - "groupid" "2672" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "6472" - side - { - "id" "8610" - "plane" "(732 780 420) (748 780 420) (748 776 420)" - "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" "8611" - "plane" "(732 776 124) (748 776 124) (748 780 124)" - "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" "8612" - "plane" "(732 780 420) (732 776 420) (732 776 124)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8613" - "plane" "(748 780 124) (748 776 124) (748 776 420)" - "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" "8614" - "plane" "(748 780 420) (732 780 420) (732 780 124)" - "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" "8615" - "plane" "(748 776 124) (732 776 124) (732 776 420)" - "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 226 247" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "6473" - side - { - "id" "8627" - "plane" "(732 780 460) (748 780 460) (748 776 460)" - "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" "8626" - "plane" "(732 776 440) (748 776 440) (748 780 440)" - "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" "8625" - "plane" "(732 780 460) (732 776 460) (732 776 440)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8624" - "plane" "(748 780 440) (748 776 440) (748 776 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8623" - "plane" "(748 780 460) (732 780 460) (732 780 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8622" - "plane" "(748 776 440) (732 776 440) (732 776 460)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 226 247" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "6479" - side - { - "id" "8663" - "plane" "(802 992 560) (802 822.646 560) (810 827.938 560)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[-1 0 0 63.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8662" - "plane" "(810 992 568) (810 827.938 568) (798 820 568)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[-1 0 0 63.3027] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8661" - "plane" "(810 827.938 560) (802 822.646 560) (798 820 568)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -63.3027] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8660" - "plane" "(810 992 560) (810 827.938 560) (810 827.938 568)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16.6602] 0.25" - "vaxis" "[0 0 1 10.6931] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8659" - "plane" "(802 822.646 560) (802 992 560) (798 992 568)" - "material" "CONCRETE/CONCRETECEILING003A" - "uaxis" "[0 1 0 -320.66] 0.25" - "vaxis" "[0 0 -1 157.307] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8658" - "plane" "(802 992 560) (810 992 560) (810 992 568)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 63.3027] 0.25" - "vaxis" "[0 0 -1 5.30688] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 189 162" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "6594" - side - { - "id" "8812" - "plane" "(-224 -928 0) (-640 -928 0) (-640 64 0)" - "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" "8811" - "plane" "(-224 64 -64) (-640 64 -64) (-640 -928 -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" "8810" - "plane" "(-640 64 -64) (-224 64 -64) (-224 64 0)" - "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" "8809" - "plane" "(-224 -928 -64) (-640 -928 -64) (-640 -928 0)" - "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" "8808" - "plane" "(-640 -928 -64) (-640 64 -64) (-640 64 0)" - "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" "8807" - "plane" "(-224 64 -64) (-224 -928 -64) (-224 -928 0)" - "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 158 183" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "6595" - side - { - "id" "8818" - "plane" "(-224 64 0) (0 64 0) (0 -928 0)" - "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" "8817" - "plane" "(-224 -928 -128) (0 -928 -128) (0 64 -128)" - "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" "8816" - "plane" "(0 64 -128) (0 -928 -128) (0 -928 0)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8815" - "plane" "(-224 64 -128) (0 64 -128) (0 64 0)" - "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" "8814" - "plane" "(0 -928 -128) (-224 -928 -128) (-224 -928 0)" - "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" "8813" - "plane" "(-224 -928 -128) (-224 64 -128) (-224 64 0)" - "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 158 183" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1552" - side - { - "id" "3028" - "plane" "(960 640 88) (960 768 88) (992 768 88)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3027" - "plane" "(960 768 64) (960 640 64) (992 640 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" "3026" - "plane" "(960 640 64) (960 768 64) (960 768 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3025" - "plane" "(992 768 64) (992 640 64) (992 640 88)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3024" - "plane" "(960 768 64) (992 768 64) (992 768 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3023" - "plane" "(992 640 64) (960 640 64) (960 640 88)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 144 237" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1557" - side - { - "id" "3040" - "plane" "(992 640 80) (992 768 80) (1024 768 80)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3039" - "plane" "(992 768 64) (992 640 64) (1024 640 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" "3038" - "plane" "(992 640 64) (992 768 64) (992 768 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3037" - "plane" "(1024 768 64) (1024 640 64) (1024 640 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3036" - "plane" "(992 768 64) (1024 768 64) (1024 768 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3035" - "plane" "(1024 640 64) (992 640 64) (992 640 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 144 237" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1559" - side - { - "id" "3052" - "plane" "(1024 640 72) (1024 768 72) (1056 768 72)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3051" - "plane" "(1024 768 64) (1024 640 64) (1056 640 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" "3050" - "plane" "(1024 640 64) (1024 768 64) (1024 768 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3049" - "plane" "(1056 768 64) (1056 640 64) (1056 640 72)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3048" - "plane" "(1024 768 64) (1056 768 64) (1056 768 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3047" - "plane" "(1056 640 64) (1024 640 64) (1024 640 72)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 144 237" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "31" - side - { - "id" "144" - "plane" "(-960 -896 48) (-960 -688 48) (-704 -816 48)" - "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" - dispinfo - { - "power" "3" - "startposition" "[-960 -896 48]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.75 0 0 -0.75 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 0 0 0 0" - } - distances - { - "row0" "0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 1.73078 1.85826 0 0 0" - "row5" "0 0 0 2.30933 7.20039 5.4243 1.27659 0 0" - "row6" "0 0 0.739296 5.11125 10.8876 9.66645 4.1196 0 0" - "row7" "0 0 0.78294 5.5055 12.6381 12.4567 6.17968 0 0" - "row8" "0 0 0 3.67522 12.4592 13.724 7.45922 0 0" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" - "row1" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" - "row2" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" - "row3" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" - "row4" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" - "row5" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" - "row6" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" - "row7" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" - "row8" "0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75 0 0 0.75" - } - alphas - { - "row0" "0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } - } - side - { - "id" "143" - "plane" "(-960 -688 0) (-960 -896 0) (-704 -896 0)" - "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" "142" - "plane" "(-960 -896 0) (-960 -688 0) (-960 -688 48)" - "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" "141" - "plane" "(-704 -816 0) (-704 -896 0) (-704 -896 48)" - "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" "140" - "plane" "(-960 -688 0) (-704 -816 0) (-704 -816 48)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - dispinfo - { - "power" "3" - "startposition" "[-960 -688 0]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75" - "row4" "0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75" - "row5" "0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75" - "row6" "0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75 0 0 -0.75" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - distances - { - "row0" "0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0" - "row3" "0.559552 1.39337 2.10022 2.68012 3.13306 3.45904 3.65806 3.73012 3.67522" - "row4" "2.07564 4.20304 6.31715 8.14416 9.67012 10.8804 11.7595 12.2914 12.4592" - "row5" "2.66174 5.09529 7.25682 9.13307 10.7102 11.9735 12.9077 13.4969 13.724" - "row6" "0.277723 1.70738 3.21626 4.50542 5.56936 6.40247 6.99904 7.35326 7.45922" - "row7" "0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" - "row1" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" - "row2" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" - "row3" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" - "row4" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" - "row5" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" - "row6" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" - "row7" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" - "row8" "0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0 0.447214 0.894427 0" - } - alphas - { - "row0" "0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0" - } - triangle_tags - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } - } - side - { - "id" "139" - "plane" "(-704 -896 0) (-960 -896 0) (-960 -896 48)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "77" - side - { - "id" "288" - "plane" "(-640 -1088 44) (-640 -896 44) (-608 -896 44)" - "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" "287" - "plane" "(-640 -896 0) (-640 -1088 0) (-608 -1088 0)" - "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" "286" - "plane" "(-640 -1088 0) (-640 -896 0) (-640 -896 44)" - "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" "285" - "plane" "(-608 -896 0) (-608 -1088 0) (-608 -1088 44)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "284" - "plane" "(-640 -896 0) (-608 -896 0) (-608 -896 44)" - "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" "283" - "plane" "(-608 -1088 0) (-640 -1088 0) (-640 -1088 44)" - "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 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "79" - side - { - "id" "300" - "plane" "(-608 -1088 40) (-608 -896 40) (-576 -896 40)" - "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" "299" - "plane" "(-608 -896 0) (-608 -1088 0) (-576 -1088 0)" - "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" "298" - "plane" "(-608 -1088 0) (-608 -896 0) (-608 -896 40)" - "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" "297" - "plane" "(-576 -896 0) (-576 -1088 0) (-576 -1088 40)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "296" - "plane" "(-608 -896 0) (-576 -896 0) (-576 -896 40)" - "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" "295" - "plane" "(-576 -1088 0) (-608 -1088 0) (-608 -1088 40)" - "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 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "81" - side - { - "id" "312" - "plane" "(-496 -1056 36) (-576 -896 36) (-544 -880 36)" - "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" "311" - "plane" "(-576 -896 0) (-496 -1056 0) (-464 -1040 0)" - "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" "310" - "plane" "(-496 -1056 0) (-576 -896 0) (-576 -896 36)" - "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" "309" - "plane" "(-544 -880 0) (-464 -1040 0) (-464 -1040 36)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "308" - "plane" "(-576 -896 0) (-544 -880 0) (-544 -880 36)" - "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" "307" - "plane" "(-464 -1040 0) (-496 -1056 0) (-496 -1056 36)" - "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 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "83" - side - { - "id" "324" - "plane" "(-560 -1088 36) (-576 -1088 36) (-576 -896 36)" - "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" "323" - "plane" "(-576 -1088 0) (-560 -1088 0) (-496 -1056 0)" - "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" "322" - "plane" "(-560 -1088 0) (-576 -1088 0) (-576 -1088 36)" - "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" "321" - "plane" "(-576 -896 0) (-496 -1056 0) (-496 -1056 36)" - "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" "320" - "plane" "(-576 -1088 0) (-576 -896 0) (-576 -896 36)" - "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" "319" - "plane" "(-496 -1056 0) (-560 -1088 0) (-560 -1088 36)" - "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 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "87" - side - { - "id" "336" - "plane" "(-464 -1040 32) (-544 -880 32) (-512 -864 32)" - "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" "335" - "plane" "(-544 -880 0) (-464 -1040 0) (-432 -1024 0)" - "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" "334" - "plane" "(-464 -1040 0) (-544 -880 0) (-544 -880 32)" - "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" "333" - "plane" "(-512 -864 0) (-432 -1024 0) (-432 -1024 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "332" - "plane" "(-544 -880 0) (-512 -864 0) (-512 -864 32)" - "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" "331" - "plane" "(-432 -1024 0) (-464 -1040 0) (-464 -1040 32)" - "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 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "89" - side - { - "id" "348" - "plane" "(-432 -1024 28) (-512 -864 28) (-480 -848 28)" - "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" "347" - "plane" "(-512 -864 0) (-432 -1024 0) (-400 -1008 0)" - "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" "346" - "plane" "(-432 -1024 0) (-512 -864 0) (-512 -864 28)" - "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" "345" - "plane" "(-480 -848 0) (-400 -1008 0) (-400 -1008 28)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "344" - "plane" "(-512 -864 0) (-480 -848 0) (-480 -848 28)" - "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" "343" - "plane" "(-400 -1008 0) (-432 -1024 0) (-432 -1024 28)" - "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 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "91" - side - { - "id" "360" - "plane" "(-400 -1008 24) (-480 -848 24) (-448 -832 24)" - "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" "359" - "plane" "(-480 -848 0) (-400 -1008 0) (-368 -992 0)" - "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" "358" - "plane" "(-400 -1008 0) (-480 -848 0) (-480 -848 24)" - "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" "357" - "plane" "(-448 -832 0) (-368 -992 0) (-368 -992 24)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "356" - "plane" "(-480 -848 0) (-448 -832 0) (-448 -832 24)" - "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" "355" - "plane" "(-368 -992 0) (-400 -1008 0) (-400 -1008 24)" - "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 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "93" - side - { - "id" "372" - "plane" "(-368 -992 20) (-448 -832 20) (-416 -816 20)" - "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" "371" - "plane" "(-448 -832 0) (-368 -992 0) (-336 -976 0)" - "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" "370" - "plane" "(-368 -992 0) (-448 -832 0) (-448 -832 20)" - "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" "369" - "plane" "(-416 -816 0) (-336 -976 0) (-336 -976 20)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "368" - "plane" "(-448 -832 0) (-416 -816 0) (-416 -816 20)" - "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" "367" - "plane" "(-336 -976 0) (-368 -992 0) (-368 -992 20)" - "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 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "95" - side - { - "id" "384" - "plane" "(-336 -976 16) (-416 -816 16) (-384 -800 16)" - "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" "383" - "plane" "(-416 -816 0) (-336 -976 0) (-304 -960 0)" - "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" "382" - "plane" "(-336 -976 0) (-416 -816 0) (-416 -816 16)" - "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" "381" - "plane" "(-384 -800 0) (-304 -960 0) (-304 -960 16)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "380" - "plane" "(-416 -816 0) (-384 -800 0) (-384 -800 16)" - "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" "379" - "plane" "(-304 -960 0) (-336 -976 0) (-336 -976 16)" - "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 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "97" - side - { - "id" "396" - "plane" "(-304 -960 12) (-384 -800 12) (-352 -784 12)" - "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" "395" - "plane" "(-384 -800 0) (-304 -960 0) (-272 -944 0)" - "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" "394" - "plane" "(-304 -960 0) (-384 -800 0) (-384 -800 12)" - "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" "393" - "plane" "(-352 -784 0) (-272 -944 0) (-272 -944 12)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "392" - "plane" "(-384 -800 0) (-352 -784 0) (-352 -784 12)" - "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" "391" - "plane" "(-272 -944 0) (-304 -960 0) (-304 -960 12)" - "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 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "99" - side - { - "id" "408" - "plane" "(-272 -944 8) (-352 -784 8) (-320 -768 8)" - "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" "407" - "plane" "(-352 -784 0) (-272 -944 0) (-240 -928 0)" - "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" "406" - "plane" "(-272 -944 0) (-352 -784 0) (-352 -784 8)" - "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" "405" - "plane" "(-320 -768 0) (-240 -928 0) (-240 -928 8)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "404" - "plane" "(-352 -784 0) (-320 -768 0) (-320 -768 8)" - "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" "403" - "plane" "(-240 -928 0) (-272 -944 0) (-272 -944 8)" - "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 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "116" - side - { - "id" "456" - "plane" "(-672 -864 80) (-576 -864 48) (-576 -896 48)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "455" - "plane" "(-672 -896 0) (-576 -896 0) (-576 -864 0)" - "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" "454" - "plane" "(-672 -864 0) (-672 -864 80) (-672 -896 80)" - "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" "453" - "plane" "(-576 -896 0) (-576 -896 48) (-576 -864 48)" - "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" "452" - "plane" "(-576 -864 0) (-576 -864 48) (-672 -864 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "451" - "plane" "(-576 -896 48) (-576 -896 0) (-672 -896 0)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "169" - side - { - "id" "462" - "plane" "(-576 -896 0) (-320 -768 0) (-336 -736 0)" - "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" "461" - "plane" "(-576 -896 0) (-576 -864 0) (-576 -864 48)" - "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" "460" - "plane" "(-336 -736 0) (-320 -768 0) (-320 -768 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "459" - "plane" "(-576 -864 0) (-336 -736 0) (-336 -736 33)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "458" - "plane" "(-320 -768 0) (-576 -896 0) (-576 -896 48)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "457" - "plane" "(-576 -864 48) (-336 -736 33) (-320 -768 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 176 105" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "171" - side - { - "id" "463" - "plane" "(-704 -816 80) (-672 -848 80) (-672 -896 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "464" - "plane" "(-704 -896 0) (-672 -896 0) (-672 -848 0)" - "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" "465" - "plane" "(-704 -816 0) (-704 -816 80) (-704 -896 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "466" - "plane" "(-672 -896 0) (-672 -896 80) (-672 -848 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "467" - "plane" "(-672 -848 0) (-672 -848 80) (-704 -816 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "468" - "plane" "(-704 -896 0) (-704 -896 80) (-672 -896 80)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "199" - side - { - "id" "564" - "plane" "(-960 -288 32) (-960 -128 32) (-832 -128 32)" - "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" "563" - "plane" "(-960 -128 0) (-960 -288 0) (-832 -416 0)" - "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" "562" - "plane" "(-960 -288 0) (-960 -128 0) (-960 -128 32)" - "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" "561" - "plane" "(-832 -128 0) (-832 -416 0) (-832 -416 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "560" - "plane" "(-960 -128 0) (-832 -128 0) (-832 -128 32)" - "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" "559" - "plane" "(-832 -416 0) (-960 -288 0) (-960 -288 32)" - "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 108 237" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "204" - side - { - "id" "576" - "plane" "(-832 -352 32) (-832 -128 32) (-768 -128 32)" - "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" "575" - "plane" "(-832 -128 0) (-832 -352 0) (-768 -352 0)" - "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" "574" - "plane" "(-832 -352 0) (-832 -128 0) (-832 -128 32)" - "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" "573" - "plane" "(-768 -128 0) (-768 -352 0) (-768 -352 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "572" - "plane" "(-832 -128 0) (-768 -128 0) (-768 -128 32)" - "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" "571" - "plane" "(-768 -352 0) (-832 -352 0) (-832 -352 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "206" - side - { - "id" "588" - "plane" "(-768 -256 32) (-768 -128 32) (-672 -128 32)" - "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" "587" - "plane" "(-768 -128 0) (-768 -256 0) (-672 -256 0)" - "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" "586" - "plane" "(-768 -256 0) (-768 -128 0) (-768 -128 32)" - "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" "585" - "plane" "(-672 -128 0) (-672 -256 0) (-672 -256 32)" - "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" "584" - "plane" "(-768 -128 0) (-672 -128 0) (-672 -128 32)" - "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" "583" - "plane" "(-672 -256 0) (-768 -256 0) (-768 -256 32)" - "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 108 237" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "213" - side - { - "id" "605" - "plane" "(-768 -256 0) (-768 -352 0) (-672 -352 0)" - "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" "604" - "plane" "(-768 -352 0) (-768 -256 0) (-768 -256 32)" - "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" "603" - "plane" "(-672 -256 32) (-672 -256 0) (-672 -352 0)" - "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" "602" - "plane" "(-768 -256 32) (-768 -256 0) (-672 -256 0)" - "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" "601" - "plane" "(-672 -352 0) (-768 -352 0) (-768 -256 32)" - "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" - } - editor - { - "color" "0 108 237" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "226" - side - { - "id" "624" - "plane" "(-672 -256 64) (-672 -128 64) (-640 -128 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "623" - "plane" "(-672 -128 0) (-672 -352 0) (-640 -352 0)" - "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" "622" - "plane" "(-672 -352 0) (-672 -128 0) (-672 -128 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "621" - "plane" "(-640 -128 0) (-640 -352 0) (-640 -352 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "620" - "plane" "(-672 -128 0) (-640 -128 0) (-640 -128 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" "619" - "plane" "(-640 -352 0) (-672 -352 0) (-672 -352 32)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "618" - "plane" "(-672 -352 32) (-672 -256 64) (-640 -256 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "272" - side - { - "id" "682" - "plane" "(-480 -752 256) (-480 -656 256) (-464 -640 256)" - "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" "681" - "plane" "(-480 -656 0) (-480 -752 0) (-464 -768 0)" - "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" "680" - "plane" "(-480 -752 0) (-480 -656 0) (-480 -656 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "679" - "plane" "(-352 -656 0) (-352 -752 0) (-352 -752 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "678" - "plane" "(-464 -640 0) (-368 -640 0) (-368 -640 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "677" - "plane" "(-368 -768 0) (-464 -768 0) (-464 -768 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "676" - "plane" "(-480 -656 0) (-464 -640 0) (-464 -640 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "675" - "plane" "(-368 -640 0) (-352 -656 0) (-352 -656 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "674" - "plane" "(-352 -752 0) (-368 -768 0) (-368 -768 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "673" - "plane" "(-464 -768 0) (-480 -752 0) (-480 -752 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 108 237" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "316" - side - { - "id" "784" - "plane" "(-576 192 0) (-576 0 0) (-384 0 0)" - "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" "783" - "plane" "(-576 0 0) (-576 192 0) (-576 192 70)" - "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" "782" - "plane" "(-384 192 70) (-384 192 0) (-384 0 0)" - "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" "781" - "plane" "(-576 192 70) (-576 192 0) (-384 192 0)" - "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" "780" - "plane" "(-384 0 0) (-576 0 0) (-576 192 70)" - "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" - } - editor - { - "color" "0 108 237" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "440" - side - { - "id" "820" - "plane" "(196 -640 96) (196 -260 96) (380 -260 96)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR" - "uaxis" "[0 1 0 0] 0.2" - "vaxis" "[1 0 0 0] 0.2" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "819" - "plane" "(196 -260 -128) (196 -640 -128) (380 -640 -128)" - "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" "818" - "plane" "(196 -640 -128) (196 -260 -128) (196 -260 96)" - "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" "817" - "plane" "(380 -260 -128) (380 -640 -128) (380 -640 96)" - "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" "816" - "plane" "(196 -260 -128) (380 -260 -128) (380 -260 96)" - "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" "815" - "plane" "(380 -640 -128) (196 -640 -128) (196 -640 96)" - "material" "TEROUST/ARPEGGIO/WOOD/FLOOR_TRIMBITS" - "uaxis" "[1 0 0 0] 0.135" - "vaxis" "[0 0 -1 201] 0.135" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 158 183" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "461" - side - { - "id" "856" - "plane" "(384 -640 136) (384 -256 136) (448 -256 136)" - "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" "855" - "plane" "(384 -256 96) (384 -640 96) (448 -640 96)" - "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" "854" - "plane" "(384 -640 96) (384 -256 96) (384 -256 136)" - "material" "TEROUST/ARPEGGIO/WALLPAPER/WALLPAPER_FLOWER_INVERT_SMALL" - "uaxis" "[0 1 0 15] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "853" - "plane" "(448 -256 96) (448 -640 96) (448 -640 136)" - "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" "852" - "plane" "(384 -256 96) (448 -256 96) (448 -256 136)" - "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" "851" - "plane" "(448 -640 96) (384 -640 96) (384 -640 136)" - "material" "TEROUST/ARPEGGIO/WALLPAPER/WALLPAPER_FLOWER_INVERT_SMALL" - "uaxis" "[1 0 0 15] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 158 183" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "469" - side - { - "id" "880" - "plane" "(464 -672 72) (464 -448 72) (512 -448 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "879" - "plane" "(464 -448 64) (464 -672 64) (512 -672 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "878" - "plane" "(464 -672 64) (464 -448 64) (464 -448 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "877" - "plane" "(512 -448 64) (512 -672 64) (512 -672 72)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 224] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "876" - "plane" "(464 -448 64) (512 -448 64) (512 -448 72)" - "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" "875" - "plane" "(512 -672 64) (464 -672 64) (464 -672 72)" - "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 158 183" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "484" - side - { - "id" "916" - "plane" "(-576 432 64) (-576 448 64) (0 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" "915" - "plane" "(-576 448 0) (-576 432 0) (0 432 0)" - "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" "914" - "plane" "(-576 432 0) (-576 448 0) (-576 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" "913" - "plane" "(0 448 0) (0 432 0) (0 432 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" "912" - "plane" "(-576 448 0) (0 448 0) (0 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" - } - side - { - "id" "911" - "plane" "(0 432 0) (-576 432 0) (-576 432 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 158 183" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "497" - side - { - "id" "946" - "plane" "(-1024 448 64) (-1024 768 64) (-192 768 64)" - "material" "TEROUST/GROUNDS/ROAD/ROAD_BARE_CRACKED" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 24] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "945" - "plane" "(-1024 768 0) (-1024 448 0) (-192 448 0)" - "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" "944" - "plane" "(-1024 768 0) (-1024 768 64) (-1024 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" "943" - "plane" "(-192 768 64) (-192 768 0) (-192 448 0)" - "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" "942" - "plane" "(-192 768 0) (-192 768 64) (-1024 768 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" "941" - "plane" "(-192 448 64) (-192 448 0) (-1024 448 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 158 183" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "514" - side - { - "id" "970" - "plane" "(-704 448 320) (-704 768 320) (-640 768 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" "969" - "plane" "(-704 768 64) (-704 448 64) (-640 448 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" "968" - "plane" "(-704 448 64) (-704 768 64) (-704 768 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" "967" - "plane" "(-640 768 64) (-640 448 64) (-640 448 320)" - "material" "DEV/DEV_MEASURERAILS01" - "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" "(-704 768 64) (-640 768 64) (-640 768 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" "965" - "plane" "(-640 448 64) (-704 448 64) (-704 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 108 237" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "744" - side - { - "id" "9648" - "plane" "(544 -448 64) (544 -320 64) (896 -320 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9647" - "plane" "(544 -320 0) (544 -448 0) (896 -448 0)" - "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" "9646" - "plane" "(544 -448 0) (544 -320 0) (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" "9645" - "plane" "(896 -320 0) (896 -448 0) (896 -448 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9644" - "plane" "(544 -320 0) (896 -320 0) (896 -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" "9643" - "plane" "(896 -448 0) (544 -448 0) (544 -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 226 179" - "groupid" "743" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "747" - side - { - "id" "9654" - "plane" "(512 -832 64) (512 -448 64) (832 -448 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9653" - "plane" "(512 -448 0) (512 -832 0) (832 -832 0)" - "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" "9652" - "plane" "(512 -832 0) (512 -448 0) (512 -448 64)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9651" - "plane" "(832 -448 0) (832 -832 0) (832 -832 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9650" - "plane" "(512 -448 0) (832 -448 0) (832 -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" - } - side - { - "id" "9649" - "plane" "(832 -832 0) (512 -832 0) (512 -832 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 226 179" - "groupid" "746" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "753" - side - { - "id" "1418" - "plane" "(832 -832 64) (672 -1472 64) (320 -1472 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1417" - "plane" "(672 -1472 0) (832 -832 0) (512 -832 0)" - "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" "1416" - "plane" "(512 -832 64) (320 -1472 64) (320 -1472 0)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1415" - "plane" "(672 -1472 64) (832 -832 64) (832 -832 0)" - "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" "1414" - "plane" "(832 -832 64) (512 -832 64) (512 -832 0)" - "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" "1413" - "plane" "(320 -1472 64) (672 -1472 64) (672 -1472 0)" - "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 226 179" - "groupid" "752" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "966" - side - { - "id" "1571" - "plane" "(960 512 96) (704 512 96) (704 832 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1570" - "plane" "(704 832 64) (704 512 64) (960 512 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" "1569" - "plane" "(960 512 64) (704 512 64) (704 512 96)" - "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" "1568" - "plane" "(960 832 64) (960 512 64) (960 512 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1567" - "plane" "(704 512 64) (704 832 64) (704 832 96)" - "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" "1566" - "plane" "(704 832 64) (960 832 64) (960 832 96)" - "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 226 179" - "groupid" "965" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "975" - side - { - "id" "1607" - "plane" "(448 -64 256) (448 0 256) (576 0 256)" - "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" "1606" - "plane" "(448 0 64) (448 -64 64) (576 -64 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" "1605" - "plane" "(576 0 64) (576 -64 64) (576 -64 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1604" - "plane" "(448 -64 64) (448 0 64) (448 0 256)" - "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" "1603" - "plane" "(576 -64 64) (448 -64 64) (448 -64 256)" - "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" "1602" - "plane" "(448 0 64) (576 0 64) (576 0 256)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 158 183" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1000" - side - { - "id" "1655" - "plane" "(448 640 96) (448 704 96) (640 896 96)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1654" - "plane" "(672 864 64) (640 896 64) (448 704 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" "1653" - "plane" "(448 640 96) (672 864 96) (672 864 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" "1652" - "plane" "(672 864 96) (640 896 96) (640 896 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" "1651" - "plane" "(448 704 96) (448 640 96) (448 640 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" "1650" - "plane" "(640 896 96) (448 704 96) (448 704 64)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 226 179" - "groupid" "999" - "visgroupid" "23" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "287938" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "276643" - editor - { - "color" "189 214 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "276644" - editor - { - "color" "189 214 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "276654" - editor - { - "color" "189 214 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "276659" - editor - { - "color" "189 214 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "276770" - editor - { - "color" "223 224 0" - "groupid" "276836" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "276776" - editor - { - "color" "223 224 0" - "groupid" "276836" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "276781" - editor - { - "color" "223 224 0" - "groupid" "276836" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "276787" - editor - { - "color" "223 224 0" - "groupid" "276836" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "276836" - editor - { - "color" "223 224 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "269310" - editor - { - "color" "253 102 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "269671" - editor - { - "color" "220 220 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "266581" - editor - { - "color" "175 108 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "266588" - editor - { - "color" "175 108 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "266591" - editor - { - "color" "175 108 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "266594" - editor - { - "color" "175 108 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "266597" - editor - { - "color" "175 108 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "266794" - editor - { - "color" "135 228 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "266795" - editor - { - "color" "135 228 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "266835" - editor - { - "color" "183 136 0" - "groupid" "266842" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "266842" - editor - { - "color" "183 136 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "262575" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "262580" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "260343" - editor - { - "color" "163 204 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "257848" - editor - { - "color" "139 224 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "257884" - editor - { - "color" "139 224 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "253889" - editor - { - "color" "237 102 0" - "groupid" "253929" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "253929" - editor - { - "color" "237 102 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "254044" - editor - { - "color" "155 204 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "254063" - editor - { - "color" "155 204 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "254074" - editor - { - "color" "155 204 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "254368" - editor - { - "color" "179 144 0" - "groupid" "254481" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "254481" - editor - { - "color" "179 144 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "254676" - editor - { - "color" "139 224 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "254685" - editor - { - "color" "139 224 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "254894" - editor - { - "color" "155 204 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "255882" - editor - { - "color" "155 204 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "245243" - editor - { - "color" "201 138 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218312" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218315" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218320" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218323" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218328" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218333" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218338" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218343" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218346" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218351" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218354" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218357" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218360" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218363" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218368" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218371" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218376" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218390" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218404" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218407" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218412" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218417" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218427" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218432" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218437" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218443" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218449" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218451" - editor - { - "color" "163 140 0" - "groupid" "218449" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218464" - editor - { - "color" "163 140 0" - "groupid" "218449" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218467" - editor - { - "color" "163 140 0" - "groupid" "218449" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218480" - editor - { - "color" "163 140 0" - "groupid" "218449" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218493" - editor - { - "color" "163 140 0" - "groupid" "218449" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218506" - editor - { - "color" "163 140 0" - "groupid" "218449" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218513" - editor - { - "color" "163 140 0" - "groupid" "218449" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218520" - editor - { - "color" "163 140 0" - "groupid" "218449" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218527" - editor - { - "color" "163 140 0" - "groupid" "218449" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218528" - editor - { - "color" "163 140 0" - "groupid" "218527" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218534" - editor - { - "color" "163 140 0" - "groupid" "218527" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218551" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218554" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218559" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218564" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218565" - editor - { - "color" "163 140 0" - "groupid" "218564" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218571" - editor - { - "color" "163 140 0" - "groupid" "218564" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218578" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218586" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218593" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218600" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218613" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218626" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218639" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218652" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218655" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218658" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218671" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218674" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218677" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218680" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "218683" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "219643" - editor - { - "color" "163 140 0" - "groupid" "236318" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "236318" - editor - { - "color" "163 140 0" - "groupid" "240294" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "240294" - editor - { - "color" "163 140 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "187231" - editor - { - "color" "107 188 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "170827" - editor - { - "color" "220 220 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "171409" - editor - { - "color" "223 212 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "171410" - editor - { - "color" "223 212 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "171414" - editor - { - "color" "223 212 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "171438" - editor - { - "color" "223 212 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "167944" - editor - { - "color" "156 245 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "167969" - editor - { - "color" "156 245 0" - "groupid" "167944" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "167970" - editor - { - "color" "156 245 0" - "groupid" "167969" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "167971" - editor - { - "color" "156 245 0" - "groupid" "167970" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "167977" - editor - { - "color" "156 245 0" - "groupid" "167970" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "167983" - editor - { - "color" "156 245 0" - "groupid" "167944" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "167984" - editor - { - "color" "156 245 0" - "groupid" "167983" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "167985" - editor - { - "color" "156 245 0" - "groupid" "167984" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "167989" - editor - { - "color" "156 245 0" - "groupid" "167984" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "155031" - editor - { - "color" "220 220 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "155100" - editor - { - "color" "220 220 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "148044" - editor - { - "color" "213 106 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "142100" - editor - { - "color" "220 220 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "143662" - editor - { - "color" "220 220 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "119501" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "115540" - editor - { - "color" "187 124 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "107639" - editor - { - "color" "239 252 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "100786" - editor - { - "color" "162 131 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "97407" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "97413" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "97428" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "95488" - editor - { - "color" "124 149 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "95663" - editor - { - "color" "124 149 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "95679" - editor - { - "color" "124 149 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "70187" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "70392" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "70398" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "61486" - editor - { - "color" "217 230 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56748" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56767" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56772" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56777" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56782" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56787" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56802" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56812" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56817" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56822" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56827" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56832" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56837" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56842" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56847" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56857" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56867" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56877" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56882" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56888" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56893" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56898" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56903" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56908" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56913" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "56918" - editor - { - "color" "128 225 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "44471" - editor - { - "color" "169 190 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "44479" - editor - { - "color" "169 190 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "41734" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "41848" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "31888" - editor - { - "color" "0 237 122" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "31889" - editor - { - "color" "0 237 122" - "groupid" "31888" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "31900" - editor - { - "color" "0 237 122" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "31901" - editor - { - "color" "0 237 122" - "groupid" "31900" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "32585" - editor - { - "color" "153 242 0" - "groupid" "32777" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "32586" - editor - { - "color" "153 242 0" - "groupid" "32585" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "32587" - editor - { - "color" "153 242 0" - "groupid" "32586" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "32591" - editor - { - "color" "153 242 0" - "groupid" "32586" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "32608" - editor - { - "color" "153 242 0" - "groupid" "32777" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "32609" - editor - { - "color" "153 242 0" - "groupid" "32608" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "32610" - editor - { - "color" "153 242 0" - "groupid" "32609" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "32616" - editor - { - "color" "153 242 0" - "groupid" "32609" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "32777" - editor - { - "color" "153 242 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "28538" - editor - { - "color" "102 235 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "28788" - editor - { - "color" "190 203 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "28988" - editor - { - "color" "190 203 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "29012" - editor - { - "color" "190 203 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "26754" - editor - { - "color" "0 154 255" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "26755" - editor - { - "color" "0 136 201" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "26784" - editor - { - "color" "0 202 115" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "26788" - editor - { - "color" "0 192 105" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "21153" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "25783" - editor - { - "color" "150 135 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "18855" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "7772" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "2395" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "2628" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "2630" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "2632" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "2638" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "2644" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "2648" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "2652" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "2658" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "2664" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "2666" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "2668" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "2670" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "2672" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "3100" - editor - { - "color" "244 169 0" - "groupid" "3955" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "3955" - editor - { - "color" "244 169 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "743" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "746" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "752" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "926" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "965" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "999" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "1004" - editor - { - "color" "0 226 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } -} -entity -{ - "id" "293287" - "classname" "tar_config" - "aoSize" "16" - "customCol0" "39 56 79" - "customCol1" "77 74 72" - "customCol2" "178 113 65" - "enableAO" "1" - "origin" "-448 -353.209 32" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity -{ - "id" "289962" - "classname" "tavr_height_max" - "origin" "2368 288 160" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "289989" - "classname" "tavr_height_min" - "origin" "-416 -416 0" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -hidden -{ - entity - { - "id" "284244" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/signs/townsign.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "1" - "solid" "6" - "uniformscale" "1" - "origin" "988 -2561 80" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "282636" - "classname" "prop_static" - "angles" "0 45 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/signs/townsign.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "968 -2598 80" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "280482" - "classname" "prop_static" - "angles" "0 90 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/foliage/ivy_straight02a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1014 -2502 210" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 5000]" - } - } -} -hidden -{ - entity - { - "id" "280989" - "classname" "prop_static" - "angles" "5.99934 224.684 -6.0325" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/foliage/ivy_straight02b.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1486 -3038 104" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 5000]" - } - } -} -entity -{ - "id" "273440" - "classname" "infodecal" - "angles" "0 0 0" - "texture" "decals/decalmetalgrate014a" - "origin" "96 -1824 64" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -3268]" - } -} -hidden -{ - entity - { - "id" "266387" - "classname" "prop_static" - "angles" "0 315 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_plants/hr_dead_plant.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "240 -96 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 5000]" - } - } -} -entity -{ - "id" "262577" - "classname" "env_cubemap" - "sides" "" - "origin" "278.739 -431.979 160" - editor - { - "color" "128 225 0" - "groupid" "262575" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -12268]" - } -} -entity -{ - "id" "262582" - "classname" "env_cubemap" - "sides" "" - "origin" "338.479 -801.408 144" - editor - { - "color" "128 225 0" - "groupid" "262580" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -12268]" - } -} -hidden -{ - entity - { - "id" "253329" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/rail.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "288 -160 88" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -entity -{ - "id" "253513" - "classname" "light" - "_light" "216 209 186 200" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_quadratic_attn" "1" - "origin" "296 -516.532 176" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 1000]" - } -} -entity -{ - "id" "253543" - "classname" "light" - "_light" "216 209 186 200" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_quadratic_attn" "1" - "origin" "336 -800 176" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 1000]" - } -} -hidden -{ - entity - { - "id" "254009" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-144 -868 96" - editor - { - "color" "155 204 0" - "groupid" "254044" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} -hidden -{ - entity - { - "id" "254069" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-144 -736 96" - editor - { - "color" "155 204 0" - "groupid" "254063" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} -hidden -{ - entity - { - "id" "254080" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-144 -604 96" - editor - { - "color" "155 204 0" - "groupid" "254074" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} -hidden -{ - entity - { - "id" "254900" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-68 -528 96" - editor - { - "color" "155 204 0" - "groupid" "254894" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} -hidden -{ - entity - { - "id" "255759" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-68 -240 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} -hidden -{ - entity - { - "id" "255888" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-144 -164 96" - editor - { - "color" "155 204 0" - "groupid" "255882" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} -hidden -{ - entity - { - "id" "244951" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/pillar.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "486 -892 64" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "245024" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/pillar.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "486 -740 64" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "248505" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "388 -948 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} -hidden -{ - entity - { - "id" "218057" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/decora.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2652 472 208" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 1000]" - } - } -} -hidden -{ - entity - { - "id" "218061" - "classname" "prop_static" - "angles" "0 0 -180" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2688 436 368" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218065" - "classname" "prop_static" - "angles" "0 180 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2688 436 192" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218069" - "classname" "prop_static" - "angles" "0 270 180" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2652 472 368" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218073" - "classname" "prop_static" - "angles" "0 90 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2652 472 192" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218080" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/conesmall.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2688 732 464" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "218084" - "classname" "prop_static" - "angles" "0 90 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2652 732 192" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218088" - "classname" "prop_static" - "angles" "0 270 180" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2652 732 368" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218092" - "classname" "prop_static" - "angles" "0 0 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2688 768 192" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218096" - "classname" "prop_static" - "angles" "0 180 -180" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2688 768 368" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218100" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/decora.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2652 732 208" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 1000]" - } - } -} -hidden -{ - entity - { - "id" "218104" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/conesmall.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2688 472 464" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "218108" - "classname" "prop_static" - "angles" "0 90 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/entrance.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2700 602 160" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "218112" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/cone.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2730 462 1056" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -12768]" - } - } -} -hidden -{ - entity - { - "id" "218116" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/cone.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2730 742 1056" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -12768]" - } - } -} -hidden -{ - entity - { - "id" "218121" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/conesmall.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2780 220 618" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "218125" - "classname" "prop_static" - "angles" "0 180 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2780 184 192" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218129" - "classname" "prop_static" - "angles" "0 90 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2744 220 192" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218133" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/decora.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2744 220 208" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 1000]" - } - } -} -hidden -{ - entity - { - "id" "218137" - "classname" "prop_static" - "angles" "0 270 -180" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2744 220 368" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218141" - "classname" "prop_static" - "angles" "0 0 180" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2780 184 368" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218145" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/spire.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2870 602 1540" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -7768]" - } - } -} -hidden -{ - entity - { - "id" "218149" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2870 432 1048" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 9000]" - } - } -} -hidden -{ - entity - { - "id" "218153" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2870 772 1048" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 9000]" - } - } -} -hidden -{ - entity - { - "id" "218158" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/smalldoor.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2760 336 160" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 7500]" - } - } -} -hidden -{ - entity - { - "id" "218162" - "classname" "prop_static" - "angles" "0 90 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "disablevertexlighting" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/largedoor.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2756 602 160" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "218166" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/conesmall.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2780 984 618" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "218170" - "classname" "prop_static" - "angles" "0 180 -180" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2780 1020 368" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218174" - "classname" "prop_static" - "angles" "0 0 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2780 1020 192" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218178" - "classname" "prop_static" - "angles" "0 270 -180" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2744 984 368" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218182" - "classname" "prop_static" - "angles" "0 90 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2744 984 192" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218186" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/decora.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2744 984 208" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 1000]" - } - } -} -hidden -{ - entity - { - "id" "218190" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/smalldoor.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "1" - "solid" "6" - "uniformscale" "1" - "origin" "2760 868 160" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 7500]" - } - } -} -hidden -{ - entity - { - "id" "218194" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/window2.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2888 200 286" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6500]" - } - } -} -hidden -{ - entity - { - "id" "218198" - "classname" "prop_static" - "angles" "0 0 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/window2.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2888 1004 286" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6500]" - } - } -} -hidden -{ - entity - { - "id" "218227" - "classname" "prop_static" - "angles" "0 270 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3040 984 192" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218231" - "classname" "prop_static" - "angles" "0 0 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3004 1020 192" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218235" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/decora.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3004 1020 208" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 1000]" - } - } -} -hidden -{ - entity - { - "id" "218239" - "classname" "prop_static" - "angles" "0 90 -180" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3040 984 368" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218243" - "classname" "prop_static" - "angles" "0 180 180" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3004 1020 368" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218247" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/conesmall.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3004 984 618" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "218274" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/conesmall.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3004 220 618" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "218278" - "classname" "prop_static" - "angles" "0 90 180" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3040 220 368" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218282" - "classname" "prop_static" - "angles" "0 0 -180" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3004 184 368" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218286" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/decora.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3004 184 208" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 1000]" - } - } -} -hidden -{ - entity - { - "id" "218297" - "classname" "prop_static" - "angles" "0 270 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3040 220 192" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218301" - "classname" "prop_static" - "angles" "0 180 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/teroust/arpeggio/buildings/church/decorb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3004 184 192" - editor - { - "color" "163 140 0" - "groupid" "219643" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" - } - } -} -hidden -{ - entity - { - "id" "218386" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3039.89 602 1048" - editor - { - "color" "163 140 0" - "groupid" "218376" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 9000]" - } - } -} -hidden -{ - entity - { - "id" "218400" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2700 602 1048" - editor - { - "color" "163 140 0" - "groupid" "218390" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 9000]" - } - } -} -hidden -{ - entity - { - "id" "218460" - "classname" "prop_static" - "angles" "0 0 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/window2.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3852 964 286" - editor - { - "color" "163 140 0" - "groupid" "218451" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6500]" + "color" "0 226 179" + "visgroupshown" "1" + "visgroupautoshown" "1" } } } -hidden +entity { - entity + "id" "295109" + "classname" "tar_config" + "aoSize" "20" + "colorScheme" "-1" + "customCol0" "89 52 105" + "customCol1" "46 107 209" + "customCol2" "132 188 234" + "enableAO" "1" + "enableOutline" "1" + "enableShadows" "1" + "outlineWidth" "2" + "vgroup_cover" "tavr_cover" + "vgroup_layout" "tavr_layout" + "vgroup_negative" "tavr_mask" + "origin" "2527.47 337.322 145" + editor { - "id" "218476" - "classname" "prop_static" - "angles" "0 0 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/window2.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3604 964 286" - editor - { - "color" "163 140 0" - "groupid" "218467" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6500]" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" } } -hidden +entity { - entity + "id" "289962" + "classname" "tar_max" + "origin" "2368 400 144" + editor { - "id" "218489" - "classname" "prop_static" - "angles" "0 0 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/window2.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3356 964 286" - editor - { - "color" "163 140 0" - "groupid" "218480" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6500]" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } } -hidden +entity { - entity + "id" "289989" + "classname" "tar_min" + "origin" "-416 -416 0" + editor { - "id" "218502" - "classname" "prop_static" - "angles" "0 0 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/window2.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3108 964 286" - editor - { - "color" "163 140 0" - "groupid" "218493" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6500]" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } } -hidden +entity { - entity + "id" "273440" + "classname" "infodecal" + "angles" "0 0 0" + "texture" "decals/decalmetalgrate014a" + "origin" "96 -1824 64" + editor { - "id" "218609" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/window2.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3852 240 286" - editor - { - "color" "163 140 0" - "groupid" "218600" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6500]" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -3268]" } } -hidden +entity { - entity + "id" "266387" + "classname" "prop_static" + "angles" "0 315 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_plants/hr_dead_plant.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "240 -96 96" + editor { - "id" "218622" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/window2.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3604 240 286" - editor - { - "color" "163 140 0" - "groupid" "218613" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" } } -hidden +entity { - entity + "id" "262577" + "classname" "env_cubemap" + "sides" "" + "origin" "278.739 -431.979 160" + editor { - "id" "218635" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/window2.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3356 240 286" - editor - { - "color" "163 140 0" - "groupid" "218626" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6500]" - } + "color" "128 225 0" + "groupid" "262575" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" } } -hidden +entity { - entity + "id" "262582" + "classname" "env_cubemap" + "sides" "" + "origin" "338.479 -801.408 144" + editor { - "id" "218648" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/window2.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3108 240 286" - editor - { - "color" "163 140 0" - "groupid" "218639" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6500]" - } + "color" "128 225 0" + "groupid" "262580" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" } } -hidden +entity { - entity + "id" "253513" + "classname" "light" + "_light" "216 209 186 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "296 -516.532 176" + editor { - "id" "218663" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/cone.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3010 462 1056" - editor - { - "color" "163 140 0" - "groupid" "218658" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -12768]" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" } } -hidden +entity { - entity + "id" "253543" + "classname" "light" + "_light" "216 209 186 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "336 -800 176" + editor { - "id" "218667" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/church/cone.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3010 742 1056" - editor - { - "color" "163 140 0" - "groupid" "218658" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -12768]" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" } } -hidden +entity { - entity + "id" "215291" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_foliage/shrub_01a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2768 208 112" + editor { - "id" "215291" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/shrub_01a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2768 208 112" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[6000 3500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[6000 3500]" } } entity @@ -223789,527 +180801,73 @@ entity "logicalpos" "[6000 -768]" } } -hidden -{ - entity - { - "id" "216290" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/bench_wood_new.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2736 -192 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6500]" - } - } -} -hidden -{ - entity - { - "id" "216302" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/bench_wood_new.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2736 -48 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6500]" - } - } -} -hidden -{ - entity - { - "id" "186487" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/statue/19cavalry/19cavalry.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2160 300 232" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "186569" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_balcony_planter01b.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "1" - "solid" "6" - "uniformscale" "1" - "origin" "2084 368 204" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "186577" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_balcony_planter01b.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2084 264 208" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "186585" - "classname" "prop_static" - "angles" "0 195 0" - "disableshadows" "1" - "disablevertexlighting" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_balcony_planter01b.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "2" - "solid" "6" - "uniformscale" "1" - "origin" "2084 196 208" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "186601" - "classname" "prop_static" - "angles" "0 270 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_balcony_planter01b.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "1" - "solid" "6" - "uniformscale" "1" - "origin" "2212 176 204" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "186617" - "classname" "prop_static" - "angles" "0 270 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_balcony_planter01b.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2120 180 212" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "186621" - "classname" "prop_static" - "angles" "0 0 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_balcony_planter01b.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2236 256 212" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "186625" - "classname" "prop_static" - "angles" "0 15 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_balcony_planter01b.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2230.66 363.101 208" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "186629" - "classname" "prop_static" - "angles" "0 0 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_balcony_planter01b.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2230.66 191.101 208" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "186689" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_fern01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2096 232 196" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "186735" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_fern01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2092 324 196" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "186739" - "classname" "prop_static" - "angles" "0 90 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_fern01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2124 384 196" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "186751" - "classname" "prop_static" - "angles" "0 75 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_fern01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2208 372 188" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden +entity { - entity + "id" "216290" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/bench_wood_new.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2736 -192 96" + editor { - "id" "186767" - "classname" "prop_static" - "angles" "0 345 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_fern01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2220 300 200" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" } } -hidden +entity { - entity + "id" "216302" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/bench_wood_new.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2736 -48 96" + editor { - "id" "186821" - "classname" "prop_static" - "angles" "0 240 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_balcony_planter01b.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "2" - "solid" "6" - "uniformscale" "1" - "origin" "2128 216 216" - editor - { - "color" "107 188 0" - "groupid" "187231" - "visgroupid" "23" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" } } -hidden +entity { - entity + "id" "189351" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/bench_wood_new.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2192 112 96" + editor { - "id" "189351" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/bench_wood_new.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2192 112 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6500]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" } } entity @@ -224341,206 +180899,6 @@ entity "logicalpos" "[0 -14768]" } } -hidden -{ - entity - { - "id" "178105" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "160 -960 248" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} -hidden -{ - entity - { - "id" "178140" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "256 -960 248" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} -hidden -{ - entity - { - "id" "178144" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "64 -960 248" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} -hidden -{ - entity - { - "id" "178148" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "160 -960 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} -hidden -{ - entity - { - "id" "178152" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "256 -960 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} -hidden -{ - entity - { - "id" "178156" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "64 -960 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} -hidden -{ - entity - { - "id" "178160" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "388 -960 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} -hidden -{ - entity - { - "id" "178164" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/1337/window.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-68 -960 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 -15268]" - } - } -} entity { "id" "174455" @@ -224646,264 +181004,70 @@ entity "logicalpos" "[0 0]" } } -hidden -{ - entity - { - "id" "163363" - "classname" "prop_static" - "angles" "0 0 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/bridge/bridge_trim.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1248 -1974 56" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "163367" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/bridge/bridge_trim.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1248 -2010 56" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "163371" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/bridge/bridge_cobbles.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1248 -2008 44" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "163375" - "classname" "prop_static" - "angles" "0 0 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/bridge/bridge_cobbles.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1248 -1972 44" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "163601" - "classname" "prop_static" - "angles" "0 45 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/bridge/bridge_trim.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1588.64 -3062.93 56" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "163605" - "classname" "prop_static" - "angles" "0 225 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/bridge/bridge_trim.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1614.09 -3088.38 56" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "163609" - "classname" "prop_static" - "angles" "0 225 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/bridge/bridge_cobbles.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1612.68 -3086.97 44" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden +entity { - entity + "id" "150504" + "classname" "prop_static" + "angles" "0 225 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_foliage/urban_bush_angled_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3424 16 172" + editor { - "id" "150504" - "classname" "prop_static" - "angles" "0 225 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_bush_angled_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3424 16 172" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 7500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" } } -hidden +entity { - entity + "id" "150543" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_foliage/urban_bush_angled_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3616 -60 172" + editor { - "id" "150543" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_bush_angled_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3616 -60 172" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 7500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" } } -hidden +entity { - entity + "id" "150555" + "classname" "prop_static" + "angles" "0 135 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_foliage/urban_bush_angled_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3444 316 176" + editor { - "id" "150555" - "classname" "prop_static" - "angles" "0 135 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_bush_angled_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3444 316 176" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 7500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" } } entity @@ -224942,129 +181106,26 @@ entity "logicalpos" "[0 13500]" } } -hidden -{ - entity - { - "id" "147351" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/breadshop_storefront.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2812 -544 105" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "147389" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/breadshop_storefront.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2812 -776 105" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "147420" - "classname" "prop_static" - "angles" "0 255 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/foliage.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2752 -316 92" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 1000]" - } - } -} -hidden -{ - entity - { - "id" "147620" - "classname" "prop_static" - "angles" "0 75 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/bandstand.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3582.96 -63.8939 208" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6000]" - } - } -} -hidden +entity { - entity + "id" "148217" + "classname" "prop_static" + "angles" "0 75 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/tree_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3936 416 88" + editor { - "id" "148217" - "classname" "prop_static" - "angles" "0 75 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/tree_large.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3936 416 88" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 9000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" } } entity @@ -225096,330 +181157,272 @@ entity "logicalpos" "[0 12500]" } } -hidden -{ - entity - { - "id" "145301" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/inferno_fence_02.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2656 -960 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 11000]" - } - } -} -hidden +entity { - entity + "id" "145301" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/inferno_fence_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2656 -960 96" + editor { - "id" "145313" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/inferno_fence_02.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2592 -960 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 11000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" } } -hidden +entity { - entity + "id" "145313" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/inferno_fence_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2592 -960 96" + editor { - "id" "145358" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/inferno_fence_02.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2176 -1632 64" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 11000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" } } -hidden +entity { - entity + "id" "145358" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/inferno_fence_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2176 -1632 64" + editor { - "id" "145416" - "classname" "prop_static" - "angles" "0 195 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/tree_large.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2880 -1120 88" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 9000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" } } -hidden +entity { - entity + "id" "145469" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_foliage/urban_bush_angled_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2620 -964 88" + editor { - "id" "145469" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_bush_angled_128.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2620 -964 88" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 11000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" } } -hidden +entity { - entity + "id" "145512" + "classname" "prop_static" + "angles" "0 135 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_foliage/urban_bush_angled_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2728 -928 88" + editor { - "id" "145512" - "classname" "prop_static" - "angles" "0 135 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_bush_angled_64.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2728 -928 88" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 11000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" } } -hidden +entity { - entity + "id" "145570" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_foliage/urban_bush_angled_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2180 -1632 56" + editor { - "id" "145570" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_bush_angled_64.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2180 -1632 56" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 11000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" } } -hidden +entity { - entity + "id" "145648" + "classname" "prop_static" + "angles" "0 45 0" + "fademindist" "-1" + "fadescale" "1" + "lightingorigin" "info_lighting_lowcurb" + "model" "models/props_urban/curb_straight001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2286 -878 66" + editor { - "id" "145648" - "classname" "prop_static" - "angles" "0 45 0" - "fademindist" "-1" - "fadescale" "1" - "lightingorigin" "info_lighting_lowcurb" - "model" "models/props_urban/curb_straight001_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2286 -878 66" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 14500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14500]" } } -hidden +entity { - entity + "id" "141508" + "classname" "prop_static" + "angles" "0 334.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_c17/fence04a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2744 -388 144" + editor { - "id" "141508" - "classname" "prop_static" - "angles" "0 334.5 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_c17/fence04a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2744 -388 144" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 10000]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" } } -hidden +entity { - entity + "id" "141547" + "classname" "prop_static" + "angles" "0 21.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_c17/fence02b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2724 -488 152" + editor { - "id" "141547" - "classname" "prop_static" - "angles" "0 21.5 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_c17/fence02b.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2724 -488 152" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 10000]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" } } -hidden +entity { - entity + "id" "141604" + "classname" "prop_static" + "angles" "0 150 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_vehicles/car002a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2796 -444 119" + editor { - "id" "141604" - "classname" "prop_static" - "angles" "0 150 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_vehicles/car002a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2796 -444 119" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 11000]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" } } -hidden +entity { - entity + "id" "141715" + "classname" "prop_static" + "angles" "84 23.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_highway/plywood_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2747 -517 96" + editor { - "id" "141715" - "classname" "prop_static" - "angles" "84 23.5 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_highway/plywood_02.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2747 -517 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 11500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11500]" } } -hidden +entity { - entity + "id" "141774" + "classname" "prop_static" + "angles" "84 23.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_highway/plywood_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2734 -491 96" + editor { - "id" "141774" - "classname" "prop_static" - "angles" "84 23.5 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_highway/plywood_01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2734 -491 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 11500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11500]" } } entity @@ -225567,33 +181570,6 @@ entity "logicalpos" "[0 -3268]" } } -hidden -{ - entity - { - "id" "143024" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/locced/ctcurb.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-192 456 64" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -2768]" - } - } -} entity { "id" "143120" @@ -225768,129 +181744,114 @@ entity "logicalpos" "[500 6000]" } } -hidden +entity { - entity + "id" "143456" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/railingspiked.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2756 -48 144" + editor { - "id" "143456" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/railingspiked.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2756 -48 144" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 7000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 7000]" } } -hidden +entity { - entity + "id" "143487" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/railingspiked.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2756 -240 144" + editor { - "id" "143487" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/railingspiked.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2756 -240 144" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 7000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 7000]" } } -hidden +entity { - entity + "id" "143497" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/railingspiked.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2756 112 144" + editor { - "id" "143497" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/railingspiked.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2756 112 144" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 7000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 7000]" } } -hidden +entity { - entity + "id" "143528" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/railingspiked.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2832 -316 144" + editor { - "id" "143528" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/railingspiked.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2832 -316 144" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 7000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 7000]" } } -hidden +entity { - entity + "id" "143542" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/railingspiked.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3008 -316 144" + editor { - "id" "143542" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/railingspiked.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "3008 -316 144" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 7000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 7000]" } } entity @@ -226000,79 +181961,70 @@ entity "logicalpos" "[0 500]" } } -hidden +entity { - entity + "id" "137317" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/cs_militia/spotlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2792 -720 336" + editor { - "id" "137317" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/cs_militia/spotlight.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2792 -720 336" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 1000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" } } -hidden +entity { - entity + "id" "137348" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/cs_militia/spotlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2792 -640 336" + editor { - "id" "137348" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/cs_militia/spotlight.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2792 -640 336" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 1000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" } } -hidden +entity { - entity + "id" "137360" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/cs_militia/spotlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2792 -800 336" + editor { - "id" "137360" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/cs_militia/spotlight.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2792 -800 336" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 1000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" } } entity @@ -226141,29 +182093,26 @@ entity "logicalpos" "[0 1500]" } } -hidden +entity { - entity + "id" "137526" + "classname" "prop_static" + "angles" "0 135 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/inferno_fence_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2712 -936 96" + editor { - "id" "137526" - "classname" "prop_static" - "angles" "0 135 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/inferno_fence_02.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2712 -936 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 11000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" } } entity @@ -226209,254 +182158,136 @@ entity "logicalpos" "[0 13000]" } } -hidden -{ - entity - { - "id" "135223" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/breadshop_backdrop.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2824 -600 180" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -6768]" - } - } -} -hidden -{ - entity - { - "id" "135286" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/breadshop_backdrop.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2824 -832 180" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -6768]" - } - } -} -hidden -{ - entity - { - "id" "135363" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/breadshop_drape.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2780 -720 208" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -4768]" - } - } -} -hidden -{ - entity - { - "id" "135634" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_downtown/metal_door_112_frame.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2824 -748 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 8500]" - } - } -} -hidden +entity { - entity + "id" "135634" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_downtown/metal_door_112_frame.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2824 -748 96" + editor { - "id" "135683" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_downtown/metal_door_112_static.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2824 -748 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 8500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 8500]" } } -hidden +entity { - entity + "id" "135683" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_downtown/metal_door_112_static.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2824 -748 96" + editor { - "id" "135801" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/breadshop_sign.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2798 -720 306.722" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 14000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 8500]" } } -hidden +entity { - entity + "id" "131547" + "classname" "prop_static" + "angles" "0 270 15" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/gg_vietnam/bicycle_with_basket.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-458 -2204 32" + editor { - "id" "131547" - "classname" "prop_static" - "angles" "0 270 15" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/gg_vietnam/bicycle_with_basket.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-458 -2204 32" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -8768]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8768]" } } -hidden +entity { - entity + "id" "131590" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/light_streetlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-472 -2208 32" + editor { - "id" "131590" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/light_streetlight.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-472 -2208 32" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" } } -hidden +entity { - entity + "id" "131671" + "classname" "prop_static" + "angles" "0 63.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/railing01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-872 -734.835 28" + editor { - "id" "131671" - "classname" "prop_static" - "angles" "0 63.5 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/railing01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-872 -734.835 28" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" } } -hidden +entity { - entity + "id" "131754" + "classname" "prop_static" + "angles" "0 63.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/railing01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-758.298 -792 28" + editor { - "id" "131754" - "classname" "prop_static" - "angles" "0 63.5 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/railing01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-758.298 -792 28" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" } } entity @@ -226488,154 +182319,136 @@ entity "logicalpos" "[0 -5768]" } } -hidden +entity { - entity + "id" "122288" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/curb_straight001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1216 -1024 50" + editor { - "id" "122288" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/curb_straight001_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1216 -1024 50" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" } } -hidden +entity { - entity + "id" "122315" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/curb_straight001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1228 -1024 42" + editor { - "id" "122315" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/curb_straight001_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1228 -1024 42" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" } } -hidden +entity { - entity + "id" "122369" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/curb_straight001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1024 -1140 50" + editor { - "id" "122369" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/curb_straight001_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1024 -1140 50" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" } } -hidden +entity { - entity + "id" "122373" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/curb_straight001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1024 -1152 58" + editor { - "id" "122373" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/curb_straight001_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1024 -1152 58" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" } } -hidden +entity { - entity + "id" "122450" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/curb_straight001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1332 -1024 42" + editor { - "id" "122450" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/curb_straight001_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1332 -1024 42" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" } } -hidden +entity { - entity + "id" "122454" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/curb_straight001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1344 -1024 50" + editor { - "id" "122454" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/curb_straight001_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1344 -1024 50" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" } } entity @@ -226858,5815 +182671,5720 @@ entity editor { "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -13268]" - } -} -entity -{ - "id" "119541" - "classname" "info_player_terrorist" - "angles" "0 0 0" - "enabled" "1" - "origin" "-222.272 -3034.36 0.999985" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -12768]" - } -} -hidden -{ - entity - { - "id" "118119" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/fence_cover001_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1856 -960 64" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "118127" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/light_streetlight.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1860 -1088 64" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "118190" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "1" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/locced/bstairset_railing.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-48 -384 0" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 1000]" - } - } -} -hidden -{ - entity - { - "id" "116793" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/fence_cover001_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1864 -960 64" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "116934" - "classname" "prop_static" - "angles" "0 165 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/railing04long.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "408 -1113 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 16000]" - } - } -} -hidden -{ - entity - { - "id" "116957" - "classname" "prop_static" - "angles" "0 345 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/railing04small.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "342 -1362 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 16000]" - } - } -} -entity -{ - "id" "113281" - "classname" "info_overlay" - "angles" "0 0 0" - "BasisNormal" "-0 0 1" - "BasisOrigin" "-512 752 64" - "BasisU" "1 0 0" - "BasisV" "0 1 -0" - "EndU" "1" - "EndV" "0" - "fademindist" "-1" - "material" "teroust/arpeggio/road/strips_yellow_final/medium/stripes_yellow_full_medium" - "sides" "946" - "StartU" "0" - "StartV" "1" - "uv0" "-128 -16 0" - "uv1" "-128 16 0" - "uv2" "128 16 0" - "uv3" "128 -16 0" - "origin" "-512 752 64" - editor - { - "color" "80 150 225" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "113317" - "classname" "info_overlay" - "angles" "0 0 0" - "BasisNormal" "-0 0 1" - "BasisOrigin" "-256 752 64" - "BasisU" "1 0 0" - "BasisV" "0 1 -0" - "EndU" "1" - "EndV" "0" - "fademindist" "-1" - "material" "teroust/arpeggio/road/strips_yellow_final/medium/stripes_yellow_half_medium" - "sides" "946" - "StartU" "0" - "StartV" "1" - "uv0" "-128 -16 0" - "uv1" "-128 16 0" - "uv2" "128 16 0" - "uv3" "128 -16 0" - "origin" "-256 752 64" - editor - { - "color" "80 150 225" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "113655" - "classname" "info_overlay" - "angles" "0 0 0" - "BasisNormal" "-0 0 1" - "BasisOrigin" "-768 752 64" - "BasisU" "1 0 0" - "BasisV" "0 1 -0" - "EndU" "1" - "EndV" "0" - "fademindist" "-1" - "material" "teroust/arpeggio/road/strips_yellow_final/medium/stripes_yellow_full_medium" - "sides" "946" - "StartU" "0" - "StartV" "1" - "uv0" "-128 -16 0" - "uv1" "-128 16 0" - "uv2" "128 16 0" - "uv3" "128 -16 0" - "origin" "-768 752 64" - editor - { - "color" "80 150 225" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "113661" - "classname" "info_overlay" - "angles" "0 0 0" - "BasisNormal" "-0 0 1" - "BasisOrigin" "-1024 752 64" - "BasisU" "1 0 0" - "BasisV" "0 1 -0" - "EndU" "1" - "EndV" "0" - "fademindist" "-1" - "material" "teroust/arpeggio/road/strips_yellow_final/medium/stripes_yellow_full_medium" - "sides" "946" - "StartU" "0" - "StartV" "1" - "uv0" "-128 -16 0" - "uv1" "-128 16 0" - "uv2" "128 16 0" - "uv3" "128 -16 0" - "origin" "-1024 752 64" - editor - { - "color" "80 150 225" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -hidden -{ - entity - { - "id" "113671" - "classname" "prop_static" - "angles" "0 45 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/garbage_can001.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-608 -152 0" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 4000]" - } - } -} -hidden -{ - entity - { - "id" "113686" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/bench001.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-616 -208 0" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 4000]" - } - } -} -hidden -{ - entity - { - "id" "113795" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_nuke/wall_light_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1280 32 267.231" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 4500]" - } - } -} -hidden -{ - entity - { - "id" "113822" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_nuke/wall_light_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1296 32 267.231" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 4500]" - } - } -} -hidden -{ - entity - { - "id" "110144" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/windows/window_01a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-960 -248 204" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "110200" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/windows/window_01a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-960 -168 204" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "110427" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/railing03.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-800 -352 32" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "110454" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/railing03.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-832 -384 32" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "110484" - "classname" "prop_static" - "angles" "0 45 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/windows/window_01a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-924 -324 200" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "110520" - "classname" "prop_static" - "angles" "0 45 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/windows/window_01a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-868 -380 200" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "110524" - "classname" "prop_static" - "angles" "0 45 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/teroust/arpeggio/buildings/windows/window_01a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-924 -324 88" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "107584" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/railing01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-1048 -1020 132" - editor - { - "color" "239 252 0" - "groupid" "107639" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 5500]" - } - } -} -hidden -{ - entity - { - "id" "107615" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/railing01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-1048 -892 132" - editor - { - "color" "239 252 0" - "groupid" "107639" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 5500]" - } - } -} -hidden -{ - entity - { - "id" "107619" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/railing01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-1048 -764 132" - editor - { - "color" "239 252 0" - "groupid" "107639" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 5500]" - } - } -} -hidden -{ - entity - { - "id" "103535" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/stone_bench.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-452 -2768 0" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -entity -{ - "id" "102397" - "classname" "light" - "_light" "255 255 255 200" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_quadratic_attn" "1" - "origin" "1088 32 208" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 3500]" - } -} -entity -{ - "id" "100845" - "classname" "light" - "_light" "255 255 255 200" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_quadratic_attn" "1" - "origin" "1088 224 208" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 3500]" - } -} -hidden -{ - entity - { - "id" "97322" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/light_streetlight.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1484 -1864 64" - editor - { - "color" "187 124 0" - "groupid" "115540" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 500]" - } - } -} -hidden -{ - entity - { - "id" "95043" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_wasteland/exterior_fence002e.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1472 -1608 136" - editor - { - "color" "187 124 0" - "groupid" "115540" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "95070" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/fence_cover001_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1484 -1480 64" - editor - { - "color" "187 124 0" - "groupid" "115540" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "95089" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/fence_cover001_128.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1484 -1672 64" - editor - { - "color" "187 124 0" - "groupid" "115540" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "95238" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/fence_cover001_128.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1484 -1800 64" - editor - { - "color" "187 124 0" - "groupid" "115540" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "95270" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_wasteland/exterior_fence002e.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1500 -1609 136" - editor - { - "color" "187 124 0" - "groupid" "115540" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -entity -{ - "id" "95952" - "classname" "light" - "_light" "255 255 255 200" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_quadratic_attn" "1" - "origin" "1856 -384 192" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -hidden -{ - entity - { - "id" "91900" - "classname" "prop_static" - "angles" "0 300 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_wasteland/rock_cliff01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1120 -3104 128" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -14268]" - } - } -} -hidden -{ - entity - { - "id" "91947" - "classname" "prop_static" - "angles" "0 30 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_wasteland/rock_cliff01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1744 -3888 0" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -14268]" - } - } -} -hidden -{ - entity - { - "id" "92674" - "classname" "prop_static" - "angles" "0 255 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_tree_giant01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "992 -3840 64" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -11268]" - } - } -} -hidden -{ - entity - { - "id" "92686" - "classname" "prop_static" - "angles" "0 60 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_wasteland/rock_cliff01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2112 -3408 -96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -14268]" - } - } -} -hidden -{ - entity - { - "id" "89134" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_junk/dumpster_2.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1432 216 128" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -11768]" - } - } -} -hidden -{ - entity - { - "id" "89172" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_junk/trashcluster01a_corner.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1488 232 135" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -11768]" - } - } -} -hidden -{ - entity - { - "id" "89501" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/bench_wood_new.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-1520 -2912 -40" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -9268]" - } - } -} -hidden -{ - entity - { - "id" "89536" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/bench_wood_new.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-1520 -3120 -40" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -9268]" - } - } -} -hidden -{ - entity - { - "id" "89544" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/light_streetlight.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-1520 -3016 -40" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -8768]" - } + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13268]" } } -hidden +entity { - entity + "id" "119541" + "classname" "info_player_terrorist" + "angles" "0 0 0" + "enabled" "1" + "origin" "-222.272 -3034.36 0.999985" + editor { - "id" "89594" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/wood_fence001_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-1856 -3392 -40" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -8268]" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12768]" } } -hidden +entity { - entity + "id" "118119" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/fence_cover001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1856 -960 64" + editor { - "id" "89656" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/wood_fence001_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-1856 -3136 -48" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -8268]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } } -hidden +entity { - entity + "id" "118127" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/light_streetlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1860 -1088 64" + editor { - "id" "89660" - "classname" "prop_static" - "angles" "0 30 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/wood_fence001_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-1920 -2896 -56" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -8268]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" } } -hidden +entity { - entity + "id" "116793" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/fence_cover001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1864 -960 64" + editor { - "id" "89680" - "classname" "prop_static" - "angles" "0 10.5 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_urban/wood_fence001_256.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-2008 -2664 -72" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 -8268]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } } -hidden +entity { - entity + "id" "116934" + "classname" "prop_static" + "angles" "0 165 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/railing04long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "408 -1113 96" + editor { - "id" "89993" - "classname" "prop_static" - "angles" "0 165 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/doorarcha_new.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "736 -1272 146" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 2000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" } } entity { - "id" "77157" - "classname" "info_overlay" - "angles" "0 180 0" - "BasisNormal" "0 0 1" - "BasisOrigin" "-80 368 70" - "BasisU" "-1 8.74228e-08 0" - "BasisV" "-8.74228e-08 -1 0" - "EndU" "1" - "EndV" "0" + "id" "116957" + "classname" "prop_static" + "angles" "0 345 0" "fademindist" "-1" - "material" "concrete/street_overlay_parkingstripe" - "sides" "38009" - "StartU" "0" - "StartV" "1" - "uv0" "-64 -64 0" - "uv1" "-64 64 0" - "uv2" "64 64 0" - "uv3" "64 -64 0" - "origin" "-80 368 70" + "fadescale" "1" + "model" "models/props_urban/railing04small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "342 -1362 96" editor { - "color" "80 150 225" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 -12768]" + "logicalpos" "[0 16000]" } } entity { - "id" "77187" + "id" "113281" "classname" "info_overlay" "angles" "0 0 0" - "BasisNormal" "0 0 1" - "BasisOrigin" "-80 248 70" - "BasisU" "1 -2.13163e-14 0" - "BasisV" "2.13163e-14 1 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-512 752 64" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" "EndU" "1" "EndV" "0" "fademindist" "-1" - "material" "concrete/street_overlay_parkingstripe" - "sides" "38009" + "material" "teroust/arpeggio/road/strips_yellow_final/medium/stripes_yellow_full_medium" + "sides" "946" "StartU" "0" "StartV" "1" - "uv0" "-64 -64 0" - "uv1" "-64 64 0" - "uv2" "64 64 0" - "uv3" "64 -64 0" - "origin" "-80 248 70" + "uv0" "-128 -16 0" + "uv1" "-128 16 0" + "uv2" "128 16 0" + "uv3" "128 -16 0" + "origin" "-512 752 64" editor { "color" "80 150 225" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 -12768]" + "logicalpos" "[0 0]" } } entity { - "id" "77217" + "id" "113317" "classname" "info_overlay" "angles" "0 0 0" - "BasisNormal" "0 0 1" - "BasisOrigin" "-304 248 70" - "BasisU" "1 -2.13163e-14 0" - "BasisV" "2.13163e-14 1 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-256 752 64" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" "EndU" "1" "EndV" "0" "fademindist" "-1" - "material" "concrete/street_overlay_parkingstripe" - "sides" "38009" + "material" "teroust/arpeggio/road/strips_yellow_final/medium/stripes_yellow_half_medium" + "sides" "946" "StartU" "0" "StartV" "1" - "uv0" "-64 -64 0" - "uv1" "-64 64 0" - "uv2" "64 64 0" - "uv3" "64 -64 0" - "origin" "-304 248 70" + "uv0" "-128 -16 0" + "uv1" "-128 16 0" + "uv2" "128 16 0" + "uv3" "128 -16 0" + "origin" "-256 752 64" editor { "color" "80 150 225" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 -12768]" + "logicalpos" "[0 0]" } } entity { - "id" "77223" + "id" "113655" "classname" "info_overlay" - "angles" "0 180 0" - "BasisNormal" "0 0 1" - "BasisOrigin" "-304 368 70" - "BasisU" "-1 8.74228e-08 0" - "BasisV" "-8.74228e-08 -1 0" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-768 752 64" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" "EndU" "1" "EndV" "0" "fademindist" "-1" - "material" "concrete/street_overlay_parkingstripe" - "sides" "38009" + "material" "teroust/arpeggio/road/strips_yellow_final/medium/stripes_yellow_full_medium" + "sides" "946" "StartU" "0" "StartV" "1" - "uv0" "-64 -64 0" - "uv1" "-64 64 0" - "uv2" "64 64 0" - "uv3" "64 -64 0" - "origin" "-304 368 70" + "uv0" "-128 -16 0" + "uv1" "-128 16 0" + "uv2" "128 16 0" + "uv3" "128 -16 0" + "origin" "-768 752 64" editor { "color" "80 150 225" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 -12768]" + "logicalpos" "[0 0]" } } entity { - "id" "77301" + "id" "113661" "classname" "info_overlay" "angles" "0 0 0" - "BasisNormal" "0 1 -0" - "BasisOrigin" "-80 192 144" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-1024 752 64" "BasisU" "1 0 0" - "BasisV" "0 -0 -1" - "EndU" "0" - "EndV" "1" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" "fademindist" "-1" - "material" "decals/handyparking_s" - "sides" "" - "StartU" "1" - "StartV" "0" - "uv0" "-13.8903 -14.2836 0" - "uv1" "-13.8903 14.2836 0" - "uv2" "13.8903 14.2836 0" - "uv3" "13.8903 -14.2836 0" - "origin" "-80 192 144" + "material" "teroust/arpeggio/road/strips_yellow_final/medium/stripes_yellow_full_medium" + "sides" "946" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -16 0" + "uv1" "-128 16 0" + "uv2" "128 16 0" + "uv3" "128 -16 0" + "origin" "-1024 752 64" editor { "color" "80 150 225" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 -12268]" + "logicalpos" "[0 0]" } } entity { - "id" "75741" - "classname" "info_player_counterterrorist" - "angles" "0 255 0" - "enabled" "1" - "origin" "379.904 1496.28 113" + "id" "113671" + "classname" "prop_static" + "angles" "0 45 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/garbage_can001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-608 -152 0" editor { - "color" "220 30 220" + "color" "255 255 0" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 4000]" } } entity { - "id" "75743" - "classname" "info_player_counterterrorist" - "angles" "0 240 0" - "enabled" "1" - "origin" "448.673 1495.38 113" + "id" "113686" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/bench001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-616 -208 0" editor { - "color" "220 30 220" + "color" "255 255 0" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 500]" + "logicalpos" "[0 4000]" } } entity { - "id" "75745" - "classname" "info_player_counterterrorist" - "angles" "0 270 0" - "enabled" "1" - "origin" "298.464 1560.47 113" + "id" "113795" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/wall_light_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1280 32 267.231" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 1000]" + "logicalpos" "[0 4500]" } } entity { - "id" "75747" - "classname" "info_player_counterterrorist" - "angles" "0 285 0" - "enabled" "1" - "origin" "182.201 1569.97 113" + "id" "113822" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/wall_light_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1296 32 267.231" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 1500]" + "logicalpos" "[0 4500]" } } entity { - "id" "75749" - "classname" "info_player_counterterrorist" - "angles" "0 255 0" - "enabled" "1" - "origin" "188.708 1518.68 113" + "id" "110427" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/railing03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-800 -352 32" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 2000]" + "logicalpos" "[0 500]" } } entity { - "id" "75751" - "classname" "info_player_counterterrorist" - "angles" "0 270 0" - "enabled" "1" - "origin" "400.828 1570.89 113" + "id" "110454" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/railing03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-832 -384 32" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 2500]" + "logicalpos" "[0 500]" } } entity { - "id" "75753" - "classname" "info_player_counterterrorist" + "id" "107584" + "classname" "prop_static" "angles" "0 0 0" - "enabled" "1" - "origin" "160 1338.75 94" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/railing01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1048 -1020 132" editor { - "color" "220 30 220" + "color" "239 252 0" + "groupid" "107639" "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 3000]" - } -} -hidden -{ - entity - { - "id" "73824" - "classname" "prop_door_rotating" - "ajarangles" "0 0 0" - "angles" "0 0 0" - "axis" "1288 4 128, 1288 4 128" - "distance" "90" - "fademindist" "-1" - "fadescale" "1" - "glowcolor" "255 255 255" - "glowdist" "1024" - "hardware" "1" - "model" "models/props_downtown/metal_door_112.mdl" - "returndelay" "-1" - "skin" "0" - "spawnflags" "8192" - "speed" "300" - "origin" "1288 4 128" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} -hidden -{ - entity - { - "id" "63064" - "classname" "prop_dynamic" - "angles" "0 0 0" - "DefaultAnim" "idle" - "fademindist" "-1" - "fadescale" "1" - "MaxAnimTime" "10" - "MinAnimTime" "5" - "model" "models/props_critters/seagull_group.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "spawnflags" "0" - "origin" "2464 512 1856" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 6000]" - } - } -} -entity -{ - "id" "60234" - "classname" "func_detail" - solid - { - "id" "27978" - side - { - "id" "36726" - "plane" "(2056 -1976 256) (2048 -1968 256) (2112 -1904 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36725" - "plane" "(2120 -1912 240) (2112 -1904 240) (2048 -1968 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36724" - "plane" "(2056 -1976 240) (2048 -1968 240) (2048 -1968 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36723" - "plane" "(2112 -1904 240) (2120 -1912 240) (2120 -1912 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36722" - "plane" "(2048 -1968 240) (2112 -1904 240) (2112 -1904 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36721" - "plane" "(2120 -1912 240) (2056 -1976 240) (2056 -1976 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27971" - side - { - "id" "36732" - "plane" "(1976 -2056 256) (1968 -2048 256) (2032 -1984 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36731" - "plane" "(1968 -2048 240) (1976 -2056 240) (2040 -1992 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36730" - "plane" "(1976 -2056 240) (1968 -2048 240) (1968 -2048 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36729" - "plane" "(2032 -1984 240) (2040 -1992 240) (2040 -1992 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36728" - "plane" "(1968 -2048 240) (2032 -1984 240) (2032 -1984 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36727" - "plane" "(2040 -1992 240) (1976 -2056 240) (1976 -2056 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27955" - side - { - "id" "36738" - "plane" "(2208 -2016.01 384) (2159.99 -2064.02 384) (2079.98 -1984.02 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36737" - "plane" "(2128 -1936 256) (2080 -1984 256) (2160 -2064 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36736" - "plane" "(2080 -1984 256) (2128 -1936 256) (2128 -1936 384)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36735" - "plane" "(2208 -2016 256) (2160 -2064 256) (2160 -2064 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36734" - "plane" "(2160 -2064 256) (2080 -1984 256) (2080 -1984 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" "36733" - "plane" "(2128 -1936 256) (2208 -2016 256) (2208 -2016 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" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27953" - side - { - "id" "36744" - "plane" "(2128 -2096 384) (2080 -2144 384) (1999.99 -2064 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36743" - "plane" "(2048 -2016 256) (2000 -2064 256) (2080 -2144 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36742" - "plane" "(2000 -2064 256) (2048 -2016 256) (2047.99 -2016 384)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36741" - "plane" "(2128 -2096 256) (2080 -2144 256) (2080 -2144 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36740" - "plane" "(2080 -2144 256) (2000 -2064 256) (2000 -2064 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" "36739" - "plane" "(2048 -2016 256) (2128 -2096 256) (2128 -2096 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" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27917" - side - { - "id" "36750" - "plane" "(2047.98 -2176 192) (1983.98 -2112 192) (2111.98 -1984 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36749" - "plane" "(2176 -2048 96) (2112 -1984 96) (1984 -2112 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36748" - "plane" "(2047.99 -2176 96) (1983.99 -2112 96) (1983.98 -2112 192)" - "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" "36747" - "plane" "(2112 -1984 96) (2176 -2048 96) (2175.99 -2048 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36746" - "plane" "(1984 -2111.99 96) (2112 -1984 96) (2111.98 -1984 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36745" - "plane" "(2176 -2048 96) (2048 -2176 96) (2047.98 -2176 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27911" - side - { - "id" "36756" - "plane" "(2047.99 -2176 96) (1983.99 -2112 96) (2112 -1984 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36755" - "plane" "(2176 -2048 64) (2112 -1984 64) (1984 -2112 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36754" - "plane" "(2048 -2176 64) (1984 -2112 64) (1984 -2112 96)" - "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" "36753" - "plane" "(2112 -1984 64) (2176 -2048 64) (2176 -2048 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36752" - "plane" "(1984 -2112 64) (2112 -1984 64) (2112 -1984 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36751" - "plane" "(2176 -2048 64) (2048 -2176 64) (2048 -2176 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27919" - side - { - "id" "36762" - "plane" "(2176 -2048 192) (2144 -2016 192) (2208 -1952 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36761" - "plane" "(2240 -1984 64) (2208 -1952 64) (2144 -2016 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36760" - "plane" "(2176 -2048 64) (2144 -2016 64) (2144 -2016 192)" - "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" "36759" - "plane" "(2208 -1952 64) (2240 -1984 64) (2240 -1984 192)" - "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" "36758" - "plane" "(2144 -2016 64) (2208 -1952 64) (2208 -1952 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36757" - "plane" "(2240 -1984 64) (2176 -2048 64) (2176 -2048 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "28009" - side - { - "id" "36768" - "plane" "(1807.99 -2176 208) (1807.99 -2128 208) (1887.99 -2128 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36767" - "plane" "(1807.99 -2128 64) (1807.99 -2176 64) (1887.99 -2176 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36766" - "plane" "(1807.99 -2176 64) (1807.99 -2128 64) (1807.99 -2128 208)" - "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" "36765" - "plane" "(1887.99 -2128 64) (1887.99 -2176 64) (1887.99 -2176 208)" - "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" "36764" - "plane" "(1807.99 -2128 64) (1887.99 -2128 64) (1887.99 -2128 208)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36763" - "plane" "(1887.99 -2176 64) (1807.99 -2176 64) (1807.99 -2176 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "28104" - side - { - "id" "36774" - "plane" "(2192 -1824 544) (2192 -1728 544) (2272.02 -1728 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.3094] 0.25" - "vaxis" "[0.707107 -0.707107 0 59.5705] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36773" - "plane" "(2192 -1728 464) (2192 -1824 464) (2271.98 -1824.01 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.3094] 0.25" - "vaxis" "[0.707107 -0.707107 0 59.5705] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36772" - "plane" "(2191.99 -1824 464) (2191.99 -1728 464) (2191.99 -1728 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.581238 0.813733 0 -12.487] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36771" - "plane" "(2272 -1728 464) (2271.98 -1824.01 464) (2272 -1824 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.581238 0.813733 0 -32.2796] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36770" - "plane" "(2271.98 -1824.01 464) (2191.99 -1824 464) (2191.99 -1824 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.581238 0.813733 0 -12.5415] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36769" - "plane" "(2192 -1728 464) (2272 -1728 464) (2272.02 -1728 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.581238 0.813733 0 -12.5415] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "28085" - side - { - "id" "36780" - "plane" "(2240 -1984 544) (2175.98 -2048 544) (2096 -1968 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -63.9062] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36779" - "plane" "(2159.98 -1904.02 464) (2096 -1968 464) (2175.99 -2048 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -63.9062] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36778" - "plane" "(2096 -1968 464) (2159.98 -1904.01 464) (2159.98 -1904.01 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36777" - "plane" "(2240 -1984 464) (2175.98 -2048.01 464) (2175.98 -2048.02 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -63.9062] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36776" - "plane" "(2175.98 -2048 464) (2096 -1968 464) (2096 -1968 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36775" - "plane" "(2159.98 -1904.01 464) (2240 -1984 464) (2240 -1984.02 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "28086" - side - { - "id" "36786" - "plane" "(2216 -2008 576) (2200 -2024 576) (2120 -1944 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36785" - "plane" "(2159.98 -1904 544) (2095.99 -1968 544) (2175.98 -2048 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -63.9062] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36784" - "plane" "(2095.98 -1968 544) (2159.98 -1903.99 544) (2135.98 -1928 576)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36783" - "plane" "(2240 -1983.99 544) (2175.98 -2048 544) (2200 -2024 576)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -63.9062] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36782" - "plane" "(2175.99 -2048 544) (2095.98 -1968 544) (2120 -1944 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36781" - "plane" "(2216 -2008 576) (2135.98 -1928 576) (2159.97 -1903.99 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" } - solid +} +entity +{ + "id" "107615" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/railing01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1048 -892 132" + editor { - "id" "28105" - side - { - "id" "36792" - "plane" "(2192 -1792 576) (2192 -1760 576) (2271.99 -1760 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.707107 0.707107 0 -28.7176] 0.25" - "vaxis" "[0.707107 -0.707107 0 28.7839] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36791" - "plane" "(2192 -1728 544) (2192 -1824 544) (2271.99 -1824 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.3094] 0.25" - "vaxis" "[0.707107 -0.707107 0 59.5705] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36790" - "plane" "(2191.99 -1824 544) (2191.99 -1728 544) (2191.99 -1760 576)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.581238 0.813733 0 -12.487] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36789" - "plane" "(2271.99 -1728 544) (2271.99 -1824 544) (2271.99 -1792 576)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.581238 0.813733 0 -32.2796] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36788" - "plane" "(2271.99 -1824 544) (2191.99 -1824 544) (2192 -1792 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.581238 0.813733 0 -12.5415] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36787" - "plane" "(2192 -1728 544) (2271.99 -1728 544) (2271.99 -1760 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.581238 0.813733 0 -12.5415] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "239 252 0" + "groupid" "107639" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" } - solid +} +entity +{ + "id" "107619" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/railing01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1048 -764 132" + editor { - "id" "28089" - side - { - "id" "36798" - "plane" "(2088 -2136 576) (2072 -2152 576) (1992 -2072 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36797" - "plane" "(2032 -2032 544) (1968 -2096 544) (2047.98 -2176 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36796" - "plane" "(1968 -2096 544) (2032 -2032 544) (2008 -2056 576)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36795" - "plane" "(2112 -2112 544) (2048 -2176 544) (2072 -2152 576)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36794" - "plane" "(2048 -2176 544) (1968 -2096 544) (1992 -2072 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36793" - "plane" "(2088 -2136 576) (2008 -2056 576) (2032 -2032 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "239 252 0" + "groupid" "107639" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" } - solid +} +entity +{ + "id" "103535" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/stone_bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-452 -2768 0" + editor { - "id" "28074" - side - { - "id" "36804" - "plane" "(2112 -2112 544) (2048 -2176 544) (1968 -2096 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36803" - "plane" "(2031.99 -2032 464) (1968 -2096 464) (2048 -2176 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36802" - "plane" "(1968 -2096 464) (2032 -2032 464) (2032 -2032 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36801" - "plane" "(2112 -2112 464) (2048 -2176 464) (2048 -2176 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36800" - "plane" "(2048 -2176 464) (1968 -2096 464) (1968 -2096 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36799" - "plane" "(2032 -2032 464) (2112 -2112 464) (2112 -2112 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" } - solid +} +entity +{ + "id" "102397" + "classname" "light" + "_light" "255 255 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "1088 32 208" + editor { - "id" "28091" - side - { - "id" "36810" - "plane" "(1632 -2208 576) (1600 -2208 576) (1600 -2128 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.707107 -0.707107 0 31.0914] 0.25" - "vaxis" "[-0.707107 -0.707107 0 31.025] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36809" - "plane" "(1664 -2128 544) (1568 -2128 544) (1568 -2208 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 4.67599] 0.25" - "vaxis" "[-0.707107 -0.707107 0 42.5581] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36808" - "plane" "(1568 -2128 544) (1664 -2128 544) (1632 -2128 576)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.813733 -0.581238 0 30.429] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36807" - "plane" "(1664 -2208 544) (1568 -2208 544) (1600 -2208 576)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.813733 -0.581238 0 19.7822] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36806" - "plane" "(1568 -2208 544) (1568 -2128 544) (1600 -2128 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.813733 0.581238 0 -30.3526] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36805" - "plane" "(1664 -2128 544) (1664 -2208 544) (1632 -2208 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.813733 0.581238 0 -30.3526] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" } - solid +} +entity +{ + "id" "100845" + "classname" "light" + "_light" "255 255 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "1088 224 208" + editor { - "id" "28090" - side - { - "id" "36816" - "plane" "(1663.99 -2208 544) (1567.98 -2208 544) (1568 -2128 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 4.67599] 0.25" - "vaxis" "[-0.707107 -0.707107 0 42.5581] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36815" - "plane" "(1663.99 -2128 464) (1568 -2128 464) (1567.98 -2207.99 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 4.67599] 0.25" - "vaxis" "[-0.707107 -0.707107 0 42.5581] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36814" - "plane" "(1568 -2128 464) (1663.99 -2128 464) (1663.99 -2128 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.813733 -0.581238 0 30.429] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36813" - "plane" "(1663.99 -2208 464) (1567.98 -2207.99 464) (1567.98 -2208 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.813733 -0.581238 0 19.7822] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36812" - "plane" "(1567.98 -2207.99 464) (1568 -2128 464) (1568 -2128 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.813733 0.581238 0 -30.3526] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36811" - "plane" "(1663.99 -2128 464) (1663.99 -2208 464) (1663.99 -2208.01 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.813733 0.581238 0 -30.3526] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" } - solid +} +entity +{ + "id" "97322" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/light_streetlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1484 -1864 64" + editor { - "id" "28019" - side - { - "id" "36822" - "plane" "(1536 -2176 464) (1456 -2096 464) (1919.99 -2096 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36821" - "plane" "(1472 -2112 448) (1536 -2176 448) (1919.98 -2176 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36820" - "plane" "(1536 -2176 448) (1472 -2112 448) (1456 -2096 464)" - "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" "36819" - "plane" "(1919.99 -2112 448) (1919.99 -2176 448) (1919.99 -2176 464)" - "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" "36818" - "plane" "(1472 -2112 448) (1919.99 -2112 448) (1919.99 -2096 464)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36817" - "plane" "(1919.99 -2176 448) (1536 -2176 448) (1536 -2176 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "187 124 0" + "groupid" "115540" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" } - solid +} +entity +{ + "id" "95043" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_wasteland/exterior_fence002e.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1472 -1608 136" + editor { - "id" "28023" - side - { - "id" "36828" - "plane" "(1920 -2176 464) (1920 -2096 464) (2159.99 -1856 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36827" - "plane" "(2240 -1856 448) (2176 -1856 448) (1920 -2112 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36826" - "plane" "(1919.99 -2176 448) (1919.99 -2112 448) (1919.99 -2096 464)" - "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" "36825" - "plane" "(2176 -1856 448) (2240 -1856 448) (2240 -1856 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36824" - "plane" "(2159.99 -1856 464) (1919.99 -2096 464) (1919.99 -2112 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36823" - "plane" "(2240 -1856 448) (1919.99 -2176 448) (1919.99 -2176 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "187 124 0" + "groupid" "115540" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "95070" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/fence_cover001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1484 -1480 64" + editor { - "id" "44306" - side - { - "id" "36834" - "plane" "(2239.99 -1856 464) (2160 -1856 464) (2160 -1664 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0.046875] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36833" - "plane" "(2176 -1664 448) (2176 -1856 448) (2239.99 -1856 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0.046875] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36832" - "plane" "(2239.99 -1856 448) (2176 -1856 448) (2160 -1856 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36831" - "plane" "(2176 -1856 448) (2176 -1664 448) (2160 -1664 464)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36830" - "plane" "(2239.99 -1664 448) (2239.99 -1856 448) (2239.99 -1856 464)" - "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" "36829" - "plane" "(2176 -1664 448) (2239.99 -1664 448) (2239.99 -1664 464)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "187 124 0" + "groupid" "115540" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "95089" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/fence_cover001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1484 -1672 64" + editor { - "id" "27998" - side - { - "id" "36840" - "plane" "(2167.99 -1856 448) (2167.99 -1840 448) (2175.99 -1840 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36839" - "plane" "(2167.99 -1840 64) (2167.99 -1856 64) (2175.99 -1856 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36838" - "plane" "(2167.99 -1856 64) (2167.99 -1840 64) (2167.99 -1840 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36837" - "plane" "(2175.99 -1840 64) (2175.99 -1856 64) (2175.99 -1856 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36836" - "plane" "(2167.98 -1840 64) (2175.99 -1840 64) (2175.99 -1840 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36835" - "plane" "(2175.99 -1856 64) (2167.99 -1856 64) (2167.98 -1856 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "187 124 0" + "groupid" "115540" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "95238" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/fence_cover001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1484 -1800 64" + editor { - "id" "27989" - side - { - "id" "36846" - "plane" "(1904 -2112 448) (1904 -2104 448) (1919.99 -2104 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36845" - "plane" "(1904 -2104 64) (1904 -2112 64) (1919.99 -2112 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36844" - "plane" "(1903.99 -2112 64) (1903.99 -2104 64) (1903.99 -2104 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36843" - "plane" "(1919.99 -2104 64) (1919.99 -2112 64) (1919.99 -2112 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36842" - "plane" "(1904 -2104 64) (1919.99 -2104 64) (1919.99 -2104 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36841" - "plane" "(1919.99 -2112 64) (1903.99 -2112 64) (1904 -2112 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "187 124 0" + "groupid" "115540" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } +} +entity +{ + "id" "95270" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_wasteland/exterior_fence002e.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1500 -1609 136" editor { - "color" "0 180 0" - "visgroupid" "18" + "color" "187 124 0" + "groupid" "115540" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 1500]" + "logicalpos" "[0 0]" } } entity { - "id" "60446" - "classname" "func_detail" - solid + "id" "95952" + "classname" "light" + "_light" "255 255 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "1856 -384 192" + editor { - "id" "32205" - side - { - "id" "37101" - "plane" "(0 -3200 288) (64 -3200 288) (128 -3136 288)" - "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" "37100" - "plane" "(64 -3200 288) (0 -3200 288) (64 -3200 384)" - "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" "37099" - "plane" "(128 -3072 288) (128 -3136 288) (128 -3136 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" "37098" - "plane" "(64 -3200 384) (0 -3200 288) (128 -3072 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37097" - "plane" "(128 -3136 384) (128 -3136 288) (64 -3200 288)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "91900" + "classname" "prop_static" + "angles" "0 300 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_wasteland/rock_cliff01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1120 -3104 128" + editor { - "id" "32207" - side - { - "id" "37106" - "plane" "(128 -3072 288) (128 -3136 288) (320 -3136 288)" - "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" "37105" - "plane" "(128 -3136 288) (128 -3072 288) (128 -3136 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" "37104" - "plane" "(320 -3136 384) (320 -3072 288) (320 -3136 288)" - "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" "37103" - "plane" "(128 -3136 384) (128 -3072 288) (320 -3072 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37102" - "plane" "(320 -3136 384) (320 -3136 288) (128 -3136 288)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14268]" } - solid +} +entity +{ + "id" "91947" + "classname" "prop_static" + "angles" "0 30 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_wasteland/rock_cliff01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1744 -3888 0" + editor { - "id" "32268" - side - { - "id" "37112" - "plane" "(176 -3136 352) (176 -3064 352) (192 -3064 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37111" - "plane" "(176 -3064 288) (176 -3136 288) (192 -3136 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37110" - "plane" "(176 -3136 288) (176 -3064 288) (176 -3064 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37109" - "plane" "(192 -3064 288) (192 -3136 288) (192 -3136 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37108" - "plane" "(176 -3064 288) (192 -3064 288) (192 -3064 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37107" - "plane" "(192 -3136 288) (176 -3136 288) (176 -3136 352)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14268]" } - solid +} +entity +{ + "id" "92674" + "classname" "prop_static" + "angles" "0 255 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_foliage/urban_tree_giant01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "992 -3840 64" + editor { - "id" "32267" - side - { - "id" "37118" - "plane" "(192 -3136 336) (192 -3072 336) (240 -3072 336)" - "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" "37117" - "plane" "(192 -3072 288) (192 -3136 288) (240 -3136 288)" - "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" "37116" - "plane" "(192 -3136 288) (192 -3072 288) (192 -3072 336)" - "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" "37115" - "plane" "(240 -3072 288) (240 -3136 288) (240 -3136 336)" - "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" "37114" - "plane" "(192 -3072 288) (240 -3072 288) (240 -3072 336)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37113" - "plane" "(240 -3136 288) (192 -3136 288) (192 -3136 336)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" } - solid +} +entity +{ + "id" "92686" + "classname" "prop_static" + "angles" "0 60 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_wasteland/rock_cliff01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2112 -3408 -96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14268]" + } +} +entity +{ + "id" "89134" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_junk/dumpster_2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1432 216 128" + editor { - "id" "32270" - side - { - "id" "37124" - "plane" "(240 -3136 352) (240 -3064 352) (256 -3064 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37123" - "plane" "(240 -3064 288) (240 -3136 288) (256 -3136 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37122" - "plane" "(240 -3136 288) (240 -3064 288) (240 -3064 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37121" - "plane" "(256 -3064 288) (256 -3136 288) (256 -3136 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37120" - "plane" "(240 -3064 288) (256 -3064 288) (256 -3064 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37119" - "plane" "(256 -3136 288) (240 -3136 288) (240 -3136 352)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11768]" } - solid +} +entity +{ + "id" "89172" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_junk/trashcluster01a_corner.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1488 232 135" + editor { - "id" "32269" - side - { - "id" "37130" - "plane" "(192 -3136 352) (192 -3064 352) (240 -3064 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37129" - "plane" "(192 -3064 336) (192 -3136 336) (240 -3136 336)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37128" - "plane" "(192 -3136 336) (192 -3064 336) (192 -3064 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37127" - "plane" "(240 -3064 336) (240 -3136 336) (240 -3136 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37126" - "plane" "(192 -3064 336) (240 -3064 336) (240 -3064 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37125" - "plane" "(240 -3136 336) (192 -3136 336) (192 -3136 352)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11768]" } - solid +} +entity +{ + "id" "89501" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/bench_wood_new.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1520 -2912 -40" + editor { - "id" "32188" - side - { - "id" "37135" - "plane" "(128 -3072 288) (112 -3056 288) (320 -3056 288)" - "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" "37134" - "plane" "(112 -3056 288) (128 -3072 288) (128 -3072 272)" - "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" "37133" - "plane" "(320 -3072 272) (320 -3072 288) (320 -3056 288)" - "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" "37132" - "plane" "(128 -3072 272) (128 -3072 288) (320 -3072 288)" - "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" "37131" - "plane" "(320 -3056 288) (112 -3056 288) (128 -3072 272)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9268]" } - solid +} +entity +{ + "id" "89536" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/bench_wood_new.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1520 -3120 -40" + editor { - "id" "32186" - side - { - "id" "37140" - "plane" "(0 -3200 288) (-16 -3184 288) (112 -3056 288)" - "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" "37139" - "plane" "(-16 -3184 288) (0 -3200 288) (0 -3200 272)" - "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" "37138" - "plane" "(128 -3072 272) (128 -3072 288) (112 -3056 288)" - "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" "37137" - "plane" "(0 -3200 272) (0 -3200 288) (128 -3072 288)" - "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" "37136" - "plane" "(112 -3056 288) (-16 -3184 288) (0 -3200 272)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9268]" } - solid +} +entity +{ + "id" "89544" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/light_streetlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1520 -3016 -40" + editor { - "id" "32181" - side - { - "id" "37145" - "plane" "(0 -3456 288) (-16 -3456 288) (-16 -3184 288)" - "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" "37144" - "plane" "(-16 -3456 288) (0 -3456 288) (0 -3456 272)" - "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" "37143" - "plane" "(0 -3200 272) (0 -3200 288) (-16 -3184 288)" - "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" "37142" - "plane" "(0 -3456 272) (0 -3456 288) (0 -3200 288)" - "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" "37141" - "plane" "(-16 -3184 288) (-16 -3456 288) (0 -3456 272)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8768]" } - solid +} +entity +{ + "id" "89594" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/wood_fence001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1856 -3392 -40" + editor { - "id" "32201" - side - { - "id" "37150" - "plane" "(64 -3200 288) (0 -3200 288) (0 -3520 288)" - "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" "37149" - "plane" "(64 -3520 288) (0 -3520 288) (64 -3520 384)" - "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" "37148" - "plane" "(64 -3200 384) (0 -3200 288) (64 -3200 288)" - "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" "37147" - "plane" "(64 -3520 384) (0 -3520 288) (0 -3200 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37146" - "plane" "(64 -3200 384) (64 -3200 288) (64 -3520 288)" - "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" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8268]" } - solid +} +entity +{ + "id" "89656" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/wood_fence001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1856 -3136 -48" + editor { - "id" "32192" - side - { - "id" "37155" - "plane" "(-416 -3456 288) (-416 -3520 288) (64 -3520 288)" - "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" "37154" - "plane" "(-416 -3520 288) (-416 -3456 288) (-416 -3520 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" "37153" - "plane" "(64 -3520 384) (64 -3456 288) (64 -3520 288)" - "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" "37152" - "plane" "(-416 -3520 384) (-416 -3456 288) (64 -3456 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37151" - "plane" "(64 -3520 384) (64 -3520 288) (-416 -3520 288)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8268]" } - solid +} +entity +{ + "id" "89660" + "classname" "prop_static" + "angles" "0 30 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/wood_fence001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1920 -2896 -56" + editor { - "id" "32173" - side - { - "id" "37160" - "plane" "(-320 -3456 288) (-320 -3440 288) (0 -3440 288)" - "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" "37159" - "plane" "(-320 -3440 288) (-320 -3456 288) (-320 -3456 272)" - "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" "37158" - "plane" "(0 -3456 272) (0 -3456 288) (0 -3440 288)" - "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" "37157" - "plane" "(-320 -3456 272) (-320 -3456 288) (0 -3456 288)" - "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" "37156" - "plane" "(0 -3456 272) (0 -3440 288) (-320 -3440 288)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8268]" } - solid +} +entity +{ + "id" "89680" + "classname" "prop_static" + "angles" "0 10.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_urban/wood_fence001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2008 -2664 -72" + editor { - "id" "32215" - side - { - "id" "37166" - "plane" "(-64 -3520 352) (-64 -3448 352) (-48 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37165" - "plane" "(-64 -3448 288) (-64 -3520 288) (-48 -3520 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37164" - "plane" "(-64 -3520 288) (-64 -3448 288) (-64 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37163" - "plane" "(-48 -3448 288) (-48 -3520 288) (-48 -3520 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37162" - "plane" "(-64 -3448 288) (-48 -3448 288) (-48 -3448 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37161" - "plane" "(-48 -3520 288) (-64 -3520 288) (-64 -3520 352)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8268]" } - solid +} +entity +{ + "id" "89993" + "classname" "prop_static" + "angles" "0 165 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/doorarcha_new.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "736 -1272 146" + editor { - "id" "32216" - side - { - "id" "37172" - "plane" "(-112 -3520 352) (-112 -3448 352) (-64 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37171" - "plane" "(-112 -3448 336) (-112 -3520 336) (-64 -3520 336)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37170" - "plane" "(-112 -3520 336) (-112 -3448 336) (-112 -3448 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37169" - "plane" "(-64 -3448 336) (-64 -3520 336) (-64 -3520 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37168" - "plane" "(-112 -3448 336) (-64 -3448 336) (-64 -3448 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37167" - "plane" "(-64 -3520 336) (-112 -3520 336) (-112 -3520 352)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 2000]" } - solid +} +entity +{ + "id" "77157" + "classname" "info_overlay" + "angles" "0 180 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "-80 368 70" + "BasisU" "-1 8.74228e-08 0" + "BasisV" "-8.74228e-08 -1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "concrete/street_overlay_parkingstripe" + "sides" "38009" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-80 368 70" + editor { - "id" "32219" - side - { - "id" "37178" - "plane" "(-112 -3520 336) (-112 -3456 336) (-64 -3456 336)" - "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" "37177" - "plane" "(-112 -3456 288) (-112 -3520 288) (-64 -3520 288)" - "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" "37176" - "plane" "(-112 -3520 288) (-112 -3456 288) (-112 -3456 336)" - "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" "37175" - "plane" "(-64 -3456 288) (-64 -3520 288) (-64 -3520 336)" - "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" "37174" - "plane" "(-112 -3456 288) (-64 -3456 288) (-64 -3456 336)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37173" - "plane" "(-64 -3520 288) (-112 -3520 288) (-112 -3520 336)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12768]" } - solid +} +entity +{ + "id" "77187" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "-80 248 70" + "BasisU" "1 -2.13163e-14 0" + "BasisV" "2.13163e-14 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "concrete/street_overlay_parkingstripe" + "sides" "38009" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-80 248 70" + editor { - "id" "32209" - side - { - "id" "37184" - "plane" "(-128 -3520 352) (-128 -3448 352) (-112 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37183" - "plane" "(-128 -3448 288) (-128 -3520 288) (-112 -3520 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37182" - "plane" "(-128 -3520 288) (-128 -3448 288) (-128 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37181" - "plane" "(-112 -3448 288) (-112 -3520 288) (-112 -3520 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37180" - "plane" "(-128 -3448 288) (-112 -3448 288) (-112 -3448 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37179" - "plane" "(-112 -3520 288) (-128 -3520 288) (-128 -3520 352)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12768]" } - solid +} +entity +{ + "id" "77217" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "-304 248 70" + "BasisU" "1 -2.13163e-14 0" + "BasisV" "2.13163e-14 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "concrete/street_overlay_parkingstripe" + "sides" "38009" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-304 248 70" + editor { - "id" "32250" - side - { - "id" "37190" - "plane" "(-272 -3520 352) (-272 -3448 352) (-256 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37189" - "plane" "(-272 -3448 288) (-272 -3520 288) (-256 -3520 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37188" - "plane" "(-272 -3520 288) (-272 -3448 288) (-272 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37187" - "plane" "(-256 -3448 288) (-256 -3520 288) (-256 -3520 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37186" - "plane" "(-272 -3448 288) (-256 -3448 288) (-256 -3448 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37185" - "plane" "(-256 -3520 288) (-272 -3520 288) (-272 -3520 352)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12768]" } - solid +} +entity +{ + "id" "77223" + "classname" "info_overlay" + "angles" "0 180 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "-304 368 70" + "BasisU" "-1 8.74228e-08 0" + "BasisV" "-8.74228e-08 -1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "concrete/street_overlay_parkingstripe" + "sides" "38009" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-304 368 70" + editor { - "id" "32247" - side - { - "id" "37196" - "plane" "(-256 -3520 336) (-256 -3456 336) (-208 -3456 336)" - "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" "37195" - "plane" "(-256 -3456 288) (-256 -3520 288) (-208 -3520 288)" - "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" "37194" - "plane" "(-256 -3520 288) (-256 -3456 288) (-256 -3456 336)" - "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" "37193" - "plane" "(-208 -3456 288) (-208 -3520 288) (-208 -3520 336)" - "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" "37192" - "plane" "(-256 -3456 288) (-208 -3456 288) (-208 -3456 336)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37191" - "plane" "(-208 -3520 288) (-256 -3520 288) (-256 -3520 336)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12768]" + } +} +entity +{ + "id" "77301" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 1 -0" + "BasisOrigin" "-80 192 144" + "BasisU" "1 0 0" + "BasisV" "0 -0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/handyparking_s" + "sides" "" + "StartU" "1" + "StartV" "0" + "uv0" "-13.8903 -14.2836 0" + "uv1" "-13.8903 14.2836 0" + "uv2" "13.8903 14.2836 0" + "uv3" "13.8903 -14.2836 0" + "origin" "-80 192 144" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" } - solid +} +entity +{ + "id" "75741" + "classname" "info_player_counterterrorist" + "angles" "0 255 0" + "enabled" "1" + "origin" "379.904 1496.28 113" + editor { - "id" "32248" - side - { - "id" "37202" - "plane" "(-208 -3520 352) (-208 -3448 352) (-192 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37201" - "plane" "(-208 -3448 288) (-208 -3520 288) (-192 -3520 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37200" - "plane" "(-208 -3520 288) (-208 -3448 288) (-208 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37199" - "plane" "(-192 -3448 288) (-192 -3520 288) (-192 -3520 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37198" - "plane" "(-208 -3448 288) (-192 -3448 288) (-192 -3448 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37197" - "plane" "(-192 -3520 288) (-208 -3520 288) (-208 -3520 352)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "75743" + "classname" "info_player_counterterrorist" + "angles" "0 240 0" + "enabled" "1" + "origin" "448.673 1495.38 113" + editor { - "id" "32249" - side - { - "id" "37208" - "plane" "(-256 -3520 352) (-256 -3448 352) (-208 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37207" - "plane" "(-256 -3448 336) (-256 -3520 336) (-208 -3520 336)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37206" - "plane" "(-256 -3520 336) (-256 -3448 336) (-256 -3448 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37205" - "plane" "(-208 -3448 336) (-208 -3520 336) (-208 -3520 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37204" - "plane" "(-256 -3448 336) (-208 -3448 336) (-208 -3448 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37203" - "plane" "(-208 -3520 336) (-256 -3520 336) (-256 -3520 352)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" } - solid +} +entity +{ + "id" "75745" + "classname" "info_player_counterterrorist" + "angles" "0 270 0" + "enabled" "1" + "origin" "298.464 1560.47 113" + editor { - "id" "32280" - side - { - "id" "37213" - "plane" "(-320 -3264 288) (-416 -3264 288) (-416 -3520 288)" - "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" "37212" - "plane" "(-416 -3264 288) (-320 -3264 288) (-416 -3264 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37211" - "plane" "(-416 -3520 416) (-320 -3520 288) (-416 -3520 288)" - "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" "37210" - "plane" "(-416 -3264 416) (-320 -3264 288) (-320 -3520 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37209" - "plane" "(-416 -3520 416) (-416 -3520 288) (-416 -3264 288)" - "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" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" } - solid +} +entity +{ + "id" "75747" + "classname" "info_player_counterterrorist" + "angles" "0 285 0" + "enabled" "1" + "origin" "182.201 1569.97 113" + editor { - "id" "32292" - side - { - "id" "37219" - "plane" "(-448 -3520 416) (-448 -3264 416) (-416 -3264 416)" - "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" "37218" - "plane" "(-448 -3264 288) (-448 -3520 288) (-416 -3520 288)" - "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" "37217" - "plane" "(-448 -3520 288) (-448 -3264 288) (-448 -3264 416)" - "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" "37216" - "plane" "(-416 -3264 288) (-416 -3520 288) (-416 -3520 416)" - "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" "37215" - "plane" "(-448 -3264 288) (-416 -3264 288) (-416 -3264 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37214" - "plane" "(-416 -3520 288) (-448 -3520 288) (-448 -3520 416)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" } - solid +} +entity +{ + "id" "75749" + "classname" "info_player_counterterrorist" + "angles" "0 255 0" + "enabled" "1" + "origin" "188.708 1518.68 113" + editor { - "id" "32288" - side - { - "id" "37224" - "plane" "(-448 -3264 288) (-544 -3264 288) (-544 -3520 288)" - "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" "37223" - "plane" "(-448 -3264 416) (-544 -3264 288) (-448 -3264 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37222" - "plane" "(-448 -3520 288) (-544 -3520 288) (-448 -3520 416)" - "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" "37221" - "plane" "(-448 -3520 416) (-544 -3520 288) (-544 -3264 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37220" - "plane" "(-448 -3264 416) (-448 -3264 288) (-448 -3520 288)" - "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" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" } - solid +} +entity +{ + "id" "75751" + "classname" "info_player_counterterrorist" + "angles" "0 270 0" + "enabled" "1" + "origin" "400.828 1570.89 113" + editor { - "id" "32383" - side - { - "id" "37229" - "plane" "(-1024 -3264 192) (-1024 -3360 192) (-704 -3360 192)" - "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" "37228" - "plane" "(-1024 -3360 192) (-1024 -3264 192) (-1024 -3360 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" "37227" - "plane" "(-704 -3360 320) (-704 -3264 192) (-704 -3360 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37226" - "plane" "(-1024 -3360 320) (-1024 -3264 192) (-704 -3264 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37225" - "plane" "(-704 -3360 320) (-704 -3360 192) (-1024 -3360 192)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" } - solid +} +entity +{ + "id" "75753" + "classname" "info_player_counterterrorist" + "angles" "0 0 0" + "enabled" "1" + "origin" "160 1338.75 94" + editor { - "id" "32388" - side - { - "id" "37234" - "plane" "(-1024 -3424 192) (-1024 -3520 192) (-704 -3520 192)" - "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" "37233" - "plane" "(-1024 -3424 320) (-1024 -3520 192) (-1024 -3424 192)" - "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" "37232" - "plane" "(-704 -3424 192) (-704 -3520 192) (-704 -3424 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37231" - "plane" "(-704 -3424 320) (-704 -3520 192) (-1024 -3520 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37230" - "plane" "(-1024 -3424 320) (-1024 -3424 192) (-704 -3424 192)" - "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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" } - solid +} +entity +{ + "id" "73824" + "classname" "prop_door_rotating" + "ajarangles" "0 0 0" + "angles" "0 0 0" + "axis" "1288 4 128, 1288 4 128" + "distance" "90" + "fademindist" "-1" + "fadescale" "1" + "glowcolor" "255 255 255" + "glowdist" "1024" + "hardware" "1" + "model" "models/props_downtown/metal_door_112.mdl" + "returndelay" "-1" + "skin" "0" + "spawnflags" "8192" + "speed" "300" + "origin" "1288 4 128" + editor { - "id" "32394" - side - { - "id" "37240" - "plane" "(-1024 -3424 320) (-1024 -3360 320) (-704 -3360 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37239" - "plane" "(-1024 -3360 192) (-1024 -3424 192) (-704 -3424 192)" - "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" "37238" - "plane" "(-1024 -3424 192) (-1024 -3360 192) (-1024 -3360 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" "37237" - "plane" "(-704 -3360 192) (-704 -3424 192) (-704 -3424 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "63064" + "classname" "prop_dynamic" + "angles" "0 0 0" + "DefaultAnim" "idle" + "fademindist" "-1" + "fadescale" "1" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_critters/seagull_group.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "origin" "2464 512 1856" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "60234" + "classname" "func_detail" + hidden { - "id" "37236" - "plane" "(-1024 -3360 192) (-704 -3360 192) (-704 -3360 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" + solid + { + "id" "27978" + side + { + "id" "36726" + "plane" "(2056 -1976 256) (2048 -1968 256) (2112 -1904 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36725" + "plane" "(2120 -1912 240) (2112 -1904 240) (2048 -1968 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36724" + "plane" "(2056 -1976 240) (2048 -1968 240) (2048 -1968 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36723" + "plane" "(2112 -1904 240) (2120 -1912 240) (2120 -1912 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36722" + "plane" "(2048 -1968 240) (2112 -1904 240) (2112 -1904 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36721" + "plane" "(2120 -1912 240) (2056 -1976 240) (2056 -1976 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37235" - "plane" "(-704 -3424 192) (-1024 -3424 192) (-1024 -3424 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" + solid + { + "id" "27971" + side + { + "id" "36732" + "plane" "(1976 -2056 256) (1968 -2048 256) (2032 -1984 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36731" + "plane" "(1968 -2048 240) (1976 -2056 240) (2040 -1992 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36730" + "plane" "(1976 -2056 240) (1968 -2048 240) (1968 -2048 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36729" + "plane" "(2032 -1984 240) (2040 -1992 240) (2040 -1992 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36728" + "plane" "(1968 -2048 240) (2032 -1984 240) (2032 -1984 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36727" + "plane" "(2040 -1992 240) (1976 -2056 240) (1976 -2056 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - editor + hidden { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" + solid + { + "id" "27955" + side + { + "id" "36738" + "plane" "(2208 -2016.01 384) (2159.99 -2064.02 384) (2079.98 -1984.02 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36737" + "plane" "(2128 -1936 256) (2080 -1984 256) (2160 -2064 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36736" + "plane" "(2080 -1984 256) (2128 -1936 256) (2128 -1936 384)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36735" + "plane" "(2208 -2016 256) (2160 -2064 256) (2160 -2064 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36734" + "plane" "(2160 -2064 256) (2080 -1984 256) (2080 -1984 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" "36733" + "plane" "(2128 -1936 256) (2208 -2016 256) (2208 -2016 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - } - solid - { - "id" "33822" - side + hidden { - "id" "37245" - "plane" "(-256 -2752 384) (-256 -2752 256) (-256 -2432 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "27953" + side + { + "id" "36744" + "plane" "(2128 -2096 384) (2080 -2144 384) (1999.99 -2064 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36743" + "plane" "(2048 -2016 256) (2000 -2064 256) (2080 -2144 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36742" + "plane" "(2000 -2064 256) (2048 -2016 256) (2047.99 -2016 384)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36741" + "plane" "(2128 -2096 256) (2080 -2144 256) (2080 -2144 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36740" + "plane" "(2080 -2144 256) (2000 -2064 256) (2000 -2064 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" "36739" + "plane" "(2048 -2016 256) (2128 -2096 256) (2128 -2096 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37244" - "plane" "(0 -2432 256) (-256 -2432 256) (-256 -2752 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "27917" + side + { + "id" "36750" + "plane" "(2047.98 -2176 192) (1983.98 -2112 192) (2111.98 -1984 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36749" + "plane" "(2176 -2048 96) (2112 -1984 96) (1984 -2112 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36748" + "plane" "(2047.99 -2176 96) (1983.99 -2112 96) (1983.98 -2112 192)" + "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" "36747" + "plane" "(2112 -1984 96) (2176 -2048 96) (2175.99 -2048 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36746" + "plane" "(1984 -2111.99 96) (2112 -1984 96) (2111.98 -1984 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36745" + "plane" "(2176 -2048 96) (2048 -2176 96) (2047.98 -2176 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37243" - "plane" "(-256 -2432 384) (-256 -2432 256) (0 -2432 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "27911" + side + { + "id" "36756" + "plane" "(2047.99 -2176 96) (1983.99 -2112 96) (2112 -1984 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36755" + "plane" "(2176 -2048 64) (2112 -1984 64) (1984 -2112 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36754" + "plane" "(2048 -2176 64) (1984 -2112 64) (1984 -2112 96)" + "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" "36753" + "plane" "(2112 -1984 64) (2176 -2048 64) (2176 -2048 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36752" + "plane" "(1984 -2112 64) (2112 -1984 64) (2112 -1984 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36751" + "plane" "(2176 -2048 64) (2048 -2176 64) (2048 -2176 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37242" - "plane" "(0 -2752 256) (-256 -2752 256) (-256 -2752 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "27919" + side + { + "id" "36762" + "plane" "(2176 -2048 192) (2144 -2016 192) (2208 -1952 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36761" + "plane" "(2240 -1984 64) (2208 -1952 64) (2144 -2016 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36760" + "plane" "(2176 -2048 64) (2144 -2016 64) (2144 -2016 192)" + "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" "36759" + "plane" "(2208 -1952 64) (2240 -1984 64) (2240 -1984 192)" + "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" "36758" + "plane" "(2144 -2016 64) (2208 -1952 64) (2208 -1952 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36757" + "plane" "(2240 -1984 64) (2176 -2048 64) (2176 -2048 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37241" - "plane" "(-256 -2752 384) (-256 -2432 384) (0 -2432 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "28009" + side + { + "id" "36768" + "plane" "(1807.99 -2176 208) (1807.99 -2128 208) (1887.99 -2128 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36767" + "plane" "(1807.99 -2128 64) (1807.99 -2176 64) (1887.99 -2176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36766" + "plane" "(1807.99 -2176 64) (1807.99 -2128 64) (1807.99 -2128 208)" + "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" "36765" + "plane" "(1887.99 -2128 64) (1887.99 -2176 64) (1887.99 -2176 208)" + "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" "36764" + "plane" "(1807.99 -2128 64) (1887.99 -2128 64) (1887.99 -2128 208)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36763" + "plane" "(1887.99 -2176 64) (1807.99 -2176 64) (1807.99 -2176 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - editor + hidden { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" + solid + { + "id" "28104" + side + { + "id" "36774" + "plane" "(2192 -1824 544) (2192 -1728 544) (2272.02 -1728 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.3094] 0.25" + "vaxis" "[0.707107 -0.707107 0 59.5705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36773" + "plane" "(2192 -1728 464) (2192 -1824 464) (2271.98 -1824.01 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.3094] 0.25" + "vaxis" "[0.707107 -0.707107 0 59.5705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36772" + "plane" "(2191.99 -1824 464) (2191.99 -1728 464) (2191.99 -1728 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.581238 0.813733 0 -12.487] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36771" + "plane" "(2272 -1728 464) (2271.98 -1824.01 464) (2272 -1824 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.581238 0.813733 0 -32.2796] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36770" + "plane" "(2271.98 -1824.01 464) (2191.99 -1824 464) (2191.99 -1824 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.581238 0.813733 0 -12.5415] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36769" + "plane" "(2192 -1728 464) (2272 -1728 464) (2272.02 -1728 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.581238 0.813733 0 -12.5415] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - } - solid - { - "id" "33821" - side + hidden { - "id" "37250" - "plane" "(16 -2768 256) (0 -2752 256) (0 -2432 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "28085" + side + { + "id" "36780" + "plane" "(2240 -1984 544) (2175.98 -2048 544) (2096 -1968 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9062] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36779" + "plane" "(2159.98 -1904.02 464) (2096 -1968 464) (2175.99 -2048 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9062] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36778" + "plane" "(2096 -1968 464) (2159.98 -1904.01 464) (2159.98 -1904.01 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36777" + "plane" "(2240 -1984 464) (2175.98 -2048.01 464) (2175.98 -2048.02 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9062] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36776" + "plane" "(2175.98 -2048 464) (2096 -1968 464) (2096 -1968 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36775" + "plane" "(2159.98 -1904.01 464) (2240 -1984 464) (2240 -1984.02 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37249" - "plane" "(0 -2432 240) (0 -2432 256) (0 -2752 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "28086" + side + { + "id" "36786" + "plane" "(2216 -2008 576) (2200 -2024 576) (2120 -1944 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36785" + "plane" "(2159.98 -1904 544) (2095.99 -1968 544) (2175.98 -2048 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9062] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36784" + "plane" "(2095.98 -1968 544) (2159.98 -1903.99 544) (2135.98 -1928 576)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36783" + "plane" "(2240 -1983.99 544) (2175.98 -2048 544) (2200 -2024 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9062] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36782" + "plane" "(2175.99 -2048 544) (2095.98 -1968 544) (2120 -1944 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36781" + "plane" "(2216 -2008 576) (2135.98 -1928 576) (2159.97 -1903.99 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37248" - "plane" "(16 -2416 256) (0 -2432 256) (0 -2432 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "28105" + side + { + "id" "36792" + "plane" "(2192 -1792 576) (2192 -1760 576) (2271.99 -1760 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.707107 0.707107 0 -28.7176] 0.25" + "vaxis" "[0.707107 -0.707107 0 28.7839] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36791" + "plane" "(2192 -1728 544) (2192 -1824 544) (2271.99 -1824 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.3094] 0.25" + "vaxis" "[0.707107 -0.707107 0 59.5705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36790" + "plane" "(2191.99 -1824 544) (2191.99 -1728 544) (2191.99 -1760 576)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.581238 0.813733 0 -12.487] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36789" + "plane" "(2271.99 -1728 544) (2271.99 -1824 544) (2271.99 -1792 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.581238 0.813733 0 -32.2796] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36788" + "plane" "(2271.99 -1824 544) (2191.99 -1824 544) (2192 -1792 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.581238 0.813733 0 -12.5415] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36787" + "plane" "(2192 -1728 544) (2271.99 -1728 544) (2271.99 -1760 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.581238 0.813733 0 -12.5415] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37247" - "plane" "(0 -2752 240) (0 -2752 256) (16 -2768 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "28089" + side + { + "id" "36798" + "plane" "(2088 -2136 576) (2072 -2152 576) (1992 -2072 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36797" + "plane" "(2032 -2032 544) (1968 -2096 544) (2047.98 -2176 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36796" + "plane" "(1968 -2096 544) (2032 -2032 544) (2008 -2056 576)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36795" + "plane" "(2112 -2112 544) (2048 -2176 544) (2072 -2152 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36794" + "plane" "(2048 -2176 544) (1968 -2096 544) (1992 -2072 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36793" + "plane" "(2088 -2136 576) (2008 -2056 576) (2032 -2032 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37246" - "plane" "(0 -2432 240) (0 -2752 240) (16 -2768 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "28074" + side + { + "id" "36804" + "plane" "(2112 -2112 544) (2048 -2176 544) (1968 -2096 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36803" + "plane" "(2031.99 -2032 464) (1968 -2096 464) (2048 -2176 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36802" + "plane" "(1968 -2096 464) (2032 -2032 464) (2032 -2032 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36801" + "plane" "(2112 -2112 464) (2048 -2176 464) (2048 -2176 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36800" + "plane" "(2048 -2176 464) (1968 -2096 464) (1968 -2096 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36799" + "plane" "(2032 -2032 464) (2112 -2112 464) (2112 -2112 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - editor + hidden { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" + solid + { + "id" "28091" + side + { + "id" "36810" + "plane" "(1632 -2208 576) (1600 -2208 576) (1600 -2128 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.707107 -0.707107 0 31.0914] 0.25" + "vaxis" "[-0.707107 -0.707107 0 31.025] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36809" + "plane" "(1664 -2128 544) (1568 -2128 544) (1568 -2208 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 4.67599] 0.25" + "vaxis" "[-0.707107 -0.707107 0 42.5581] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36808" + "plane" "(1568 -2128 544) (1664 -2128 544) (1632 -2128 576)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.813733 -0.581238 0 30.429] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36807" + "plane" "(1664 -2208 544) (1568 -2208 544) (1600 -2208 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.813733 -0.581238 0 19.7822] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36806" + "plane" "(1568 -2208 544) (1568 -2128 544) (1600 -2128 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.813733 0.581238 0 -30.3526] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36805" + "plane" "(1664 -2128 544) (1664 -2208 544) (1632 -2208 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.813733 0.581238 0 -30.3526] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - } - solid - { - "id" "33839" - side + hidden { - "id" "37256" - "plane" "(-256 -2756 384) (-256 -2752 384) (0 -2752 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "28090" + side + { + "id" "36816" + "plane" "(1663.99 -2208 544) (1567.98 -2208 544) (1568 -2128 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 4.67599] 0.25" + "vaxis" "[-0.707107 -0.707107 0 42.5581] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36815" + "plane" "(1663.99 -2128 464) (1568 -2128 464) (1567.98 -2207.99 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 4.67599] 0.25" + "vaxis" "[-0.707107 -0.707107 0 42.5581] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36814" + "plane" "(1568 -2128 464) (1663.99 -2128 464) (1663.99 -2128 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.813733 -0.581238 0 30.429] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36813" + "plane" "(1663.99 -2208 464) (1567.98 -2207.99 464) (1567.98 -2208 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.813733 -0.581238 0 19.7822] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36812" + "plane" "(1567.98 -2207.99 464) (1568 -2128 464) (1568 -2128 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.813733 0.581238 0 -30.3526] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36811" + "plane" "(1663.99 -2128 464) (1663.99 -2208 464) (1663.99 -2208.01 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.813733 0.581238 0 -30.3526] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37255" - "plane" "(-256 -2752 364) (-256 -2756 364) (-16 -2756 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "28019" + side + { + "id" "36822" + "plane" "(1536 -2176 464) (1456 -2096 464) (1919.99 -2096 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36821" + "plane" "(1472 -2112 448) (1536 -2176 448) (1919.98 -2176 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36820" + "plane" "(1536 -2176 448) (1472 -2112 448) (1456 -2096 464)" + "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" "36819" + "plane" "(1919.99 -2112 448) (1919.99 -2176 448) (1919.99 -2176 464)" + "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" "36818" + "plane" "(1472 -2112 448) (1919.99 -2112 448) (1919.99 -2096 464)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36817" + "plane" "(1919.99 -2176 448) (1536 -2176 448) (1536 -2176 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37254" - "plane" "(-16 -2752 256) (-16 -2756 256) (0 -2756 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "28023" + side + { + "id" "36828" + "plane" "(1920 -2176 464) (1920 -2096 464) (2159.99 -1856 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36827" + "plane" "(2240 -1856 448) (2176 -1856 448) (1920 -2112 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36826" + "plane" "(1919.99 -2176 448) (1919.99 -2112 448) (1919.99 -2096 464)" + "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" "36825" + "plane" "(2176 -1856 448) (2240 -1856 448) (2240 -1856 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36824" + "plane" "(2159.99 -1856 464) (1919.99 -2096 464) (1919.99 -2112 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36823" + "plane" "(2240 -1856 448) (1919.99 -2176 448) (1919.99 -2176 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37253" - "plane" "(-256 -2756 364) (-256 -2752 364) (-256 -2752 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" + solid + { + "id" "44306" + side + { + "id" "36834" + "plane" "(2239.99 -1856 464) (2160 -1856 464) (2160 -1664 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0.046875] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36833" + "plane" "(2176 -1664 448) (2176 -1856 448) (2239.99 -1856 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0.046875] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36832" + "plane" "(2239.99 -1856 448) (2176 -1856 448) (2160 -1856 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36831" + "plane" "(2176 -1856 448) (2176 -1664 448) (2160 -1664 464)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36830" + "plane" "(2239.99 -1664 448) (2239.99 -1856 448) (2239.99 -1856 464)" + "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" "36829" + "plane" "(2176 -1664 448) (2239.99 -1664 448) (2239.99 -1664 464)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37252" - "plane" "(-256 -2752 364) (-16 -2752 256) (0 -2752 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "27998" + side + { + "id" "36840" + "plane" "(2167.99 -1856 448) (2167.99 -1840 448) (2175.99 -1840 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36839" + "plane" "(2167.99 -1840 64) (2167.99 -1856 64) (2175.99 -1856 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36838" + "plane" "(2167.99 -1856 64) (2167.99 -1840 64) (2167.99 -1840 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36837" + "plane" "(2175.99 -1840 64) (2175.99 -1856 64) (2175.99 -1856 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36836" + "plane" "(2167.98 -1840 64) (2175.99 -1840 64) (2175.99 -1840 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36835" + "plane" "(2175.99 -1856 64) (2167.99 -1856 64) (2167.98 -1856 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37251" - "plane" "(-256 -2756 384) (0 -2756 256) (-16 -2756 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "27989" + side + { + "id" "36846" + "plane" "(1904 -2112 448) (1904 -2104 448) (1919.99 -2104 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36845" + "plane" "(1904 -2104 64) (1904 -2112 64) (1919.99 -2112 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36844" + "plane" "(1903.99 -2112 64) (1903.99 -2104 64) (1903.99 -2104 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36843" + "plane" "(1919.99 -2104 64) (1919.99 -2112 64) (1919.99 -2112 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36842" + "plane" "(1904 -2104 64) (1919.99 -2104 64) (1919.99 -2104 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36841" + "plane" "(1919.99 -2112 64) (1903.99 -2112 64) (1904 -2112 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } editor { "color" "0 180 0" + "visgroupid" "18" "visgroupshown" "1" - "visgroupautoshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" } } - solid +} +hidden +{ + entity { - "id" "33860" - side - { - "id" "37261" - "plane" "(-8 -2752 256) (0 -2752 256) (16 -2768 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37260" - "plane" "(-8 -2752 240) (0 -2752 240) (0 -2752 256)" - "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" "37259" - "plane" "(16 -2768 256) (0 -2752 256) (0 -2752 240)" - "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" "60446" + "classname" "func_detail" + hidden { - "id" "37258" - "plane" "(0 -2752 240) (-8 -2752 240) (-8 -2768 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32205" + side + { + "id" "37101" + "plane" "(0 -3200 288) (64 -3200 288) (128 -3136 288)" + "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" "37100" + "plane" "(64 -3200 288) (0 -3200 288) (64 -3200 384)" + "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" "37099" + "plane" "(128 -3072 288) (128 -3136 288) (128 -3136 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" "37098" + "plane" "(64 -3200 384) (0 -3200 288) (128 -3072 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37097" + "plane" "(128 -3136 384) (128 -3136 288) (64 -3200 288)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37257" - "plane" "(-8 -2752 240) (-8 -2752 256) (-8 -2768 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32207" + side + { + "id" "37106" + "plane" "(128 -3072 288) (128 -3136 288) (320 -3136 288)" + "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" "37105" + "plane" "(128 -3136 288) (128 -3072 288) (128 -3136 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" "37104" + "plane" "(320 -3136 384) (320 -3072 288) (320 -3136 288)" + "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" "37103" + "plane" "(128 -3136 384) (128 -3072 288) (320 -3072 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37102" + "plane" "(320 -3136 384) (320 -3136 288) (128 -3136 288)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - editor + hidden { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" + solid + { + "id" "32268" + side + { + "id" "37112" + "plane" "(176 -3136 352) (176 -3064 352) (192 -3064 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37111" + "plane" "(176 -3064 288) (176 -3136 288) (192 -3136 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37110" + "plane" "(176 -3136 288) (176 -3064 288) (176 -3064 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37109" + "plane" "(192 -3064 288) (192 -3136 288) (192 -3136 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37108" + "plane" "(176 -3064 288) (192 -3064 288) (192 -3064 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37107" + "plane" "(192 -3136 288) (176 -3136 288) (176 -3136 352)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - } - solid - { - "id" "33831" - side + hidden { - "id" "37267" - "plane" "(-352 -2756 256) (-352 -2752 256) (-256 -2752 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32267" + side + { + "id" "37118" + "plane" "(192 -3136 336) (192 -3072 336) (240 -3072 336)" + "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" "37117" + "plane" "(192 -3072 288) (192 -3136 288) (240 -3136 288)" + "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" "37116" + "plane" "(192 -3136 288) (192 -3072 288) (192 -3072 336)" + "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" "37115" + "plane" "(240 -3072 288) (240 -3136 288) (240 -3136 336)" + "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" "37114" + "plane" "(192 -3072 288) (240 -3072 288) (240 -3072 336)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37113" + "plane" "(240 -3136 288) (192 -3136 288) (192 -3136 336)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37266" - "plane" "(-336 -2752 256) (-336 -2756 256) (-256 -2756 364)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32270" + side + { + "id" "37124" + "plane" "(240 -3136 352) (240 -3064 352) (256 -3064 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37123" + "plane" "(240 -3064 288) (240 -3136 288) (256 -3136 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37122" + "plane" "(240 -3136 288) (240 -3064 288) (240 -3064 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37121" + "plane" "(256 -3064 288) (256 -3136 288) (256 -3136 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37120" + "plane" "(240 -3064 288) (256 -3064 288) (256 -3064 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37119" + "plane" "(256 -3136 288) (240 -3136 288) (240 -3136 352)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37265" - "plane" "(-352 -2752 256) (-352 -2756 256) (-336 -2756 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32269" + side + { + "id" "37130" + "plane" "(192 -3136 352) (192 -3064 352) (240 -3064 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37129" + "plane" "(192 -3064 336) (192 -3136 336) (240 -3136 336)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37128" + "plane" "(192 -3136 336) (192 -3064 336) (192 -3064 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37127" + "plane" "(240 -3064 336) (240 -3136 336) (240 -3136 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37126" + "plane" "(192 -3064 336) (240 -3064 336) (240 -3064 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37125" + "plane" "(240 -3136 336) (192 -3136 336) (192 -3136 352)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37264" - "plane" "(-256 -2752 364) (-256 -2756 364) (-256 -2756 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" + solid + { + "id" "32188" + side + { + "id" "37135" + "plane" "(128 -3072 288) (112 -3056 288) (320 -3056 288)" + "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" "37134" + "plane" "(112 -3056 288) (128 -3072 288) (128 -3072 272)" + "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" "37133" + "plane" "(320 -3072 272) (320 -3072 288) (320 -3056 288)" + "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" "37132" + "plane" "(128 -3072 272) (128 -3072 288) (320 -3072 288)" + "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" "37131" + "plane" "(320 -3056 288) (112 -3056 288) (128 -3072 272)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37263" - "plane" "(-256 -2752 384) (-352 -2752 256) (-336 -2752 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32186" + side + { + "id" "37140" + "plane" "(0 -3200 288) (-16 -3184 288) (112 -3056 288)" + "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" "37139" + "plane" "(-16 -3184 288) (0 -3200 288) (0 -3200 272)" + "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" "37138" + "plane" "(128 -3072 272) (128 -3072 288) (112 -3056 288)" + "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" "37137" + "plane" "(0 -3200 272) (0 -3200 288) (128 -3072 288)" + "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" "37136" + "plane" "(112 -3056 288) (-16 -3184 288) (0 -3200 272)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37262" - "plane" "(-352 -2756 256) (-256 -2756 384) (-256 -2756 364)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32181" + side + { + "id" "37145" + "plane" "(0 -3456 288) (-16 -3456 288) (-16 -3184 288)" + "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" "37144" + "plane" "(-16 -3456 288) (0 -3456 288) (0 -3456 272)" + "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" "37143" + "plane" "(0 -3200 272) (0 -3200 288) (-16 -3184 288)" + "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" "37142" + "plane" "(0 -3456 272) (0 -3456 288) (0 -3200 288)" + "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" "37141" + "plane" "(-16 -3184 288) (-16 -3456 288) (0 -3456 272)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - editor + hidden { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" + solid + { + "id" "32201" + side + { + "id" "37150" + "plane" "(64 -3200 288) (0 -3200 288) (0 -3520 288)" + "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" "37149" + "plane" "(64 -3520 288) (0 -3520 288) (64 -3520 384)" + "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" "37148" + "plane" "(64 -3200 384) (0 -3200 288) (64 -3200 288)" + "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" "37147" + "plane" "(64 -3520 384) (0 -3520 288) (0 -3200 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37146" + "plane" "(64 -3200 384) (64 -3200 288) (64 -3520 288)" + "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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - } - solid - { - "id" "33828" - side + hidden { - "id" "37272" - "plane" "(-256 -2432 384) (-256 -2432 256) (-256 -2752 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32192" + side + { + "id" "37155" + "plane" "(-416 -3456 288) (-416 -3520 288) (64 -3520 288)" + "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" "37154" + "plane" "(-416 -3520 288) (-416 -3456 288) (-416 -3520 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" "37153" + "plane" "(64 -3520 384) (64 -3456 288) (64 -3520 288)" + "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" "37152" + "plane" "(-416 -3520 384) (-416 -3456 288) (64 -3456 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37151" + "plane" "(64 -3520 384) (64 -3520 288) (-416 -3520 288)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37271" - "plane" "(-352 -2752 256) (-256 -2752 256) (-256 -2432 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32173" + side + { + "id" "37160" + "plane" "(-320 -3456 288) (-320 -3440 288) (0 -3440 288)" + "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" "37159" + "plane" "(-320 -3440 288) (-320 -3456 288) (-320 -3456 272)" + "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" "37158" + "plane" "(0 -3456 272) (0 -3456 288) (0 -3440 288)" + "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" "37157" + "plane" "(-320 -3456 272) (-320 -3456 288) (0 -3456 288)" + "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" "37156" + "plane" "(0 -3456 272) (0 -3440 288) (-320 -3440 288)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37270" - "plane" "(-352 -2432 256) (-256 -2432 256) (-256 -2432 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32215" + side + { + "id" "37166" + "plane" "(-64 -3520 352) (-64 -3448 352) (-48 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37165" + "plane" "(-64 -3448 288) (-64 -3520 288) (-48 -3520 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37164" + "plane" "(-64 -3520 288) (-64 -3448 288) (-64 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37163" + "plane" "(-48 -3448 288) (-48 -3520 288) (-48 -3520 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37162" + "plane" "(-64 -3448 288) (-48 -3448 288) (-48 -3448 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37161" + "plane" "(-48 -3520 288) (-64 -3520 288) (-64 -3520 352)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37269" - "plane" "(-256 -2752 384) (-256 -2752 256) (-352 -2752 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32216" + side + { + "id" "37172" + "plane" "(-112 -3520 352) (-112 -3448 352) (-64 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37171" + "plane" "(-112 -3448 336) (-112 -3520 336) (-64 -3520 336)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37170" + "plane" "(-112 -3520 336) (-112 -3448 336) (-112 -3448 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37169" + "plane" "(-64 -3448 336) (-64 -3520 336) (-64 -3520 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37168" + "plane" "(-112 -3448 336) (-64 -3448 336) (-64 -3448 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37167" + "plane" "(-64 -3520 336) (-112 -3520 336) (-112 -3520 352)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37268" - "plane" "(-352 -2752 256) (-352 -2432 256) (-256 -2432 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32219" + side + { + "id" "37178" + "plane" "(-112 -3520 336) (-112 -3456 336) (-64 -3456 336)" + "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" "37177" + "plane" "(-112 -3456 288) (-112 -3520 288) (-64 -3520 288)" + "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" "37176" + "plane" "(-112 -3520 288) (-112 -3456 288) (-112 -3456 336)" + "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" "37175" + "plane" "(-64 -3456 288) (-64 -3520 288) (-64 -3520 336)" + "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" "37174" + "plane" "(-112 -3456 288) (-64 -3456 288) (-64 -3456 336)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37173" + "plane" "(-64 -3520 288) (-112 -3520 288) (-112 -3520 336)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - editor + hidden { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" + solid + { + "id" "32209" + side + { + "id" "37184" + "plane" "(-128 -3520 352) (-128 -3448 352) (-112 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37183" + "plane" "(-128 -3448 288) (-128 -3520 288) (-112 -3520 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37182" + "plane" "(-128 -3520 288) (-128 -3448 288) (-128 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37181" + "plane" "(-112 -3448 288) (-112 -3520 288) (-112 -3520 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37180" + "plane" "(-128 -3448 288) (-112 -3448 288) (-112 -3448 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37179" + "plane" "(-112 -3520 288) (-128 -3520 288) (-128 -3520 352)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - } - solid - { - "id" "33850" - side + hidden { - "id" "37278" - "plane" "(-352 -2432 256) (-352 -2428 256) (-256 -2428 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32250" + side + { + "id" "37190" + "plane" "(-272 -3520 352) (-272 -3448 352) (-256 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37189" + "plane" "(-272 -3448 288) (-272 -3520 288) (-256 -3520 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37188" + "plane" "(-272 -3520 288) (-272 -3448 288) (-272 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37187" + "plane" "(-256 -3448 288) (-256 -3520 288) (-256 -3520 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37186" + "plane" "(-272 -3448 288) (-256 -3448 288) (-256 -3448 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37185" + "plane" "(-256 -3520 288) (-272 -3520 288) (-272 -3520 352)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37277" - "plane" "(-336 -2428 256) (-336 -2432 256) (-256 -2432 364)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32247" + side + { + "id" "37196" + "plane" "(-256 -3520 336) (-256 -3456 336) (-208 -3456 336)" + "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" "37195" + "plane" "(-256 -3456 288) (-256 -3520 288) (-208 -3520 288)" + "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" "37194" + "plane" "(-256 -3520 288) (-256 -3456 288) (-256 -3456 336)" + "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" "37193" + "plane" "(-208 -3456 288) (-208 -3520 288) (-208 -3520 336)" + "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" "37192" + "plane" "(-256 -3456 288) (-208 -3456 288) (-208 -3456 336)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37191" + "plane" "(-208 -3520 288) (-256 -3520 288) (-256 -3520 336)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37276" - "plane" "(-352 -2428 256) (-352 -2432 256) (-336 -2432 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32248" + side + { + "id" "37202" + "plane" "(-208 -3520 352) (-208 -3448 352) (-192 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37201" + "plane" "(-208 -3448 288) (-208 -3520 288) (-192 -3520 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37200" + "plane" "(-208 -3520 288) (-208 -3448 288) (-208 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37199" + "plane" "(-192 -3448 288) (-192 -3520 288) (-192 -3520 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37198" + "plane" "(-208 -3448 288) (-192 -3448 288) (-192 -3448 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37197" + "plane" "(-192 -3520 288) (-208 -3520 288) (-208 -3520 352)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37275" - "plane" "(-256 -2428 364) (-256 -2432 364) (-256 -2432 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32249" + side + { + "id" "37208" + "plane" "(-256 -3520 352) (-256 -3448 352) (-208 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37207" + "plane" "(-256 -3448 336) (-256 -3520 336) (-208 -3520 336)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37206" + "plane" "(-256 -3520 336) (-256 -3448 336) (-256 -3448 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37205" + "plane" "(-208 -3448 336) (-208 -3520 336) (-208 -3520 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37204" + "plane" "(-256 -3448 336) (-208 -3448 336) (-208 -3448 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37203" + "plane" "(-208 -3520 336) (-256 -3520 336) (-256 -3520 352)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37274" - "plane" "(-256 -2428 384) (-352 -2428 256) (-336 -2428 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32280" + side + { + "id" "37213" + "plane" "(-320 -3264 288) (-416 -3264 288) (-416 -3520 288)" + "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" "37212" + "plane" "(-416 -3264 288) (-320 -3264 288) (-416 -3264 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37211" + "plane" "(-416 -3520 416) (-320 -3520 288) (-416 -3520 288)" + "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" "37210" + "plane" "(-416 -3264 416) (-320 -3264 288) (-320 -3520 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37209" + "plane" "(-416 -3520 416) (-416 -3520 288) (-416 -3264 288)" + "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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37273" - "plane" "(-352 -2432 256) (-256 -2432 384) (-256 -2432 364)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32292" + side + { + "id" "37219" + "plane" "(-448 -3520 416) (-448 -3264 416) (-416 -3264 416)" + "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" "37218" + "plane" "(-448 -3264 288) (-448 -3520 288) (-416 -3520 288)" + "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" "37217" + "plane" "(-448 -3520 288) (-448 -3264 288) (-448 -3264 416)" + "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" "37216" + "plane" "(-416 -3264 288) (-416 -3520 288) (-416 -3520 416)" + "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" "37215" + "plane" "(-448 -3264 288) (-416 -3264 288) (-416 -3264 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37214" + "plane" "(-416 -3520 288) (-448 -3520 288) (-448 -3520 416)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - editor + hidden { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" + solid + { + "id" "32288" + side + { + "id" "37224" + "plane" "(-448 -3264 288) (-544 -3264 288) (-544 -3520 288)" + "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" "37223" + "plane" "(-448 -3264 416) (-544 -3264 288) (-448 -3264 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37222" + "plane" "(-448 -3520 288) (-544 -3520 288) (-448 -3520 416)" + "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" "37221" + "plane" "(-448 -3520 416) (-544 -3520 288) (-544 -3264 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37220" + "plane" "(-448 -3264 416) (-448 -3264 288) (-448 -3520 288)" + "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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - } - solid - { - "id" "33849" - side + hidden { - "id" "37284" - "plane" "(-256 -2432 384) (-256 -2428 384) (0 -2428 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32383" + side + { + "id" "37229" + "plane" "(-1024 -3264 192) (-1024 -3360 192) (-704 -3360 192)" + "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" "37228" + "plane" "(-1024 -3360 192) (-1024 -3264 192) (-1024 -3360 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" "37227" + "plane" "(-704 -3360 320) (-704 -3264 192) (-704 -3360 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37226" + "plane" "(-1024 -3360 320) (-1024 -3264 192) (-704 -3264 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37225" + "plane" "(-704 -3360 320) (-704 -3360 192) (-1024 -3360 192)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37283" - "plane" "(-256 -2428 364) (-256 -2432 364) (-16 -2432 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32388" + side + { + "id" "37234" + "plane" "(-1024 -3424 192) (-1024 -3520 192) (-704 -3520 192)" + "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" "37233" + "plane" "(-1024 -3424 320) (-1024 -3520 192) (-1024 -3424 192)" + "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" "37232" + "plane" "(-704 -3424 192) (-704 -3520 192) (-704 -3424 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37231" + "plane" "(-704 -3424 320) (-704 -3520 192) (-1024 -3520 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37230" + "plane" "(-1024 -3424 320) (-1024 -3424 192) (-704 -3424 192)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37282" - "plane" "(-16 -2428 256) (-16 -2432 256) (0 -2432 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "32394" + side + { + "id" "37240" + "plane" "(-1024 -3424 320) (-1024 -3360 320) (-704 -3360 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37239" + "plane" "(-1024 -3360 192) (-1024 -3424 192) (-704 -3424 192)" + "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" "37238" + "plane" "(-1024 -3424 192) (-1024 -3360 192) (-1024 -3360 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" "37237" + "plane" "(-704 -3360 192) (-704 -3424 192) (-704 -3424 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37236" + "plane" "(-1024 -3360 192) (-704 -3360 192) (-704 -3360 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" "37235" + "plane" "(-704 -3424 192) (-1024 -3424 192) (-1024 -3424 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37281" - "plane" "(-256 -2432 364) (-256 -2428 364) (-256 -2428 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "33822" + side + { + "id" "37245" + "plane" "(-256 -2752 384) (-256 -2752 256) (-256 -2432 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37244" + "plane" "(0 -2432 256) (-256 -2432 256) (-256 -2752 256)" + "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" "37243" + "plane" "(-256 -2432 384) (-256 -2432 256) (0 -2432 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37242" + "plane" "(0 -2752 256) (-256 -2752 256) (-256 -2752 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37241" + "plane" "(-256 -2752 384) (-256 -2432 384) (0 -2432 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37280" - "plane" "(-256 -2428 364) (-16 -2428 256) (0 -2428 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "33821" + side + { + "id" "37250" + "plane" "(16 -2768 256) (0 -2752 256) (0 -2432 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37249" + "plane" "(0 -2432 240) (0 -2432 256) (0 -2752 256)" + "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" "37248" + "plane" "(16 -2416 256) (0 -2432 256) (0 -2432 240)" + "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" "37247" + "plane" "(0 -2752 240) (0 -2752 256) (16 -2768 256)" + "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" "37246" + "plane" "(0 -2432 240) (0 -2752 240) (16 -2768 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37279" - "plane" "(-256 -2432 384) (0 -2432 256) (-16 -2432 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "33839" + side + { + "id" "37256" + "plane" "(-256 -2756 384) (-256 -2752 384) (0 -2752 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37255" + "plane" "(-256 -2752 364) (-256 -2756 364) (-16 -2756 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37254" + "plane" "(-16 -2752 256) (-16 -2756 256) (0 -2756 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37253" + "plane" "(-256 -2756 364) (-256 -2752 364) (-256 -2752 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" "37252" + "plane" "(-256 -2752 364) (-16 -2752 256) (0 -2752 256)" + "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" "37251" + "plane" "(-256 -2756 384) (0 -2756 256) (-16 -2756 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - editor + hidden { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" + solid + { + "id" "33860" + side + { + "id" "37261" + "plane" "(-8 -2752 256) (0 -2752 256) (16 -2768 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37260" + "plane" "(-8 -2752 240) (0 -2752 240) (0 -2752 256)" + "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" "37259" + "plane" "(16 -2768 256) (0 -2752 256) (0 -2752 240)" + "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" "37258" + "plane" "(0 -2752 240) (-8 -2752 240) (-8 -2768 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37257" + "plane" "(-8 -2752 240) (-8 -2752 256) (-8 -2768 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - } - solid - { - "id" "33861" - side + hidden { - "id" "37289" - "plane" "(16 -2416 256) (0 -2432 256) (-8 -2432 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "33831" + side + { + "id" "37267" + "plane" "(-352 -2756 256) (-352 -2752 256) (-256 -2752 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37266" + "plane" "(-336 -2752 256) (-336 -2756 256) (-256 -2756 364)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37265" + "plane" "(-352 -2752 256) (-352 -2756 256) (-336 -2756 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37264" + "plane" "(-256 -2752 364) (-256 -2756 364) (-256 -2756 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" "37263" + "plane" "(-256 -2752 384) (-352 -2752 256) (-336 -2752 256)" + "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" "37262" + "plane" "(-352 -2756 256) (-256 -2756 384) (-256 -2756 364)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37288" - "plane" "(-8 -2432 256) (0 -2432 256) (0 -2432 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "33828" + side + { + "id" "37272" + "plane" "(-256 -2432 384) (-256 -2432 256) (-256 -2752 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37271" + "plane" "(-352 -2752 256) (-256 -2752 256) (-256 -2432 256)" + "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" "37270" + "plane" "(-352 -2432 256) (-256 -2432 256) (-256 -2432 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37269" + "plane" "(-256 -2752 384) (-256 -2752 256) (-352 -2752 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37268" + "plane" "(-352 -2752 256) (-352 -2432 256) (-256 -2432 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37287" - "plane" "(0 -2432 240) (0 -2432 256) (16 -2416 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "33850" + side + { + "id" "37278" + "plane" "(-352 -2432 256) (-352 -2428 256) (-256 -2428 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37277" + "plane" "(-336 -2428 256) (-336 -2432 256) (-256 -2432 364)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37276" + "plane" "(-352 -2428 256) (-352 -2432 256) (-336 -2432 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37275" + "plane" "(-256 -2428 364) (-256 -2432 364) (-256 -2432 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37274" + "plane" "(-256 -2428 384) (-352 -2428 256) (-336 -2428 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37273" + "plane" "(-352 -2432 256) (-256 -2432 384) (-256 -2432 364)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37286" - "plane" "(-8 -2432 240) (0 -2432 240) (16 -2416 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "33849" + side + { + "id" "37284" + "plane" "(-256 -2432 384) (-256 -2428 384) (0 -2428 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37283" + "plane" "(-256 -2428 364) (-256 -2432 364) (-16 -2432 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37282" + "plane" "(-16 -2428 256) (-16 -2432 256) (0 -2432 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37281" + "plane" "(-256 -2432 364) (-256 -2428 364) (-256 -2428 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37280" + "plane" "(-256 -2428 364) (-16 -2428 256) (0 -2428 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37279" + "plane" "(-256 -2432 384) (0 -2432 256) (-16 -2432 256)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "37285" - "plane" "(-8 -2416 256) (-8 -2432 256) (-8 -2432 240)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "33861" + side + { + "id" "37289" + "plane" "(16 -2416 256) (0 -2432 256) (-8 -2432 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37288" + "plane" "(-8 -2432 256) (0 -2432 256) (0 -2432 240)" + "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" "37287" + "plane" "(0 -2432 240) (0 -2432 256) (16 -2416 256)" + "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" "37286" + "plane" "(-8 -2432 240) (0 -2432 240) (16 -2416 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37285" + "plane" "(-8 -2416 256) (-8 -2432 256) (-8 -2432 240)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } } editor { "color" "0 180 0" + "visgroupid" "18" "visgroupshown" "1" - "visgroupautoshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" } } +} +entity +{ + "id" "58913" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_downtown/metal_door_112_16_frame.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1288 4 128" editor { - "color" "0 180 0" - "visgroupid" "18" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 2500]" - } -} -hidden -{ - entity - { - "id" "58913" - "classname" "prop_static" - "angles" "0 0 0" - "disableselfshadowing" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/props_downtown/metal_door_112_16_frame.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1288 4 128" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 6000]" - } + "logicalpos" "[1000 6000]" } } -hidden +entity { - entity + "id" "58982" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/train_cratestack_single/train_cratestack_single.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2728 -300 88" + editor { - "id" "58982" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_train/hr_t/train_cratestack_single/train_cratestack_single.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2728 -300 88" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 5000]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 5000]" } } -hidden +entity { - entity + "id" "58986" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/train_cratestack_single/train_cratestack_single.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2728 -300 160" + editor { - "id" "58986" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_train/hr_t/train_cratestack_single/train_cratestack_single.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2728 -300 160" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 5000]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 5000]" } } -hidden +entity { - entity + "id" "59006" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/train_cratestack_single/train_cratestack_single.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2730.63 -259.292 88" + editor { - "id" "59006" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_train/hr_t/train_cratestack_single/train_cratestack_single.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2730.63 -259.292 88" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 5000]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 5000]" } } -hidden +entity { - entity + "id" "56370" + "classname" "prop_static" + "angles" "0 75 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/tree_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2368 896 88" + editor { - "id" "56370" - "classname" "prop_static" - "angles" "0 75 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/tree_large.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2368 896 88" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 9000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" } } -hidden +entity { - entity + "id" "56403" + "classname" "prop_static" + "angles" "0 75 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/tree_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1872 -136 88" + editor { - "id" "56403" - "classname" "prop_static" - "angles" "0 75 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_inferno/tree_large.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1872 -136 88" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "comments" "Do you ever feel, like a plastic bag, drifting through the wind, wanting to start again?" - "logicalpos" "[1000 9000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Do you ever feel, like a plastic bag, drifting through the wind, wanting to start again?" + "logicalpos" "[1000 9000]" } } -hidden +entity { - entity + "id" "56431" + "classname" "prop_static" + "angles" "0 150 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_foliage/urban_streettree01_medium.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2240 384 128" + editor { - "id" "56431" - "classname" "prop_static" - "angles" "0 150 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/urban_streettree01_medium.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "2240 384 128" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 9000]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" } } entity @@ -233566,104 +189284,92 @@ entity "logicalpos" "[0 1000]" } } -hidden +entity { - entity + "id" "44750" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_canal/canal_bars002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1280 -1168 56" + editor { - "id" "44750" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_canal/canal_bars002.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1280 -1168 56" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 3500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3500]" } } -hidden +entity { - entity + "id" "44785" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_canal/canal_bars002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1280 -1272 -8" + editor { - "id" "44785" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_canal/canal_bars002.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1280 -1272 -8" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 3500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3500]" } } -hidden +entity { - entity + "id" "44793" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_canal/canal_bars002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1280 -888 56" + editor { - "id" "44793" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_canal/canal_bars002.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1280 -888 56" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[500 3500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3500]" } } -hidden +entity { - entity + "id" "41420" + "classname" "prop_static" + "angles" "0 330 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_foliage/mall_bush02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8 -1832 32" + editor { - "id" "41420" - "classname" "prop_static" - "angles" "0 330 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/mall_bush02.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "8 -1832 32" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 8500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" } } entity @@ -233879,129 +189585,117 @@ entity "logicalpos" "[1000 -13768]" } } -hidden +entity { - entity + "id" "32984" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/truck_nuke.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-616 -3040 0" + editor { - "id" "32984" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_nuke/truck_nuke.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-616 -3040 0" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[2000 -1268]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -1268]" } } -hidden +entity { - entity + "id" "33029" + "classname" "prop_static" + "angles" "0 300 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/crates/military_case_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-504 -3208 0" + editor { - "id" "33029" - "classname" "prop_static" - "angles" "0 300 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/crates/military_case_02.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-504 -3208 0" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[2000 -1268]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -1268]" } } -hidden +entity { - entity + "id" "33072" + "classname" "prop_static" + "angles" "0 300 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_crates/static_crate_40.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-512 -3120 0" + editor { - "id" "33072" - "classname" "prop_static" - "angles" "0 300 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_crates/static_crate_40.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-512 -3120 0" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[2000 -1268]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -1268]" } } -hidden +entity { - entity + "id" "33091" + "classname" "prop_static" + "angles" "0 225 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_crates/static_crate_40.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-512 -3128 40" + editor { - "id" "33091" - "classname" "prop_static" - "angles" "0 225 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_crates/static_crate_40.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-512 -3128 40" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[2000 -1268]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -1268]" } } -hidden +entity { - entity + "id" "33105" + "classname" "prop_static" + "angles" "0 0 -180" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/emergency_lighta.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-616 -3040 144" + editor { - "id" "33105" - "classname" "prop_static" - "angles" "0 0 -180" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_nuke/emergency_lighta.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-616 -3040 144" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[2500 500]" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 500]" } } entity @@ -234049,104 +189743,96 @@ entity "logicalpos" "[1000 8000]" } } -hidden +entity { - entity + "id" "20040" + "classname" "prop_static" + "angles" "0 60 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/train_cratestack_single/train_cratestack_single.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-936 -720 48" + editor { - "id" "20040" - "classname" "prop_static" - "angles" "0 60 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_train/hr_t/train_cratestack_single/train_cratestack_single.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-936 -720 48" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 8000]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" } } -hidden +entity { - entity + "id" "20072" + "classname" "prop_static" + "angles" "0 15 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/train_cratestack_single/train_cratestack_single.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1004 -736 48" + editor { - "id" "20072" - "classname" "prop_static" - "angles" "0 15 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_train/hr_t/train_cratestack_single/train_cratestack_single.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-1004 -736 48" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 8000]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" } } -hidden +entity { - entity + "id" "20179" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/props_crates/wooden_crate_64x64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-404 -604 0" + editor { - "id" "20179" - "classname" "prop_static" - "angles" "0 90 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/props_crates/wooden_crate_64x64.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-404 -604 0" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 8000]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" } } -hidden +entity { - entity + "id" "20183" + "classname" "prop_static" + "angles" "0 165 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/train_cratestack_single/train_cratestack_single.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-424 -616 72" + editor { - "id" "20183" - "classname" "prop_static" - "angles" "0 165 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_train/hr_t/train_cratestack_single/train_cratestack_single.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "-424 -616 72" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 8000]" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" } } entity @@ -234491,7 +190177,7 @@ entity side { "id" "14634" - "plane" "(-512 -3296 192) (-512 -2752 192) (-32 -2752 192)" + "plane" "(-512 -2752 192) (-32 -2752 192) (-32 -3264 192)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -234502,7 +190188,7 @@ entity side { "id" "14633" - "plane" "(-512 -2752 1) (-512 -3296 1) (-32 -3296 1)" + "plane" "(-512 -3264 1) (-32 -3264 1) (-32 -2752 1)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -234513,7 +190199,7 @@ entity side { "id" "14632" - "plane" "(-512 -3296 1) (-512 -2752 1) (-512 -2752 192)" + "plane" "(-512 -2752 1) (-512 -2752 192) (-512 -3264 192)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -234524,7 +190210,7 @@ entity side { "id" "14631" - "plane" "(-32 -2752 1) (-32 -3296 1) (-32 -3296 192)" + "plane" "(-32 -3264 1) (-32 -3264 192) (-32 -2752 192)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -234535,7 +190221,7 @@ entity side { "id" "14630" - "plane" "(-512 -2752 1) (-32 -2752 1) (-32 -2752 192)" + "plane" "(-32 -2752 1) (-32 -2752 192) (-512 -2752 192)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -234546,7 +190232,7 @@ entity side { "id" "14629" - "plane" "(-32 -3296 1) (-512 -3296 1) (-512 -3296 192)" + "plane" "(-512 -3264 1) (-512 -3264 192) (-32 -3264 192)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -234567,7 +190253,7 @@ entity side { "id" "101553" - "plane" "(-32 -3200 192) (-32 -3040 192) (128 -3040 192)" + "plane" "(-32 -3040 192) (128 -3040 192) (-32 -3200 192)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -234589,7 +190275,7 @@ entity side { "id" "101551" - "plane" "(-32 -3200 1) (-32 -3040 1) (-32 -3040 192)" + "plane" "(-32 -3040 1) (-32 -3040 192) (-32 -3200 192)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -234600,7 +190286,7 @@ entity side { "id" "101550" - "plane" "(-32 -3040 1) (128 -3040 1) (128 -3040 192)" + "plane" "(128 -3040 1) (128 -3040 192) (-32 -3040 192)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -234611,7 +190297,7 @@ entity side { "id" "101549" - "plane" "(128 -3040 1) (-32 -3200 1) (-32 -3200 192)" + "plane" "(-32 -3200 1) (-32 -3200 192) (128 -3040 192)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -234632,7 +190318,7 @@ entity side { "id" "101536" - "plane" "(-32 -3040 192) (-32 -2752 192) (320 -2752 192)" + "plane" "(-32 -2752 192) (320 -2752 192) (320 -3040 192)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -234643,7 +190329,7 @@ entity side { "id" "101535" - "plane" "(-32 -2752 1) (-32 -3040 1) (320 -3040 1)" + "plane" "(-32 -3040 1) (320 -3040 1) (320 -2752 1)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -234654,7 +190340,7 @@ entity side { "id" "101534" - "plane" "(-32 -3040 1) (-32 -2752 1) (-32 -2752 192)" + "plane" "(-32 -2752 1) (-32 -2752 192) (-32 -3040 192)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -234665,7 +190351,7 @@ entity side { "id" "101533" - "plane" "(320 -2752 1) (320 -3040 1) (320 -3040 192)" + "plane" "(320 -3040 1) (320 -3040 192) (320 -2752 192)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -234676,7 +190362,7 @@ entity side { "id" "101532" - "plane" "(-32 -2752 1) (320 -2752 1) (320 -2752 192)" + "plane" "(320 -2752 1) (320 -2752 192) (-32 -2752 192)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -234687,7 +190373,7 @@ entity side { "id" "101531" - "plane" "(320 -3040 1) (-32 -3040 1) (-32 -3040 192)" + "plane" "(-32 -3040 1) (-32 -3040 192) (320 -3040 192)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -234950,264 +190636,234 @@ entity "logicalpos" "[500 11500]" } } -hidden +entity { - entity + "id" "2328" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_italy/italy_pipe_wall_straight_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1028.17 768.165 193.327" + editor { - "id" "2328" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/cs_italy/italy_pipe_wall_straight_128.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1028.17 768.165 193.327" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 15000]" - } + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" } } -hidden +entity { - entity + "id" "2332" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_italy/italy_pipe_wall_straight_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1028.17 768.165 65.3267" + editor { - "id" "2332" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/cs_italy/italy_pipe_wall_straight_128.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1028.17 768.165 65.3267" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 15000]" - } + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" } } -hidden +entity { - entity + "id" "2336" + "classname" "prop_static" + "angles" "0 244 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/dust_metal_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1104 830 64" + editor { - "id" "2336" - "classname" "prop_static" - "angles" "0 244 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_dust/dust_metal_door.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1104 830 64" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 12000]" - } + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12000]" } } -hidden +entity { - entity + "id" "2340" + "classname" "prop_static" + "angles" "0 64 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/dust_metal_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1084 748 64" + editor { - "id" "2340" - "classname" "prop_static" - "angles" "0 64 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_dust/dust_metal_door.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1084 748 64" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 12000]" - } + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12000]" } } -hidden +entity { - entity + "id" "2344" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_italy/italy_pipe_wall_straight_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1023.17 770.165 321.327" + editor { - "id" "2344" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/cs_italy/italy_pipe_wall_straight_128.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1023.17 770.165 321.327" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 15000]" - } + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" } } -hidden +entity { - entity + "id" "2348" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_italy/italy_pipe_wall_straight_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1023.17 770.165 193.327" + editor { - "id" "2348" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/cs_italy/italy_pipe_wall_straight_128.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1023.17 770.165 193.327" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 15000]" - } + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" } } -hidden +entity { - entity + "id" "2352" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_italy/italy_pipe_wall_straight_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1023.17 770.165 65.3267" + editor { - "id" "2352" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/cs_italy/italy_pipe_wall_straight_128.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1023.17 770.165 65.3267" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 15000]" - } + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" } } -hidden +entity { - entity + "id" "2356" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_cbble/lamp_a/lamp_a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1162 768 226.327" + editor { - "id" "2356" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_cbble/lamp_a/lamp_a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1162 768 226.327" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1500 5000]" - } + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1500 5000]" } } -hidden +entity { - entity + "id" "2387" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_italy/italy_pipe_wall_straight_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1028.17 768.165 321.327" + editor { - "id" "2387" - "classname" "prop_static" - "angles" "0 270 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/cs_italy/italy_pipe_wall_straight_128.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1028.17 768.165 321.327" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1000 15000]" - } + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" } } -hidden +entity { - entity + "id" "2391" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_cbble/lamp_a/lamp_a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1018 768 226.327" + editor { - "id" "2391" - "classname" "prop_static" - "angles" "0 0 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props/de_cbble/lamp_a/lamp_a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "uniformscale" "1" - "origin" "1018 768 226.327" - editor - { - "color" "244 169 0" - "groupid" "3100" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[1500 5000]" - } + "color" "244 169 0" + "groupid" "3100" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1500 5000]" } } cameras diff --git a/MCDV/shaders/ss_comp_main.fs b/MCDV/shaders/ss_comp_main.fs index ee7062b..66a8959 100644 --- a/MCDV/shaders/ss_comp_main.fs +++ b/MCDV/shaders/ss_comp_main.fs @@ -118,7 +118,7 @@ float get_height(vec4 sample_playspace) { return sample_playspace.r; } // ---------------------------------- kernel / trace filters ---------------------------------- // Given an 0-1 mask, return a 'glow value' -float kernel_filter_glow(sampler2D sampler, int channelID = 0, int sample_size = 16, int inverse = 0) +float kernel_filter_glow(sampler2D sampler, int channelID, int sample_size, int inverse) { vec2 pixel_size = 1.0 / vec2(textureSize(sampler, 0)); @@ -140,7 +140,7 @@ float kernel_filter_glow(sampler2D sampler, int channelID = 0, int sample_size = } // Given a 0-1 mask, return an outline drawn around that mask -float kernel_filter_outline(sampler2D sampler, int channelID = 0, int sample_size = 2) +float kernel_filter_outline(sampler2D sampler, int channelID, int sample_size) { vec2 pixel_size = 1.0 / vec2(textureSize(sampler, 0)); @@ -160,7 +160,7 @@ float kernel_filter_outline(sampler2D sampler, int channelID = 0, int sample_siz } // Given a height map, return a shadow map for this sample -float trace_shadow(sampler2D heightSampler, int channelID = 0) +float trace_shadow(sampler2D heightSampler, int channelID) { int traceCount = 1024; @@ -188,7 +188,7 @@ float trace_shadow(sampler2D heightSampler, int channelID = 0) // Given a height map, return an ambient occlusion term for this sample // This is a wip, expect kinda shitty results :) -float kernel_ao_basic(sampler2D sampler, int channelID = 0, int sample_size = 8) +float kernel_ao_basic(sampler2D sampler, int channelID, int sample_size) { vec2 pixel_size = 1.0 / vec2(textureSize(sampler, 0)); @@ -228,11 +228,11 @@ void main() vec4 sObjectives = vec4(texture(tex_objectives, TexCoords)); vec4 final = sBackground; - final = blend_normal(final, ao_color, kernel_filter_glow(tex_playspace, 3, 16)); // Drop shadow + final = blend_normal(final, ao_color, kernel_filter_glow(tex_playspace, 3, 16, 0)); // Drop shadow final = blend_normal(final, sample_gradient(get_playspace_height(sPlayspace)), get_playspace(sPlayspace)); // Playspace final = blend_normal(final, cover_color, sPlayspace.b); // Cover - if(cmdl_shadows_enable == 1) final = blend_normal(final, vec4(0,0,0,1), trace_shadow(tex_playspace) * 0.2); // Shadows + if(cmdl_shadows_enable == 1) final = blend_normal(final, vec4(0,0,0,1), trace_shadow(tex_playspace, 0) * 0.2); // Shadows if(cmdl_ao_enable == 1) final = blend_normal(final, vec4(0,0,0,1), kernel_ao_basic(tex_playspace, 0, cmdl_ao_size) * 0.9); // AO if(cmdl_outline_enable == 1) final = blend_normal(final, outline_color, kernel_filter_outline(tex_playspace, 3, cmdl_outline_size)); // Outline -- 2.25.1